@@ -137,6 +137,11 class ApplicationController < ActionController::Base | |||||
137 | return false |
|
137 | return false | |
138 | end |
|
138 | end | |
139 |
|
139 | |||
|
140 | def render_error(msg) | |||
|
141 | flash.now[:error] = msg | |||
|
142 | render :nothing => true, :layout => !request.xhr?, :status => 500 | |||
|
143 | end | |||
|
144 | ||||
140 | def render_feed(items, options={}) |
|
145 | def render_feed(items, options={}) | |
141 | @items = items || [] |
|
146 | @items = items || [] | |
142 | @items.sort! {|x,y| y.event_datetime <=> x.event_datetime } |
|
147 | @items.sort! {|x,y| y.event_datetime <=> x.event_datetime } |
@@ -56,6 +56,8 class RepositoriesController < ApplicationController | |||||
56 | # latest changesets |
|
56 | # latest changesets | |
57 | @changesets = @repository.changesets.find(:all, :limit => 10, :order => "committed_on DESC") |
|
57 | @changesets = @repository.changesets.find(:all, :limit => 10, :order => "committed_on DESC") | |
58 | show_error and return unless @entries || @changesets.any? |
|
58 | show_error and return unless @entries || @changesets.any? | |
|
59 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
60 | show_error_command_failed(e.message) | |||
59 | end |
|
61 | end | |
60 |
|
62 | |||
61 | def browse |
|
63 | def browse | |
@@ -65,12 +67,16 class RepositoriesController < ApplicationController | |||||
65 | else |
|
67 | else | |
66 | show_error unless @entries |
|
68 | show_error unless @entries | |
67 | end |
|
69 | end | |
|
70 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
71 | show_error_command_failed(e.message) | |||
68 | end |
|
72 | end | |
69 |
|
73 | |||
70 | def changes |
|
74 | def changes | |
71 | @entry = @repository.scm.entry(@path, @rev) |
|
75 | @entry = @repository.scm.entry(@path, @rev) | |
72 | show_error and return unless @entry |
|
76 | show_error and return unless @entry | |
73 | @changesets = @repository.changesets_for_path(@path) |
|
77 | @changesets = @repository.changesets_for_path(@path) | |
|
78 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
79 | show_error_command_failed(e.message) | |||
74 | end |
|
80 | end | |
75 |
|
81 | |||
76 | def revisions |
|
82 | def revisions | |
@@ -97,11 +103,15 class RepositoriesController < ApplicationController | |||||
97 | # Prevent empty lines when displaying a file with Windows style eol |
|
103 | # Prevent empty lines when displaying a file with Windows style eol | |
98 | @content.gsub!("\r\n", "\n") |
|
104 | @content.gsub!("\r\n", "\n") | |
99 | end |
|
105 | end | |
|
106 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
107 | show_error_command_failed(e.message) | |||
100 | end |
|
108 | end | |
101 |
|
109 | |||
102 | def annotate |
|
110 | def annotate | |
103 | @annotate = @repository.scm.annotate(@path, @rev) |
|
111 | @annotate = @repository.scm.annotate(@path, @rev) | |
104 | show_error and return if @annotate.nil? || @annotate.empty? |
|
112 | show_error and return if @annotate.nil? || @annotate.empty? | |
|
113 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
114 | show_error_command_failed(e.message) | |||
105 | end |
|
115 | end | |
106 |
|
116 | |||
107 | def revision |
|
117 | def revision | |
@@ -119,6 +129,8 class RepositoriesController < ApplicationController | |||||
119 | end |
|
129 | end | |
120 | rescue ChangesetNotFound |
|
130 | rescue ChangesetNotFound | |
121 | show_error |
|
131 | show_error | |
|
132 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
133 | show_error_command_failed(e.message) | |||
122 | end |
|
134 | end | |
123 |
|
135 | |||
124 | def diff |
|
136 | def diff | |
@@ -137,6 +149,8 class RepositoriesController < ApplicationController | |||||
137 | @diff = @repository.diff(@path, @rev, @rev_to, @diff_type) |
|
149 | @diff = @repository.diff(@path, @rev, @rev_to, @diff_type) | |
138 | show_error and return unless @diff |
|
150 | show_error and return unless @diff | |
139 | end |
|
151 | end | |
|
152 | rescue Redmine::Scm::Adapters::CommandFailed => e | |||
|
153 | show_error_command_failed(e.message) | |||
140 | end |
|
154 | end | |
141 |
|
155 | |||
142 | def stats |
|
156 | def stats | |
@@ -176,9 +190,12 private | |||||
176 | render_404 |
|
190 | render_404 | |
177 | end |
|
191 | end | |
178 |
|
192 | |||
179 | def show_error |
|
193 | def show_error_not_found | |
180 | flash.now[:error] = l(:notice_scm_error) |
|
194 | render_error l(:error_scm_not_found) | |
181 | render :nothing => true, :layout => true |
|
195 | end | |
|
196 | ||||
|
197 | def show_error_command_failed(msg) | |||
|
198 | render_error l(:error_scm_command_failed, msg) | |||
182 | end |
|
199 | end | |
183 |
|
200 | |||
184 | def graph_commits_per_month(repository) |
|
201 | def graph_commits_per_month(repository) |
@@ -68,12 +68,14 notice_successful_delete: Успешно изтриване. | |||||
68 | notice_successful_connection: Успешно свързване. |
|
68 | notice_successful_connection: Успешно свързване. | |
69 | notice_file_not_found: Несъществуваща или преместена страница. |
|
69 | notice_file_not_found: Несъществуваща или преместена страница. | |
70 | notice_locking_conflict: Друг потребител променя тези данни в момента. |
|
70 | notice_locking_conflict: Друг потребител променя тези данни в момента. | |
71 | notice_scm_error: Несъществуващ обект в склада. |
|
|||
72 | notice_not_authorized: Нямате право на достъп до тази страница. |
|
71 | notice_not_authorized: Нямате право на достъп до тази страница. | |
73 | notice_email_sent: Изпратен e-mail на %s |
|
72 | notice_email_sent: Изпратен e-mail на %s | |
74 | notice_email_error: Грешка при изпращане на e-mail (%s) |
|
73 | notice_email_error: Грешка при изпращане на e-mail (%s) | |
75 | notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен. |
|
74 | notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: Несъществуващ обект в склада. | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Вашата парола |
|
79 | mail_subject_lost_password: Вашата парола | |
78 | mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:' |
|
80 | mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:' | |
79 | mail_subject_register: Активация на акаунт |
|
81 | mail_subject_register: Активация на акаунт |
@@ -68,12 +68,14 notice_successful_delete: Úspěšné smazání. | |||||
68 | notice_successful_connection: Úspěšné připojení. |
|
68 | notice_successful_connection: Úspěšné připojení. | |
69 | notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána. |
|
69 | notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána. | |
70 | notice_locking_conflict: Údaje byly změněny jiným uživatelem. |
|
70 | notice_locking_conflict: Údaje byly změněny jiným uživatelem. | |
71 | notice_scm_error: Entry and/or revision doesn't exist in the repository. |
|
|||
72 | notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky. |
|
71 | notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky. | |
73 | notice_email_sent: Na adresu %s byl odeslán email |
|
72 | notice_email_sent: Na adresu %s byl odeslán email | |
74 | notice_email_error: Při odesílání emailu nastala chyba (%s) |
|
73 | notice_email_error: Při odesílání emailu nastala chyba (%s) | |
75 | notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován. |
|
74 | notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "Entry and/or revision doesn't exist in the repository." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Vaše heslo |
|
79 | mail_subject_lost_password: Vaše heslo | |
78 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' |
|
80 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' | |
79 | mail_subject_register: aktivace účtu |
|
81 | mail_subject_register: aktivace účtu |
@@ -68,12 +68,14 notice_successful_delete: Erfolgreich gelöscht. | |||||
68 | notice_successful_connection: Verbindung erfolgreich. |
|
68 | notice_successful_connection: Verbindung erfolgreich. | |
69 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. |
|
69 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. | |
70 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. |
|
70 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. | |
71 | notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv. |
|
|||
72 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. |
|
71 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. | |
73 | notice_email_sent: Eine E-Mail wurde an %s gesendet. |
|
72 | notice_email_sent: Eine E-Mail wurde an %s gesendet. | |
74 | notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s). |
|
73 | notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s). | |
75 | notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt. |
|
74 | notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "Eintrag und/oder Revision besteht nicht im Projektarchiv." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Ihr Redmine-Kennwort |
|
79 | mail_subject_lost_password: Ihr Redmine-Kennwort | |
78 | mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:' |
|
80 | mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:' | |
79 | mail_subject_register: Redmine Kontoaktivierung |
|
81 | mail_subject_register: Redmine Kontoaktivierung |
@@ -68,7 +68,6 notice_successful_delete: Successful deletion. | |||||
68 | notice_successful_connection: Successful connection. |
|
68 | notice_successful_connection: Successful connection. | |
69 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
69 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
70 | notice_locking_conflict: Data have been updated by another user. |
|
70 | notice_locking_conflict: Data have been updated by another user. | |
71 | notice_scm_error: Entry and/or revision doesn't exist in the repository. |
|
|||
72 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
@@ -79,6 +78,8 notice_account_pending: "Your account was created and is now pending administrat | |||||
79 | notice_default_data_loaded: Default configuration successfully loaded. |
|
78 | notice_default_data_loaded: Default configuration successfully loaded. | |
80 |
|
79 | |||
81 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" |
|
80 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" | |
|
81 | error_scm_not_found: "Entry and/or revision doesn't exist in the repository." | |||
|
82 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
82 |
|
83 | |||
83 | mail_subject_lost_password: Your Redmine password |
|
84 | mail_subject_lost_password: Your Redmine password | |
84 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' |
|
85 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' |
@@ -68,9 +68,11 notice_successful_delete: Borrado correcto. | |||||
68 | notice_successful_connection: Conexión correcta. |
|
68 | notice_successful_connection: Conexión correcta. | |
69 | notice_file_not_found: La página a la que intentas acceder no existe. |
|
69 | notice_file_not_found: La página a la que intentas acceder no existe. | |
70 | notice_locking_conflict: Los datos han sido modificados por otro usuario. |
|
70 | notice_locking_conflict: Los datos han sido modificados por otro usuario. | |
71 | notice_scm_error: La entrada y/o la revisión no existe en el repositorio. |
|
|||
72 | notice_not_authorized: No tiene autorización para acceder a esta página. |
|
71 | notice_not_authorized: No tiene autorización para acceder a esta página. | |
73 |
|
72 | |||
|
73 | error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio." | |||
|
74 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
75 | ||||
74 | mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes |
|
76 | mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes | |
75 | mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:' |
|
77 | mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:' | |
76 | mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes |
|
78 | mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes |
@@ -68,7 +68,6 notice_successful_delete: Poisto onnistui. | |||||
68 | notice_successful_connection: Yhteyden muodostus onnistui. |
|
68 | notice_successful_connection: Yhteyden muodostus onnistui. | |
69 | notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu. |
|
69 | notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu. | |
70 | notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot. |
|
70 | notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot. | |
71 | notice_scm_error: Syötettä ja/tai versiota ei löydy säiliöstä. |
|
|||
72 | notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua. |
|
71 | notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua. | |
73 | notice_email_sent: Sähköposti on lähetty osoitteeseen %s |
|
72 | notice_email_sent: Sähköposti on lähetty osoitteeseen %s | |
74 | notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s) |
|
73 | notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s) | |
@@ -79,6 +78,8 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntä | |||||
79 | notice_default_data_loaded: Vakio asetusten palautus onnistui. |
|
78 | notice_default_data_loaded: Vakio asetusten palautus onnistui. | |
80 |
|
79 | |||
81 | error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s" |
|
80 | error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s" | |
|
81 | error_scm_not_found: "Syötettä ja/tai versiota ei löydy säiliöstä." | |||
|
82 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
82 |
|
83 | |||
83 | mail_subject_lost_password: Sinun Redmine salasanasi |
|
84 | mail_subject_lost_password: Sinun Redmine salasanasi | |
84 | mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:' |
|
85 | mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:' |
@@ -79,6 +79,8 notice_account_pending: "Votre compte a été créé et attend l'approbation de | |||||
79 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. |
|
79 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. | |
80 |
|
80 | |||
81 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s" |
|
81 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s" | |
|
82 | error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." | |||
|
83 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s" | |||
82 |
|
84 | |||
83 | mail_subject_lost_password: Votre mot de passe redMine |
|
85 | mail_subject_lost_password: Votre mot de passe redMine | |
84 | mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:' |
|
86 | mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:' |
@@ -68,7 +68,6 notice_successful_delete: מחיקה מוצלחת. | |||||
68 | notice_successful_connection: חיבור מוצלח. |
|
68 | notice_successful_connection: חיבור מוצלח. | |
69 | notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר. |
|
69 | notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר. | |
70 | notice_locking_conflict: המידע עודכן על ידי משתמש אחר. |
|
70 | notice_locking_conflict: המידע עודכן על ידי משתמש אחר. | |
71 | notice_scm_error: כניסה ו\או גירסא אינם קיימים במאגר. |
|
|||
72 | notice_not_authorized: אינך מורשה לראות דף זה. |
|
71 | notice_not_authorized: אינך מורשה לראות דף זה. | |
73 | notice_email_sent: דוא"ל נשלח לכתובת %s |
|
72 | notice_email_sent: דוא"ל נשלח לכתובת %s | |
74 | notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s) |
|
73 | notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s) | |
@@ -76,6 +75,9 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס. | |||||
76 | notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s." |
|
75 | notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s." | |
77 | notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך." |
|
76 | notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך." | |
78 |
|
77 | |||
|
78 | error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר. | |||
|
79 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
80 | ||||
79 | mail_subject_lost_password: סיסמת ה-Redmine שלך |
|
81 | mail_subject_lost_password: סיסמת ה-Redmine שלך | |
80 | mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:' |
|
82 | mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:' | |
81 | mail_subject_register: הפעלת חשבון Redmine |
|
83 | mail_subject_register: הפעלת חשבון Redmine |
@@ -68,12 +68,14 notice_successful_delete: Eliminazione effettuata. | |||||
68 | notice_successful_connection: Connessione effettuata. |
|
68 | notice_successful_connection: Connessione effettuata. | |
69 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. |
|
69 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. | |
70 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. |
|
70 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. | |
71 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. |
|
|||
72 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "La risorsa e/o la versione non esistono nel repository." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Password redMine |
|
79 | mail_subject_lost_password: Password redMine | |
78 | mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:' |
|
80 | mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:' | |
79 | mail_subject_register: Attivazione utenza redMine |
|
81 | mail_subject_register: Attivazione utenza redMine |
@@ -69,12 +69,14 notice_successful_delete: 削除しました。 | |||||
69 | notice_successful_connection: 接続しました。 |
|
69 | notice_successful_connection: 接続しました。 | |
70 | notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 |
|
70 | notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 | |
71 | notice_locking_conflict: 別のユーザがデータを更新しています。 |
|
71 | notice_locking_conflict: 別のユーザがデータを更新しています。 | |
72 | notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。 |
|
|||
73 | notice_not_authorized: このページにアクセスするには認証が必要です。 |
|
72 | notice_not_authorized: このページにアクセスするには認証が必要です。 | |
74 | notice_email_sent: %s宛にメールを送信しました。 |
|
73 | notice_email_sent: %s宛にメールを送信しました。 | |
75 | notice_email_error: メール送信中にエラーが発生しました(%s) |
|
74 | notice_email_error: メール送信中にエラーが発生しました(%s) | |
76 | notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。 |
|
75 | notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。 | |
77 |
|
76 | |||
|
77 | error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。 | |||
|
78 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
79 | ||||
78 | mail_subject_lost_password: Redmineパスワード |
|
80 | mail_subject_lost_password: Redmineパスワード | |
79 | mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:' |
|
81 | mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:' | |
80 | mail_subject_register: Redmineアカウントが有効になりました |
|
82 | mail_subject_register: Redmineアカウントが有効になりました |
@@ -68,7 +68,6 notice_successful_delete: 삭제 성공. | |||||
68 | notice_successful_connection: 연결 성공. |
|
68 | notice_successful_connection: 연결 성공. | |
69 | notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다. |
|
69 | notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다. | |
70 | notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다. |
|
70 | notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다. | |
71 | notice_scm_error: 소스 저장소에 해당 내용이 존재하지 않습니다. |
|
|||
72 | notice_not_authorized: 이 페이지에 접근할 권한이 없습니다. |
|
71 | notice_not_authorized: 이 페이지에 접근할 권한이 없습니다. | |
73 | notice_email_sent: %s 님에게 Email이 발송되었습니다. |
|
72 | notice_email_sent: %s 님에게 Email이 발송되었습니다. | |
74 | notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s) |
|
73 | notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s) | |
@@ -76,6 +75,9 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되 | |||||
76 | notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s." |
|
75 | notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s." | |
77 | notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요" |
|
76 | notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요" | |
78 |
|
77 | |||
|
78 | error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다. | |||
|
79 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
80 | ||||
79 | mail_subject_lost_password: 당신의 비밀번호 |
|
81 | mail_subject_lost_password: 당신의 비밀번호 | |
80 | mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요' |
|
82 | mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요' | |
81 | mail_subject_register: 당신의 계정 활성화 |
|
83 | mail_subject_register: 당신의 계정 활성화 |
@@ -68,7 +68,6 notice_successful_delete: Sėkmingas panaikinimas. | |||||
68 | notice_successful_connection: Sėkmingas susijungimas. |
|
68 | notice_successful_connection: Sėkmingas susijungimas. | |
69 | notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas. |
|
69 | notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas. | |
70 | notice_locking_conflict: Duomenys atnaujinti kito vartotojo. |
|
70 | notice_locking_conflict: Duomenys atnaujinti kito vartotojo. | |
71 | notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja. |
|
|||
72 | notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio. |
|
71 | notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio. | |
73 | notice_email_sent: Laiškas išsiųstas %s |
|
72 | notice_email_sent: Laiškas išsiųstas %s | |
74 | notice_email_error: Laiško siųntimo metu įvyko klaida (%s) |
|
73 | notice_email_error: Laiško siųntimo metu įvyko klaida (%s) | |
@@ -77,6 +76,9 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) iš %d pasir | |||||
77 | notice_no_issue_selected: "Nepasirinkta nė viena problema! Prašom pažymėti problemą, kurią norite redaguoti." |
|
76 | notice_no_issue_selected: "Nepasirinkta nė viena problema! Prašom pažymėti problemą, kurią norite redaguoti." | |
78 | notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo." |
|
77 | notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo." | |
79 |
|
78 | |||
|
79 | error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja." | |||
|
80 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
81 | ||||
80 | mail_subject_lost_password: Jūsų Redmine slaptažodis |
|
82 | mail_subject_lost_password: Jūsų Redmine slaptažodis | |
81 | mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:' |
|
83 | mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:' | |
82 | mail_subject_register: 'Redmine paskyros aktyvavymas' |
|
84 | mail_subject_register: 'Redmine paskyros aktyvavymas' |
@@ -68,12 +68,14 notice_successful_delete: Verwijderen succesvol. | |||||
68 | notice_successful_connection: Verbinding succesvol. |
|
68 | notice_successful_connection: Verbinding succesvol. | |
69 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. |
|
69 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. | |
70 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. |
|
70 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. | |
71 | notice_scm_error: Deze ingang of revisie bestaat niet in de repository. |
|
|||
72 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. |
|
71 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "Deze ingang of revisie bestaat niet in de repository." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Uw redMine wachtwoord |
|
79 | mail_subject_lost_password: Uw redMine wachtwoord | |
78 | mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:' |
|
80 | mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:' | |
79 | mail_subject_register: redMine account activatie |
|
81 | mail_subject_register: redMine account activatie |
@@ -68,9 +68,11 notice_successful_delete: Udane usunięcie. | |||||
68 | notice_successful_connection: Udane nawiązanie połączenia. |
|
68 | notice_successful_connection: Udane nawiązanie połączenia. | |
69 | notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta. |
|
69 | notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta. | |
70 | notice_locking_conflict: Dane poprawione przez innego użytkownika. |
|
70 | notice_locking_conflict: Dane poprawione przez innego użytkownika. | |
71 | notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium. |
|
|||
72 | notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę. |
|
71 | notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę. | |
73 |
|
72 | |||
|
73 | error_scm_not_found: "Wejście i/lub zmiana nie istnieje w repozytorium." | |||
|
74 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
75 | ||||
74 | mail_subject_lost_password: Twoje hasło do redMine |
|
76 | mail_subject_lost_password: Twoje hasło do redMine | |
75 | mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:' |
|
77 | mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:' | |
76 | mail_subject_register: Aktywacja konta w redMine |
|
78 | mail_subject_register: Aktywacja konta w redMine |
@@ -68,12 +68,14 notice_successful_delete: Apagado com sucesso. | |||||
68 | notice_successful_connection: Conectado com sucesso. |
|
68 | notice_successful_connection: Conectado com sucesso. | |
69 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. |
|
69 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. | |
70 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. |
|
70 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. | |
71 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. |
|
|||
72 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "A entrada e/ou a revisao nao existem no repositorio." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Sua senha do redMine. |
|
79 | mail_subject_lost_password: Sua senha do redMine. | |
78 | mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:' |
|
80 | mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:' | |
79 | mail_subject_register: Ativacao de conta do redMine. |
|
81 | mail_subject_register: Ativacao de conta do redMine. |
@@ -68,12 +68,14 notice_successful_delete: Apagado com sucesso. | |||||
68 | notice_successful_connection: Conectado com sucesso. |
|
68 | notice_successful_connection: Conectado com sucesso. | |
69 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. |
|
69 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. | |
70 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. |
|
70 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. | |
71 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. |
|
|||
72 | notice_not_authorized: Você não está autorizado a acessar esta página. |
|
71 | notice_not_authorized: Você não está autorizado a acessar esta página. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "A entrada e/ou a revisão não existem no repositório." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Sua senha do redMine. |
|
79 | mail_subject_lost_password: Sua senha do redMine. | |
78 | mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:' |
|
80 | mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:' | |
79 | mail_subject_register: Ativação de conta do redMine. |
|
81 | mail_subject_register: Ativação de conta do redMine. |
@@ -68,12 +68,14 notice_successful_delete: Stergere cu succes. | |||||
68 | notice_successful_connection: Conectare cu succes. |
|
68 | notice_successful_connection: Conectare cu succes. | |
69 | notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila. |
|
69 | notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila. | |
70 | notice_locking_conflict: Informatiile au fost modificate de un alt utilizator. |
|
70 | notice_locking_conflict: Informatiile au fost modificate de un alt utilizator. | |
71 | notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository). |
|
|||
72 | notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina. |
|
71 | notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina. | |
73 | notice_email_sent: Un e-mail a fost trimis la adresa %s |
|
72 | notice_email_sent: Un e-mail a fost trimis la adresa %s | |
74 | notice_email_error: Eroare in trimiterea e-mailului (%s) |
|
73 | notice_email_error: Eroare in trimiterea e-mailului (%s) | |
75 | notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat. |
|
74 | notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "Articolul sau reviziunea nu exista in stoc (Repository)." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Your Redmine password |
|
79 | mail_subject_lost_password: Your Redmine password | |
78 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' |
|
80 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' | |
79 | mail_subject_register: Redmine account activation |
|
81 | mail_subject_register: Redmine account activation |
@@ -68,7 +68,6 notice_successful_delete: Удаление успешно завершено. | |||||
68 | notice_successful_connection: Подключение успешно установлено. |
|
68 | notice_successful_connection: Подключение успешно установлено. | |
69 | notice_file_not_found: Страница, на которую вы пытаетесь зайти, не существует или удалена. |
|
69 | notice_file_not_found: Страница, на которую вы пытаетесь зайти, не существует или удалена. | |
70 | notice_locking_conflict: Информация обновлена другим пользователем. |
|
70 | notice_locking_conflict: Информация обновлена другим пользователем. | |
71 | notice_scm_error: Записи и/или исправления нет в репозитории. |
|
|||
72 | notice_not_authorized: У вас нет прав для посещения данной страницы. |
|
71 | notice_not_authorized: У вас нет прав для посещения данной страницы. | |
73 | notice_email_sent: Отправлено письмо %s |
|
72 | notice_email_sent: Отправлено письмо %s | |
74 | notice_email_error: Во время отправки письма произошла ошибка (%s) |
|
73 | notice_email_error: Во время отправки письма произошла ошибка (%s) | |
@@ -76,6 +75,9 notice_feeds_access_key_reseted: Ваш ключ доступа RSS был пе | |||||
76 | notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s." |
|
75 | notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s." | |
77 | notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать." |
|
76 | notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать." | |
78 |
|
77 | |||
|
78 | error_scm_not_found: Записи и/или исправления нет в репозитории. | |||
|
79 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
80 | ||||
79 | mail_subject_lost_password: Ваш Redmine пароль |
|
81 | mail_subject_lost_password: Ваш Redmine пароль | |
80 | mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:' |
|
82 | mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:' | |
81 | mail_subject_register: Активация учетной записи Redmine |
|
83 | mail_subject_register: Активация учетной записи Redmine |
@@ -68,7 +68,6 notice_successful_delete: Uspešno brisanje. | |||||
68 | notice_successful_connection: Uspešna konekcija. |
|
68 | notice_successful_connection: Uspešna konekcija. | |
69 | notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena. |
|
69 | notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena. | |
70 | notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika. |
|
70 | notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika. | |
71 | notice_scm_error: Unos i/ili revizija ne postoji u spremištu. |
|
|||
72 | notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici. |
|
71 | notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici. | |
73 | notice_email_sent: Email je poslat %s |
|
72 | notice_email_sent: Email je poslat %s | |
74 | notice_email_error: Došlo je do greške pri slanju maila (%s) |
|
73 | notice_email_error: Došlo je do greške pri slanju maila (%s) | |
@@ -76,6 +75,9 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan. | |||||
76 | notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s." |
|
75 | notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s." | |
77 | notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete." |
|
76 | notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete." | |
78 |
|
77 | |||
|
78 | error_scm_not_found: "Unos i/ili revizija ne postoji u spremištu." | |||
|
79 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
80 | ||||
79 | mail_subject_lost_password: Vaša redMine lozinka |
|
81 | mail_subject_lost_password: Vaša redMine lozinka | |
80 | mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:' |
|
82 | mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:' | |
81 | mail_subject_register: aktivacija redMine naloga |
|
83 | mail_subject_register: aktivacija redMine naloga |
@@ -68,12 +68,14 notice_successful_delete: Lyckad borttagning. | |||||
68 | notice_successful_connection: Lyckad uppkoppling. |
|
68 | notice_successful_connection: Lyckad uppkoppling. | |
69 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. |
|
69 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. | |
70 | notice_locking_conflict: Data har uppdaterats av en annan användare. |
|
70 | notice_locking_conflict: Data har uppdaterats av en annan användare. | |
71 | notice_scm_error: Inlägg och/eller revision finns inte i repositoriet. |
|
|||
72 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
73 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
75 | |||
|
76 | error_scm_not_found: "Inlägg och/eller revision finns inte i repositoriet." | |||
|
77 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
78 | ||||
77 | mail_subject_lost_password: Ditt redMine lösenord |
|
79 | mail_subject_lost_password: Ditt redMine lösenord | |
78 | mail_body_lost_password: 'För att ändra lösenord, följ denna länk:' |
|
80 | mail_body_lost_password: 'För att ändra lösenord, följ denna länk:' | |
79 | mail_subject_register: redMine kontoaktivering |
|
81 | mail_subject_register: redMine kontoaktivering |
@@ -68,7 +68,6 notice_successful_delete: 刪除成功 | |||||
68 | notice_successful_connection: Successful connection. |
|
68 | notice_successful_connection: Successful connection. | |
69 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
69 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
70 | notice_locking_conflict: Data have been updated by another user. |
|
70 | notice_locking_conflict: Data have been updated by another user. | |
71 | notice_scm_error: SCM 儲存庫中找不到這個專案或版本。 |
|
|||
72 | notice_not_authorized: 你未被授權存取此頁面。 |
|
71 | notice_not_authorized: 你未被授權存取此頁面。 | |
73 | notice_email_sent: 郵件已經成功寄送至以下收件者: %s |
|
72 | notice_email_sent: 郵件已經成功寄送至以下收件者: %s | |
74 | notice_email_error: 寄送郵件的過程中發生錯誤 (%s) |
|
73 | notice_email_error: 寄送郵件的過程中發生錯誤 (%s) | |
@@ -78,6 +77,9 notice_no_issue_selected: "No issue is selected! Please, check the issues you wa | |||||
78 | notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。" |
|
77 | notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。" | |
79 | notice_default_data_loaded: Default configuration successfully loaded. |
|
78 | notice_default_data_loaded: Default configuration successfully loaded. | |
80 |
|
79 | |||
|
80 | error_scm_not_found: SCM 儲存庫中找不到這個專案或版本。 | |||
|
81 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
82 | ||||
81 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" |
|
83 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" | |
82 |
|
84 | |||
83 | mail_subject_lost_password: 您的 Redmine 網站密碼 |
|
85 | mail_subject_lost_password: 您的 Redmine 網站密碼 |
@@ -71,12 +71,14 notice_successful_delete: 删除成功 | |||||
71 | notice_successful_connection: 连接成功 |
|
71 | notice_successful_connection: 连接成功 | |
72 | notice_file_not_found: 您访问的页面不存在或已被删除。 |
|
72 | notice_file_not_found: 您访问的页面不存在或已被删除。 | |
73 | notice_locking_conflict: 数据已被另一个用户更新 |
|
73 | notice_locking_conflict: 数据已被另一个用户更新 | |
74 | notice_scm_error: 在版本库中不存在该条目或修订 |
|
|||
75 | notice_not_authorized: You are not authorized to access this page. |
|
74 | notice_not_authorized: You are not authorized to access this page. | |
76 | notice_email_sent: An email was sent to %s |
|
75 | notice_email_sent: An email was sent to %s | |
77 | notice_email_error: An error occurred while sending mail (%s) |
|
76 | notice_email_error: An error occurred while sending mail (%s) | |
78 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
77 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
79 |
|
78 | |||
|
79 | error_scm_not_found: 在版本库中不存在该条目或修订 | |||
|
80 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |||
|
81 | ||||
80 | mail_subject_lost_password: 您的redMine口令 |
|
82 | mail_subject_lost_password: 您的redMine口令 | |
81 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' |
|
83 | mail_body_lost_password: 'To change your Redmine password, click on the following link:' | |
82 | mail_subject_register: redMine帐户激活 |
|
84 | mail_subject_register: redMine帐户激活 |
@@ -120,7 +120,7 module Redmine | |||||
120 | rescue Errno::ENOENT => e |
|
120 | rescue Errno::ENOENT => e | |
121 | # The command failed, log it and re-raise |
|
121 | # The command failed, log it and re-raise | |
122 | logger.error("SCM command failed: #{cmd}\n with: #{e.message}") |
|
122 | logger.error("SCM command failed: #{cmd}\n with: #{e.message}") | |
123 | raise CommandFailed |
|
123 | raise CommandFailed.new(e.message) | |
124 | end |
|
124 | end | |
125 | end |
|
125 | end | |
126 | end |
|
126 | end |
@@ -66,7 +66,6 module Redmine | |||||
66 | entries = Entries.new |
|
66 | entries = Entries.new | |
67 | cmd = "#{SVN_BIN} list --xml #{target(path)}@#{identifier}" |
|
67 | cmd = "#{SVN_BIN} list --xml #{target(path)}@#{identifier}" | |
68 | cmd << credentials_string |
|
68 | cmd << credentials_string | |
69 | cmd << " 2>&1" |
|
|||
70 | shellout(cmd) do |io| |
|
69 | shellout(cmd) do |io| | |
71 | output = io.read |
|
70 | output = io.read | |
72 | begin |
|
71 | begin |
General Comments 0
You need to be logged in to leave comments.
Login now