Project

General

Profile

Feature #4155 » logtime_redmine_1.0.3-v3.patch

Marek Siller, 2010-11-09 20:13

View differences:

app/models/changeset.rb Locally Modified (Based On LOCAL)
77 77
    scan_comment_for_issue_ids
78 78
  end
79 79
  
80
  def scan_comment_for_issue_ids
81
    return if comments.blank?
82
    # keywords used to reference issues
83
    ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip)
84
    # keywords used to fix issues
85
    fix_keywords = Setting.commit_fix_keywords.downcase.split(",").collect(&:strip)
86
    
87
    kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw)}.join("|")
88
    return if kw_regexp.blank?
89
    
80
  def find_any_issue_ids_in_comments(comments)
90 81
    referenced_issues = []
82
    log_time = []
91 83
    
92
    if ref_keywords.delete('*')
93 84
      # find any issue ID in the comments
94 85
      target_issue_ids = []
95
      comments.scan(%r{([\s\(\[,-]|^)#(\d+)(?=[[:punct:]]|\s|<|$)}).each { |m| target_issue_ids << m[1] }
86
    comments.scan(%r{#(\d+)(\s*@(?:(?:\d+\.\d+h?)|(?:\s?\d+[hm]){1,2})(?:\W|$))?}).each do |m|
87
      issue_id = m[0]
88
      logger.debug "Found issue ID: #{issue_id}" if logger && logger.debug?
89

  
90
      time = [m[0], (m[1] != nil ? m[1].scan(/(\d+[.]\d+|(?:\d+[hm]\s?){1,2})/)[0][0] : "0")]
91
      logger.debug "Log time for the issue ID: #{issue_id} @#{time}" if logger && logger.debug?
92

  
93
      target_issue_ids << issue_id
94
      log_time << time
95
    end
96 96
      referenced_issues += find_referenced_issues_by_id(target_issue_ids)
97

  
98
    return referenced_issues, log_time
97 99
    end
98 100
    
99
    comments.scan(Regexp.new("(#{kw_regexp})[\s:]+(([\s,;&]*#?\\d+)+)", Regexp::IGNORECASE)).each do |match|
101
  def find_referenced_issue_ids_in_comments(comments, kw_regexp, fix_keywords)
102
    referenced_issues = []
103
    log_time = []
104

  
105
    comments.scan(Regexp.new("(#{kw_regexp})[\\s:]+((?:(?:[\\s,;&]*[^@]?\\d+)(?:\\s*@(?:(?:\\d+\\.\\d+h?)|(?:\\s?\\d+[hm]){1,2})(?:\\W|$))?)+)", Regexp::IGNORECASE)).each do |match|
100 106
      action = match[0]
101
      target_issue_ids = match[1].scan(/\d+/)
107

  
108
      target_issues_with_log = match[1].scan(/([\s,;&]*[^@]?\d+)(\s*@(?:(?:\d+\.\d+h?)|(?:\s?\d+[hm]){1,2})(?:\W|$))?/)
109
      target_issues_with_log.collect! { |x| [ x[0].scan(/\d+/)[0], (x[1] != nil ? x[1].scan(/(\d+[.]\d+|(?:\d+[hm]\s?){1,2})/)[0][0] : "0") ] }
110

  
111
      log_time += target_issues_with_log
112
      logger.debug "Found issue: #{log_time}" if logger && logger.debug?
113

  
114
      target_issue_ids = target_issues_with_log.collect {|x| x[0]}
115

  
102 116
      target_issues = find_referenced_issues_by_id(target_issue_ids)
103 117
      if fix_keywords.include?(action.downcase) && fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id)
104 118
        # update status of issues
105
        logger.debug "Issues fixed by changeset #{self.revision}: #{issue_ids.join(', ')}." if logger && logger.debug?
119
        logger.debug "Issues fixed by changeset #{self.revision}: #{target_issue_ids.join(', ')}." if logger && logger.debug?
120

  
106 121
        target_issues.each do |issue|
122
          update_issue_status(issue, fix_status)
123
        end
124
      end
125
      referenced_issues += target_issues
126
    end
127

  
128
    return referenced_issues, log_time
129
  end
130

  
131
  def update_issue_status(issue, fix_status)
107 132
          # the issue may have been updated by the closure of another one (eg. duplicate)
108 133
          issue.reload
109 134
          # don't change the status is the issue is closed
......
121 146
                                  { :changeset => self, :issue => issue })
122 147
          issue.save
123 148
        end
149

  
150
  def log_spent_time_for_issues(log_time)
151
    log_time.uniq.each do |issue_wl|
152
      next if issue_wl[1] == nil || issue_wl[1] == 0
153

  
154
      issue_id_hours = get_spenttime_and_issue_id(issue_wl)
155
      issue_id = issue_id_hours.first
156
      issue_hours = issue_id_hours.last.to_f
157

  
158
      next if issue_hours <= 0
159

  
160
      logger.debug "Log time for issue #{issue_id} - #{issue_hours}." if logger && logger.debug?
161

  
162
      issue = Issue.find_by_id(issue_id)
163

  
164
      activity = get_logtime_activity
165

  
166
      logger.debug "Nothing to log - activity (#{activity}), issue (#{issue}) or user (#{user}) is nil!" if logger && logger.debug? && (activity == nil || issue == nil || user == nil)
167
      next if activity == nil || issue == nil || user == nil
168

  
169
      csettext = "r#{self.revision}"
170
      if self.scmid && (! (csettext =~ /^r[0-9]+$/))
171
        csettext = "\"#{self.scmid}\""
124 172
      end
125
      referenced_issues += target_issues
173

  
174
      timeentry = TimeEntry.create(:project => issue.project,
175
                                   :issue => issue,
176
                                   :user => user,
177
                                   :spent_on => self.commit_date,
178
                                   :hours => issue_hours,
179
                                   :activity_id => activity.id,
180
                                   :comments => ll(Setting.default_language, :text_time_logged_by_changeset, issue_hours, csettext))
181

  
182
      journal = issue.init_journal(user, ll(Setting.default_language, :text_time_logged_by_changeset, issue_hours, csettext)) if Setting.commit_logtime_journal_enabled?
183

  
184
      Redmine::Hook.call_hook(:model_changeset_scan_commit_for_issue_ids_pre_time_logged,
185
        { :changeset => self, :issue => issue, :timenetry => timeentry }) if Setting.commit_logtime_journal_enabled?
186

  
187
      timeentry.save
188
      issue.save if Setting.commit_logtime_journal_enabled?
126 189
    end
190
  end
127 191
    
192
  def get_spenttime_and_issue_id(issue_wl)
193
    issue_id = issue_wl[0]
194
    issue_hours = issue_wl[1]
195

  
196
    match = issue_hours.match(/\d+[.]\d+/)
197

  
198
    if match != nil
199
      issue_hours = match[0].to_f
200
    else
201
      hours = ((match = issue_hours.scan(/(\d+)h/)).size == 1 ? match[0][0] : 0)
202
      minutes = ((match = issue_hours.scan(/(\d+)m/)).size == 1 ? match[0][0] : 0)
203

  
204
      hours = (hours == nil ? 0 : hours.to_i)
205
      minutes = (minutes == nil ? 0 : minutes.to_i)
206

  
207
      issue_hours = ((hours.to_f + minutes.to_f / 60.0) * 100.0).round / 100.0
208
    end
209

  
210
    return issue_id, issue_hours
211
  end
212

  
213
  def get_logtime_activity
214
    activity = nil
215

  
216
    logger.debug "Looking for activity type #{Setting.commit_logtime_activity}" if logger && logger.debug?
217
    if Setting.commit_logtime_activity.to_i == 0
218
      activity = TimeEntryActivity.default
219
      logger.debug "The default activity is #{activity.name}" if logger && logger.debug?
220
    else
221
      activity = TimeEntryActivity.find(:first, :conditions => { :id => Setting.commit_logtime_activity.to_i })
222
    end
223

  
224
    if activity == nil
225
      activity = TimeEntryActivity.find(:first)
226
      logger.debug "Activity not found, using the first member of activity enumeration: #{activity.name}" if logger && logger.debug?
227
    end
228

  
229
    return activity
230
  end
231

  
232
  def scan_comment_for_issue_ids
233
    return if comments.blank?
234
    # keywords used to reference issues
235
    ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip)
236
    # keywords used to fix issues
237
    fix_keywords = Setting.commit_fix_keywords.downcase.split(",").collect(&:strip)
238
    
239
    kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw)}.join("|")
240
    return if kw_regexp.blank?
241
    
242
    referenced_issues = []
243
    log_time = []
244

  
245
    logger.debug "Changeset comment: #{comments}" if logger && logger.debug?
246
    
247
    if ref_keywords.delete('*')
248
      issues_with_times = find_any_issue_ids_in_comments(comments)
249
      referenced_issues += issues_with_times.first
250
      log_time += issues_with_times.last
251
    end
252
    
253
    issues_with_times = find_referenced_issue_ids_in_comments(comments, kw_regexp, fix_keywords)
254
    referenced_issues += issues_with_times.first
255
    log_time += issues_with_times.last
256

  
257
    if Setting.commit_logtime_enabled?
258
      log_spent_time_for_issues(log_time)
259
    end
260
    
128 261
    referenced_issues.uniq!
129 262
    self.issues = referenced_issues unless referenced_issues.empty?
130 263
  end
app/views/settings/_repositories.rhtml Locally Modified (Based On LOCAL)
31 31
&nbsp;<%= l(:label_applied_status) %>: <%= setting_select :commit_fix_status_id, [["", 0]] + IssueStatus.find(:all).collect{|status| [status.name, status.id.to_s]}, :label => false %>
32 32
&nbsp;<%= l(:field_done_ratio) %>: <%= setting_select :commit_fix_done_ratio, (0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] }, :blank => :label_no_change_option, :label => false %>
33 33
<br /><em><%= l(:text_comma_separated) %></em></p>
34

  
35
<p><label><%= l(:setting_commit_logtime_enabled) %></label>
36
<%= hidden_field_tag 'settings[commit_logtime_enabled]', 0 %><%= check_box_tag 'settings[commit_logtime_enabled]', 1, Setting.commit_logtime_enabled? %>
37
<br /><em><%= l(:text_commit_logtime) %></em></p>
38

  
39
<p><label><%= l(:setting_commit_logtime_journal_enabled) %></label>
40
<%= hidden_field_tag 'settings[commit_logtime_journal_enabled]', 0 %><%= check_box_tag 'settings[commit_logtime_journal_enabled]', 1, Setting.commit_logtime_journal_enabled? %>
41
<br /><em><%= l(:text_commit_logtime_journal_enabled) %></em></p>
42

  
43
<p><label><%= l(:setting_commit_logtime_activity) %></label>
44
<%= setting_select :commit_logtime_activity, [[l(:label_default), 0]] + TimeEntryActivity.find(:all).collect{|activity| [activity.name, activity.id.to_s]}, :label => false %>
45
<br /><em><%= l(:text_commit_logtime_activity) %></em></p>
34 46
</fieldset>
35 47

  
36 48
<%= submit_tag l(:button_save) %>
config/locales/bg.yml Locally Modified (Based On LOCAL)
654 654
  label_repository_plural: Хранилища
655 655
  label_associated_revisions: Асоциирани ревизии
656 656
  setting_user_format: Потребителски формат
657
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
657 658
  text_status_changed_by_changeset: "Приложено с ревизия {{value}}."
658 659
  label_more: Още
659 660
  text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
......
745 746
  permission_select_project_modules: Избор на проектни модули
746 747
  permission_manage_documents: Управление на документи
747 748
  permission_edit_wiki_pages: Редактиране на wiki страници
749
  setting_commit_logtime_enabled: Enable time logging
750
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
748 751
  permission_add_issue_watchers: Добавяне на наблюдатели
749 752
  permission_view_gantt: Разглеждане на мрежов график
750 753
  permission_move_issues: Преместване на задачи
......
921 924
  field_start_date: Start date
922 925
  label_principal_search: "Search for user or group:"
923 926
  label_user_search: "Search for user:"
927
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
928
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
929
  setting_commit_logtime_activity: "Spent time activity"
930
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/bs.yml Locally Modified (Based On LOCAL)
342 342
  permission_view_gantt: Pregled gantograma
343 343
  permission_view_calendar: Pregled kalendara
344 344
  permission_view_issue_watchers: Pregled liste korisnika koji prate aktivnost
345
  setting_commit_logtime_enabled: Enable time logging
346
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
345 347
  permission_add_issue_watchers: Dodaj onoga koji prati aktivnost
346 348
  permission_log_time: Evidentiraj utrošak vremena
347 349
  permission_view_time_entries: Pregled utroška vremena
......
769 771
  text_user_mail_option: "Za projekte koje niste odabrali, primićete samo notifikacije o stavkama koje pratite ili ste u njih uključeni (npr. vi ste autor ili su vama dodjeljenje)."
770 772
  text_no_configuration_data: "Uloge, područja aktivnosti, statusi aktivnosti i tok promjena statusa nisu konfigurisane.\nKrajnje je preporučeno da učitate tekuđe postavke. Kasnije ćete ih moći mjenjati po svojim potrebama."
771 773
  text_load_default_configuration: Učitaj tekuću konfiguraciju
774
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
772 775
  text_status_changed_by_changeset: "Primjenjeno u setu promjena {{value}}."
773 776
  text_issues_destroy_confirmation: 'Sigurno želite izbrisati odabranu/e aktivnost/i ?'
774 777
  text_select_project_modules: 'Odaberi module koje želite u ovom projektu:'
......
935 938
  field_start_date: Start date
936 939
  label_principal_search: "Search for user or group:"
937 940
  label_user_search: "Search for user:"
941
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
942
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"  
943
  setting_commit_logtime_activity: "Spent time activity"
944
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/ca.yml Locally Modified (Based On LOCAL)
372 372
  permission_view_gantt: Visualitza la gràfica de Gantt
373 373
  permission_view_calendar: Visualitza el calendari
374 374
  permission_view_issue_watchers: Visualitza la llista de vigilàncies
375
  setting_commit_logtime_enabled: Enable time logging
376
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
375 377
  permission_add_issue_watchers: Afegeix vigilàncies
376 378
  permission_delete_issue_watchers: Suprimeix els vigilants
377 379
  permission_log_time: Registra el temps invertit
......
862 864
  text_user_mail_option: "Per als projectes no seleccionats, només rebreu notificacions sobre les coses que vigileu o que hi esteu implicat (ex. assumptes que en sou l'autor o hi esteu assignat)."
863 865
  text_no_configuration_data: "Encara no s'han configurat els rols, seguidors, estats de l'assumpte i flux de treball.\nÉs altament recomanable que carregueu la configuració predeterminada. Podreu modificar-la un cop carregada."
864 866
  text_load_default_configuration: Carrega la configuració predeterminada
867
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
865 868
  text_status_changed_by_changeset: "Aplicat en el conjunt de canvis {{value}}."
866 869
  text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
867 870
  text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
......
923 926
  field_start_date: Start date
924 927
  label_principal_search: "Search for user or group:"
925 928
  label_user_search: "Search for user:"
929
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
930
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"  
931
  setting_commit_logtime_activity: "Spent time activity"
932
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/cs.yml Locally Modified (Based On LOCAL)
674 674
  text_user_mail_option: "U projektů, které nebyly vybrány, budete dostávat oznámení pouze o vašich či o sledovaných položkách (např. o položkách jejichž jste autor nebo ke kterým jste přiřazen(a))."
675 675
  text_no_configuration_data: "Role, fronty, stavy úkolů ani průběh práce nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci. Po té si můžete vše upravit"
676 676
  text_load_default_configuration: Nahrát výchozí konfiguraci
677
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
677 678
  text_status_changed_by_changeset: "Použito v changesetu {{value}}."
678 679
  text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
679 680
  text_select_project_modules: 'Aktivní moduly v tomto projektu:'
......
752 753
  permission_select_project_modules: Výběr modulů projektu
753 754
  permission_manage_documents: Správa dokumentů
754 755
  permission_edit_wiki_pages: Upravování stránek Wiki
756
  setting_commit_logtime_enabled: Enable time logging
757
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
755 758
  permission_add_issue_watchers: Přidání sledujících uživatelů
756 759
  permission_view_gantt: Zobrazené Ganttova diagramu
757 760
  permission_move_issues: Přesouvání úkolů
......
920 923
  field_start_date: Start date
921 924
  label_principal_search: "Search for user or group:"
922 925
  label_user_search: "Search for user:"
926
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
927
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
928
  setting_commit_logtime_activity: "Spent time activity"
929
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/da.yml Locally Modified (Based On LOCAL)
676 676
  text_user_mail_option: "For ikke-valgte projekter vil du kun modtage beskeder omhandlende ting du er involveret i eller overvåger (f.eks. sager du har indberettet eller ejer)."
677 677
  text_no_configuration_data: "Roller, typer, sagsstatuser og arbejdsgange er endnu ikke konfigureret.\nDet er anbefalet at indlæse standardopsætningen. Du vil kunne ændre denne når den er indlæst."
678 678
  text_load_default_configuration: Indlæs standardopsætningen
679
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
679 680
  text_status_changed_by_changeset: "Anvendt i ændring {{value}}."
680 681
  text_issues_destroy_confirmation: 'Er du sikker på du ønsker at slette den/de valgte sag(er)?'
681 682
  text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
......
752 753
  text_email_delivery_not_configured: "Email-afsendelse er ikke indstillet og notifikationer er defor slået fra.\nKonfigurér din SMTP server i config/email.yml og genstart applikationen for at aktivere email-afsendelse."
753 754
  permission_protect_wiki_pages: Beskyt wiki sider
754 755
  permission_manage_documents: Administrér dokumenter
756
  setting_commit_logtime_enabled: Enable time logging
757
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
755 758
  permission_add_issue_watchers: Tilføj overvågere
756 759
  warning_attachments_not_saved: "der var {{count}} fil(er), som ikke kunne gemmes."
757 760
  permission_comment_news: Kommentér nyheder
......
937 940
  field_start_date: Start date
938 941
  label_principal_search: "Search for user or group:"
939 942
  label_user_search: "Search for user:"
943
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
944
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
945
  setting_commit_logtime_activity: "Spent time activity"
946
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/de.yml Locally Modified (Based On LOCAL)
388 388
  permission_view_gantt: Gantt-Diagramm ansehen
389 389
  permission_view_calendar: Kalender ansehen
390 390
  permission_view_issue_watchers: Liste der Beobachter ansehen
391
  setting_commit_logtime_enabled: Enable time logging
392
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
391 393
  permission_add_issue_watchers: Beobachter hinzufügen
392 394
  permission_delete_issue_watchers: Beobachter löschen
393 395
  permission_log_time: Aufwände buchen
......
880 882
  text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
881 883
  text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
882 884
  text_load_default_configuration: Standard-Konfiguration laden
885
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
883 886
  text_status_changed_by_changeset: "Status geändert durch Changeset {{value}}."
884 887
  text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
885 888
  text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
......
945 948

  
946 949
  field_start_date: Start date
947 950
  button_edit_associated_wikipage: "Edit associated Wiki page: {{page_title}}"
951
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
952
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
953
  setting_commit_logtime_activity: "Spent time activity"
954
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/el.yml Locally Modified (Based On LOCAL)
340 340
  permission_view_gantt: Προβολή διαγράμματος gantt
341 341
  permission_view_calendar: Προβολή ημερολογίου
342 342
  permission_view_issue_watchers: Προβολή λίστας παρατηρητών
343
  setting_commit_logtime_enabled: Enable time logging
344
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
343 345
  permission_add_issue_watchers: Προσθήκη παρατηρητών
344 346
  permission_log_time: Ιστορικό χρόνου που δαπανήθηκε
345 347
  permission_view_time_entries: Προβολή χρόνου που δαπανήθηκε
......
780 782
  text_user_mail_option: "Για μη επιλεγμένα έργα, θα λάβετε ειδοποιήσεις μόνο για πράγματα που παρακολουθείτε ή στα οποία συμμετέχω ενεργά (π.χ. θέματα των οποίων είστε συγγραφέας ή σας έχουν ανατεθεί)."
781 783
  text_no_configuration_data: "Οι ρόλοι, οι ανιχνευτές, η κατάσταση των θεμάτων και η ροή εργασίας δεν έχουν ρυθμιστεί ακόμα.\nΣυνιστάται ιδιαίτερα να φορτώσετε τις προεπιλεγμένες ρυθμίσεις. Θα είστε σε θέση να τις τροποποιήσετε μετά τη φόρτωση τους."
782 784
  text_load_default_configuration: Φόρτωση προεπιλεγμένων ρυθμίσεων
785
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
783 786
  text_status_changed_by_changeset: "Εφαρμόστηκε στο changeset {{value}}."
784 787
  text_issues_destroy_confirmation: 'Είστε σίγουρος ότι θέλετε να διαγράψετε το επιλεγμένο θέμα(τα);'
785 788
  text_select_project_modules: 'Επιλέξτε ποιες μονάδες θα ενεργοποιήσετε για αυτό το έργο:'
......
921 924
  field_start_date: Start date
922 925
  label_principal_search: "Search for user or group:"
923 926
  label_user_search: "Search for user:"
927
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
928
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
929
  setting_commit_logtime_activity: "Spent time activity"
930
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/en-GB.yml Locally Modified (Based On LOCAL)
364 364
  permission_view_gantt: View gantt chart
365 365
  permission_view_calendar: View calendar
366 366
  permission_view_issue_watchers: View watchers list
367
  setting_commit_logtime_enabled: Enable time logging
368
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
367 369
  permission_add_issue_watchers: Add watchers
368 370
  permission_delete_issue_watchers: Delete watchers
369 371
  permission_log_time: Log spent time
......
846 848
  text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
847 849
  text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
848 850
  text_load_default_configuration: Load the default configuration
851
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
849 852
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
850 853
  text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?'
851 854
  text_select_project_modules: 'Select modules to enable for this project:'
......
925 928
  notice_not_authorized_archived_project: The project you're trying to access has been archived.
926 929
  label_principal_search: "Search for user or group:"
927 930
  label_user_search: "Search for user:"
931
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
932
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
933
  setting_commit_logtime_activity: "Spent time activity"
934
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/en.yml Locally Modified (Based On LOCAL)
373 373
  permission_view_gantt: View gantt chart
374 374
  permission_view_calendar: View calendar
375 375
  permission_view_issue_watchers: View watchers list
376
  setting_commit_logtime_enabled: Enable time logging
377
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
376 378
  permission_add_issue_watchers: Add watchers
377 379
  permission_delete_issue_watchers: Delete watchers
378 380
  permission_log_time: Log spent time
......
867 869
  text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
868 870
  text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
869 871
  text_load_default_configuration: Load the default configuration
872
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
870 873
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
871 874
  text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
872 875
  text_select_project_modules: 'Select modules to enable for this project:'
......
920 923
  enumeration_activities: Activities (time tracking)
921 924
  enumeration_system_activity: System Activity
922 925

  
926
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
927
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
928
  setting_commit_logtime_activity: "Spent time activity"
929
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/es.yml Locally Modified (Based On LOCAL)
689 689
  notice_successful_update: Modificación correcta.
690 690
  notice_unable_delete_version: No se puede borrar la versión
691 691
  permission_add_issue_notes: Añadir notas
692
  setting_commit_logtime_enabled: Enable time logging
693
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
692 694
  permission_add_issue_watchers: Añadir seguidores
693 695
  permission_add_issues: Añadir peticiones
694 696
  permission_add_messages: Enviar mensajes
......
818 820
  text_rmagick_available: RMagick disponible (opcional)
819 821
  text_select_mail_notifications: Seleccionar los eventos a notificar
820 822
  text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:'
823
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
821 824
  text_status_changed_by_changeset: "Aplicado en los cambios {{value}}"
822 825
  text_subprojects_destroy_warning: "Los proyectos secundarios: {{value}} también se eliminarán"
823 826
  text_tip_issue_begin_day: tarea que comienza este día
......
961 964
  field_start_date: Start date
962 965
  label_principal_search: "Search for user or group:"
963 966
  label_user_search: "Search for user:"
967
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
968
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
969
  setting_commit_logtime_activity: "Spent time activity"
970
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/eu.yml Locally Modified (Based On LOCAL)
361 361
  permission_view_gantt: Gantt diagrama ikusi
362 362
  permission_view_calendar: Egutegia ikusi
363 363
  permission_view_issue_watchers: Behatzaileen zerrenda ikusi
364
  setting_commit_logtime_enabled: Enable time logging
365
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
364 366
  permission_add_issue_watchers: Behatzaileak gehitu
365 367
  permission_delete_issue_watchers: Behatzaileak ezabatu
366 368
  permission_log_time: Igarotako denbora erregistratu
......
841 843
  text_user_mail_option: "Hautatu gabeko proiektuetan, behatzen edo parte hartzen duzun gauzei buruzko jakinarazpenak jasoko dituzu (adib. zu egile zaren edo esleituta dituzun zereginak)."
842 844
  text_no_configuration_data: "Rolak, aztarnariak, zeregin egoerak eta workflow-ak ez dira oraindik konfiguratu.\nOso gomendagarria de lehenetsitako kkonfigurazioa kargatzea. Kargatu eta gero aldatu ahalko duzu."
843 845
  text_load_default_configuration: Lehenetsitako konfigurazioa kargatu
846
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
844 847
  text_status_changed_by_changeset: "{{value}} aldaketan aplikatuta."
845 848
  text_issues_destroy_confirmation: 'Ziur zaude hautatutako zeregina(k) ezabatu nahi dituzula?'
846 849
  text_select_project_modules: 'Hautatu proiektu honetan gaitu behar diren moduluak:'
......
924 927
  field_start_date: Start date
925 928
  label_principal_search: "Search for user or group:"
926 929
  label_user_search: "Search for user:"
930
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
931
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
932
  setting_commit_logtime_activity: "Spent time activity"
933
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/fi.yml Locally Modified (Based On LOCAL)
683 683
  enumeration_activities: Historia (ajan seuranta)
684 684
  label_associated_revisions: Liittyvät versiot
685 685
  setting_user_format: Käyttäjien esitysmuoto
686
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
686 687
  text_status_changed_by_changeset: "Päivitetty muutosversioon {{value}}."
687 688
  text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
688 689
  label_more: Lisää
......
777 778
  permission_select_project_modules: Valitse projektin modulit
778 779
  permission_manage_documents: Hallinnoi dokumentteja
779 780
  permission_edit_wiki_pages: Muokkaa wiki sivuja
781
  setting_commit_logtime_enabled: Enable time logging
782
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
780 783
  permission_add_issue_watchers: Lisää seuraajia
781 784
  permission_view_gantt: Näytä gantt kaavio
782 785
  permission_move_issues: Siirrä tapahtuma
......
945 948
  field_start_date: Start date
946 949
  label_principal_search: "Search for user or group:"
947 950
  label_user_search: "Search for user:"
951
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
952
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
953
  setting_commit_logtime_activity: "Spent time activity"
954
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/fr.yml Locally Modified (Based On LOCAL)
378 378
  permission_view_gantt: Voir le gantt
379 379
  permission_view_calendar: Voir le calendrier
380 380
  permission_view_issue_watchers: Voir la liste des observateurs
381
  setting_commit_logtime_enabled: Enable time logging
382
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
381 383
  permission_add_issue_watchers: Ajouter des observateurs
382 384
  permission_delete_issue_watchers: Supprimer des observateurs
383 385
  permission_log_time: Saisir le temps passé
......
857 859
  text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
858 860
  text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
859 861
  text_load_default_configuration: Charger le paramétrage par défaut
862
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
860 863
  text_status_changed_by_changeset: "Appliqué par commit {{value}}."
861 864
  text_issues_destroy_confirmation: 'Êtes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
862 865
  text_select_project_modules: 'Sélectionner les modules à activer pour ce projet :'
......
946 949
  field_assigned_to_role: Rôle de l'assigné
947 950

  
948 951
  field_start_date: Start date
952
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
953
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
954
  setting_commit_logtime_activity: "Spent time activity"
955
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/gl.yml Locally Modified (Based On LOCAL)
666 666
  notice_successful_update: Modificación correcta.
667 667
  notice_unable_delete_version: Non se pode borrar a versión
668 668
  permission_add_issue_notes: Engadir notas
669
  setting_commit_logtime_enabled: Enable time logging
670
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
669 671
  permission_add_issue_watchers: Engadir seguidores
670 672
  permission_add_issues: Engadir peticións
671 673
  permission_add_messages: Enviar mensaxes
......
795 797
  text_rmagick_available: RMagick dispoñible (opcional)
796 798
  text_select_mail_notifications: Seleccionar os eventos a notificar
797 799
  text_select_project_modules: 'Seleccione os módulos a activar para este proxecto:'
800
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
798 801
  text_status_changed_by_changeset: "Aplicado nos cambios {{value}}"
799 802
  text_subprojects_destroy_warning: "Os proxectos secundarios: {{value}} tamén se eliminarán"
800 803
  text_tip_issue_begin_day: tarefa que comeza este día
......
937 940
  field_start_date: Start date
938 941
  label_principal_search: "Search for user or group:"
939 942
  label_user_search: "Search for user:"
943
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
944
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
945
  setting_commit_logtime_activity: "Spent time activity"
946
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/he.yml Locally Modified (Based On LOCAL)
378 378
  permission_view_gantt: צפיה בגאנט
379 379
  permission_view_calendar: צפיה בלוח השנה
380 380
  permission_view_issue_watchers: צפיה ברשימת צופים
381
  setting_commit_logtime_enabled: Enable time logging
382
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
381 383
  permission_add_issue_watchers: הוספת צופים
382 384
  permission_delete_issue_watchers: הסרת צופים
383 385
  permission_log_time: תיעוד זמן שהושקע
......
873 875
  text_user_mail_option: "בפרויקטים שלא בחרת, אתה רק תקבל התרעות על שאתה צופה או קשור אליהם (לדוגמא:נושאים שאתה היוצר שלהם או אחראי עליהם)."
874 876
  text_no_configuration_data: "לא הוגדרה תצורה עבור תפקידים, סיווגים, מצבי נושא וזרימת עבודה.\nמומלץ מאד לטעון את תצורת ברירת המחדל. תוכל לשנותה מאוחר יותר."
875 877
  text_load_default_configuration: טען את אפשרויות ברירת המחדל
878
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
876 879
  text_status_changed_by_changeset: "הוחל בסדרת השינויים {{value}}."
877 880
  text_issues_destroy_confirmation: 'האם אתה בטוח שברצונך למחוק את הנושא\ים?'
878 881
  text_select_project_modules: 'בחר מודולים להחיל על פרויקט זה:'
......
933 936
  field_start_date: Start date
934 937
  label_principal_search: "Search for user or group:"
935 938
  label_user_search: "Search for user:"
939
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
940
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
941
  setting_commit_logtime_activity: "Spent time activity"
942
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/hr.yml Locally Modified (Based On LOCAL)
356 356
  permission_view_gantt: Pregledaj gantt grafikon
357 357
  permission_view_calendar: Pregledaj kalendar
358 358
  permission_view_issue_watchers: Pregledaj listu promatraca
359
  setting_commit_logtime_enabled: Enable time logging
360
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
359 361
  permission_add_issue_watchers: Dodaj promatrača
360 362
  permission_delete_issue_watchers: Delete watchers
361 363
  permission_log_time: Dnevnik utrošenog vremena 
......
836 838
  text_user_mail_option: "Za neizabrane projekte, primit ćete obavjesti samo o stvarima koje pratite ili u kojima sudjelujete (npr. predmete koje ste vi napravili ili koje su vama dodjeljeni)."
837 839
  text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." 
838 840
  text_load_default_configuration: Učitaj početnu konfiguraciju
841
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
839 842
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
840 843
  text_issues_destroy_confirmation: 'Jeste li sigurni da želite obrisati izabrani/e predmet(e)?'
841 844
  text_select_project_modules: 'Odaberite module koji će biti omogućeni za ovaj projekt:'
......
927 930
  field_start_date: Start date
928 931
  label_principal_search: "Search for user or group:"
929 932
  label_user_search: "Search for user:"
933
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
934
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
935
  setting_commit_logtime_activity: "Spent time activity"
936
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/hu.yml Locally Modified (Based On LOCAL)
701 701
  text_user_mail_option: "A nem kiválasztott projektekről csak akkor kap értesítést, ha figyelést kér rá, vagy részt vesz benne (pl. Ön a létrehozó, vagy a hozzárendelő)"
702 702
  text_no_configuration_data: "Szerepkörök, feladat típusok, feladat státuszok, és workflow adatok még nincsenek konfigurálva.\nErősen ajánlott, az alapértelmezett konfiguráció betöltése, és utána módosíthatja azt."
703 703
  text_load_default_configuration: Alapértelmezett konfiguráció betöltése
704
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
704 705
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
705 706
  text_issues_destroy_confirmation: 'Biztos benne, hogy törölni szeretné a kijelölt feladato(ka)t ?'
706 707
  text_select_project_modules: 'Válassza ki az engedélyezett modulokat ehhez a projekthez:'
......
775 776
  permission_select_project_modules: Projekt modulok kezelése
776 777
  permission_manage_documents: Dokumentumok kezelése
777 778
  permission_edit_wiki_pages: Wiki oldalak szerkesztése
779
  setting_commit_logtime_enabled: Enable time logging
780
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
778 781
  permission_add_issue_watchers: Megfigyelők felvétele
779 782
  permission_view_gantt: Gannt diagramm megtekintése
780 783
  permission_move_issues: Feladatok mozgatása
......
943 946
  field_start_date: Start date
944 947
  label_principal_search: "Search for user or group:"
945 948
  label_user_search: "Search for user:"
949
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
950
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
951
  setting_commit_logtime_activity: "Spent time activity"
952
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/id.yml Locally Modified (Based On LOCAL)
347 347
  permission_view_gantt: Tampilkan gantt chart
348 348
  permission_view_calendar: Tampilkan kalender
349 349
  permission_view_issue_watchers: Tampilkan daftar pemantau
350
  setting_commit_logtime_enabled: Enable time logging
351
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
350 352
  permission_add_issue_watchers: Tambahkan pemantau
351 353
  permission_delete_issue_watchers: Hapus pemantau
352 354
  permission_log_time: Log waktu terpakai
......
815 817
  text_user_mail_option: "Untuk proyek yang tidak dipilih, anda hanya akan menerima notifikasi hal-hal yang anda pantau atau anda terlibat di dalamnya (misalnya masalah yang anda tulis atau ditugaskan pada anda)."
816 818
  text_no_configuration_data: "Peran, pelacak, status masalah dan alur kerja belum dikonfigur.\nSangat disarankan untuk memuat konfigurasi default. Anda akan bisa mengubahnya setelah konfigurasi dimuat."
817 819
  text_load_default_configuration: Muat konfigurasi default
820
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
818 821
  text_status_changed_by_changeset: "Diterapkan di set perubahan {{value}}."
819 822
  text_issues_destroy_confirmation: 'Apakah anda yakin untuk menghapus masalah terpilih ?'
820 823
  text_select_project_modules: 'Pilih modul untuk diaktifkan pada proyek ini:'
......
928 931
  field_start_date: Start date
929 932
  label_principal_search: "Search for user or group:"
930 933
  label_user_search: "Search for user:"
934
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
935
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
936
  setting_commit_logtime_activity: "Spent time activity"
937
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/it.yml Locally Modified (Based On LOCAL)
665 665
  label_repository_plural: Repository
666 666
  label_associated_revisions: Revisioni associate
667 667
  setting_user_format: Formato visualizzazione utenti
668
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
668 669
  text_status_changed_by_changeset: "Applicata nel changeset {{value}}."
669 670
  label_more: Altro
670 671
  text_issues_destroy_confirmation: 'Sei sicuro di voler eliminare le segnalazioni selezionate?'
......
756 757
  permission_select_project_modules: Seleziona moduli progetto
757 758
  permission_manage_documents: Gestisci documenti
758 759
  permission_edit_wiki_pages: Modifica pagine wiki
760
  setting_commit_logtime_enabled: Enable time logging
761
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
759 762
  permission_add_issue_watchers: Aggiungi osservatori
760 763
  permission_view_gantt: Vedi diagrammi gantt
761 764
  permission_move_issues: Muovi segnalazioni
......
924 927
  field_start_date: Start date
925 928
  label_principal_search: "Search for user or group:"
926 929
  label_user_search: "Search for user:"
930
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
931
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
932
  setting_commit_logtime_activity: "Spent time activity"
933
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/ja.yml Locally Modified (Based On LOCAL)
399 399
  permission_view_gantt: ガントチャートの閲覧
400 400
  permission_view_calendar: カレンダーの閲覧
401 401
  permission_view_issue_watchers: ウォッチ一覧の閲覧
402
  setting_commit_logtime_enabled: Enable time logging
403
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
402 404
  permission_add_issue_watchers: ウォッチの追加
403 405
  permission_delete_issue_watchers: ウォッチの削除
404 406
  permission_log_time: 変更履歴の記入
......
895 897
  text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係している事柄(例: 自分が報告者もしくは担当者であるチケット)のみメールが送信されます。"
896 898
  text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。"
897 899
  text_load_default_configuration: デフォルト設定をロード
900
  text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
898 901
  text_status_changed_by_changeset: "更新履歴 {{value}} で適用されました。"
899 902
  text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
900 903
  text_select_project_modules: 'このプロジェクトで使用するモジュールを選択してください:'
......
950 953
  field_start_date: Start date
951 954
  label_principal_search: "Search for user or group:"
952 955
  label_user_search: "Search for user:"
956
  setting_commit_logtime_journal_enabled: Create journal entry for time logging
957
  text_commit_logtime_journal_enabled: Creates new journal (activity) entry for each spent time entry logged through a commit message
958
  setting_commit_logtime_activity: "Spent time activity"
959
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/ko.yml Locally Modified (Based On LOCAL)
392 392
  permission_view_gantt: Gantt차트 보기
393 393
  permission_view_calendar: 달력 보기
394 394
  permission_view_issue_watchers: 일감지킴이 보기
395
  setting_commit_logtime_enabled: Enable time logging
396
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
395 397
  permission_add_issue_watchers: 일감지킴이 추가
396 398
  permission_log_time: 작업시간 기록
397 399
  permission_view_time_entries: 시간입력 보기
......
829 831
  text_user_mail_option: "선택하지 않은 프로젝트에서도, 지켜보는 중이거나 속해있는 사항(일감을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
830 832
  text_no_configuration_data: "역할, 일감 유형, 일감 상태들과 업무흐름이 아직 설정되지 않았습니다.\n기본 설정을 읽어들이는 것을 권장합니다. 읽어들인 후에 수정할 수 있습니다."
831 833
  text_load_default_configuration: 기본 설정을 읽어들이기
834
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
832 835
  text_status_changed_by_changeset: "변경묶음 {{value}}에 의하여 변경됨"
833 836
  text_issues_destroy_confirmation: '선택한 일감을 정말로 삭제하시겠습니까?'
834 837
  text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:'
......
976 979
  field_start_date: Start date
977 980
  label_principal_search: "Search for user or group:"
978 981
  label_user_search: "Search for user:"
982
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
983
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
984
  setting_commit_logtime_activity: "Spent time activity"
985
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/lt.yml Locally Modified (Based On LOCAL)
407 407
  permission_view_gantt: Matyti Gantt grafiką
408 408
  permission_view_calendar: Matyti kalendorių
409 409
  permission_view_issue_watchers: Matyti stebėtojų sąrašą
410
  setting_commit_logtime_enabled: Enable time logging
411
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
410 412
  permission_add_issue_watchers: Pridėti stebėtojus
411 413
  permission_delete_issue_watchers: Pašalinti stebėtojus
412 414
  permission_log_time: Regsitruoti dirbtą laiką
......
871 873
  text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, jūs esate autorius ar įgaliotinis)."
872 874
  text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo konfigūruoti.\nGriežtai rekomenduojam užkrauti numatytąją(default)konfiguraciją. Užkrovus, galėsite ją modifikuoti."
873 875
  text_load_default_configuration: Užkrauti numatytąj konfiguraciją
876
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
874 877
  text_status_changed_by_changeset: "Pakeista {{value}} revizijoje."
875 878
  text_issues_destroy_confirmation: 'Ar jūs tikrai norite sunaikinti pažymėtą(us) darbą(us)?'
876 879
  text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:'
......
984 987
  field_start_date: Start date
985 988
  label_principal_search: "Search for user or group:"
986 989
  label_user_search: "Search for user:"
990
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
991
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
992
  setting_commit_logtime_activity: "Spent time activity"
993
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/lv.yml Locally Modified (Based On LOCAL)
354 354
  permission_view_gantt: Skatīt Ganta diagrammu
355 355
  permission_view_calendar: Skatīt kalendāru
356 356
  permission_view_issue_watchers: Skatīt vērotāju sarakstu
357
  setting_commit_logtime_enabled: Enable time logging
358
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
357 359
  permission_add_issue_watchers: Pievienot vērotājus
358 360
  permission_delete_issue_watchers: Dzēst vērotājus
359 361
  permission_log_time: Piereģistrēt pavadīto laiku
......
836 838
  text_user_mail_option: "No neizvēlētajiem projektiem Jūs saņemsiet ziņojumus e-pastā tikai par notikumiem, kuriem Jūs sekojat vai kuros esat iesaistīts." 
837 839
  text_no_configuration_data: "Lomas, trakeri, uzdevumu statusi un darba plūsmas vēl nav konfigurētas.\nĻoti ieteicams ielādēt noklusēto konfigurāciju. Pēc ielādēšanas to būs iespējams modificēt."
838 840
  text_load_default_configuration: Ielādēt noklusēto konfigurāciju
841
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
839 842
  text_status_changed_by_changeset: "Apstiprināts izmaiņu kopumā {{value}}."
840 843
  text_issues_destroy_confirmation: 'Vai tiešām vēlaties dzēst izvēlēto uzdevumu(us)?'
841 844
  text_select_project_modules: 'Izvēlieties moduļus šim projektam:'
......
915 918
  field_start_date: Start date
916 919
  label_principal_search: "Search for user or group:"
917 920
  label_user_search: "Search for user:"
921
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
922
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
923
  setting_commit_logtime_activity: "Spent time activity"
924
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/mk.yml Locally Modified (Based On LOCAL)
369 369
  permission_view_gantt: View gantt chart
370 370
  permission_view_calendar: View calendar
371 371
  permission_view_issue_watchers: View watchers list
372
  setting_commit_logtime_enabled: Enable time logging
373
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
372 374
  permission_add_issue_watchers: Add watchers
373 375
  permission_delete_issue_watchers: Delete watchers
374 376
  permission_log_time: Бележи потрошено време
......
859 861
  text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
860 862
  text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
861 863
  text_load_default_configuration: Load the default configuration
864
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
862 865
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
863 866
  text_issues_destroy_confirmation: 'Дали сте сигурни дека сакате да ги избришете избраните задачи?'
864 867
  text_select_project_modules: 'Изберете модули за овој проект:'
......
920 923
  field_start_date: Start date
921 924
  label_principal_search: "Search for user or group:"
922 925
  label_user_search: "Search for user:"
926
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
927
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
928
  setting_commit_logtime_activity: "Spent time activity"
929
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/mn.yml Locally Modified (Based On LOCAL)
358 358
  permission_view_gantt: Гант диаграмыг үзэх
359 359
  permission_view_calendar: Календарь үзэх
360 360
  permission_view_issue_watchers: Ажиглагчдын жагсаалтыг харах
361
  setting_commit_logtime_enabled: Enable time logging
362
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
361 363
  permission_add_issue_watchers: Ажиглагчид нэмэх
362 364
  permission_delete_issue_watchers: Ажиглагчдыг устгах
363 365
  permission_log_time: Зарцуулсан хугацааг лог хийх
......
841 843
  text_user_mail_option: "Сонгогдоогүй төслүүдийн хувьд, та зөвхөн өөрийнхөө ажиглаж байгаа зүйлс юмуу танд хамаатай зүйлсийн талаар мэдэгдэл авах болно (Таны оруулсан асуудал, эсвэл танд оноосон гэх мэт)."
842 844
  text_no_configuration_data: "Хандалтын эрхүүд, чиглэлүүд, асуудлын төлвүүд болон ажлын дарааллын тухай мэдээллийг хараахан оруулаагүй байна.\nТа стандарт өгөгдлүүдийг даруйхан оруулахыг зөвлөж байна, оруулсан хойно та засварлаж болно."
843 845
  text_load_default_configuration: Стандарт өгөгдлийг ачаалах
846
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
844 847
  text_status_changed_by_changeset: "{{value}} өөрчлөлтөд хийгдсэн."
845 848
  text_issues_destroy_confirmation: 'Та сонгогдсон асуудлуудыг үнэхээр устгамаар байна уу ?'
846 849
  text_select_project_modules:  'Энэ төслийн хувьд идэвхжүүлэх модулуудаа сонгоно уу:'
......
921 924
  field_start_date: Start date
922 925
  label_principal_search: "Search for user or group:"
923 926
  label_user_search: "Search for user:"
927
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
928
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
929
  setting_commit_logtime_activity: "Spent time activity"
930
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/nl.yml Locally Modified (Based On LOCAL)
632 632
  notice_successful_update: Wijzigen succesvol.
633 633
  notice_unable_delete_version: Niet mogelijk om deze versie te verwijderen.
634 634
  permission_add_issue_notes: Voeg notities toe
635
  setting_commit_logtime_enabled: Enable time logging
636
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
635 637
  permission_add_issue_watchers: Voeg monitors toe
636 638
  permission_add_issues: Voeg issues toe
637 639
  permission_add_messages: Voeg berichten toe
......
762 764
  text_rmagick_available: RMagick beschikbaar (optioneel)
763 765
  text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
764 766
  text_select_project_modules: 'Selecteer de modules die u wilt gebruiken voor dit project:'
767
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
765 768
  text_status_changed_by_changeset: "Toegepast in changeset {{value}}."
766 769
  text_subprojects_destroy_warning: "De subprojecten: {{value}} zullen ook verwijderd worden."
767 770
  text_tip_issue_begin_day: issue die op deze dag begint
......
902 905
  field_start_date: Start date
903 906
  label_principal_search: "Search for user or group:"
904 907
  label_user_search: "Search for user:"
908
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
909
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
910
  setting_commit_logtime_activity: "Spent time activity"
911
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/no.yml Locally Modified (Based On LOCAL)
673 673
  text_user_mail_option: "For ikke-valgte prosjekter vil du bare motta varsling om ting du overvåker eller er involveret i (eks. saker du er forfatter av eller er tildelt)."
674 674
  text_no_configuration_data: "Roller, arbeidsflyt, sakstyper og -statuser er ikke konfigurert enda.\nDet anbefales sterkt å laste inn standardkonfigurasjonen. Du vil kunne endre denne etter den er innlastet."
675 675
  text_load_default_configuration: Last inn standardkonfigurasjonen
676
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
676 677
  text_status_changed_by_changeset: "Brukt i endringssett {{value}}."
677 678
  text_issues_destroy_confirmation: 'Er du sikker på at du vil slette valgte sak(er) ?'
678 679
  text_select_project_modules: 'Velg moduler du vil aktivere for dette prosjektet:'
......
743 744
  permission_select_project_modules: Velge prosjekt-moduler
744 745
  permission_manage_documents: Behandle dokumenter
745 746
  permission_edit_wiki_pages: Redigere wiki-sider
747
  setting_commit_logtime_enabled: Enable time logging
748
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
746 749
  permission_add_issue_watchers: Legge til overvåkere
747 750
  permission_view_gantt: Vise gantt-diagram
748 751
  permission_move_issues: Flytte saker
......
911 914
  field_start_date: Start date
912 915
  label_principal_search: "Search for user or group:"
913 916
  label_user_search: "Search for user:"
917
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
918
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
919
  setting_commit_logtime_activity: "Spent time activity"
920
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/pl.yml Locally Modified (Based On LOCAL)
667 667
  notice_successful_update: Uaktualnienie zakończone sukcesem.
668 668
  notice_unable_delete_version: Nie można usunąć wersji
669 669
  permission_add_issue_notes: Dodawanie notatek
670
  setting_commit_logtime_enabled: Enable time logging
671
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
670 672
  permission_add_issue_watchers: Dodawanie obserwatorów
671 673
  permission_add_issues: Dodawanie zagadnień
672 674
  permission_add_messages: Dodawanie wiadomości
......
794 796
  text_rmagick_available: RMagick dostępne (opcjonalnie)
795 797
  text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
796 798
  text_select_project_modules: 'Wybierz moduły do aktywacji w tym projekcie:'
799
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
797 800
  text_status_changed_by_changeset: "Zastosowane w zmianach {{value}}."
798 801
  text_subprojects_destroy_warning: "Podprojekt(y): {{value}} zostaną także usunięte."
799 802
  text_tip_issue_begin_day: zadanie zaczynające się dzisiaj
......
941 944
  field_start_date: Start date
942 945
  label_principal_search: "Search for user or group:"
943 946
  label_user_search: "Search for user:"
947
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
948
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"  
949
  setting_commit_logtime_activity: "Spent time activity"
950
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
951

  
config/locales/pt-BR.yml Locally Modified (Based On LOCAL)
715 715
  text_user_mail_option: "Para projetos (não selecionados), você somente receberá notificações sobre o que você está observando ou está envolvido (ex. tarefas das quais você é o autor ou que estão atribuídas a você)"
716 716
  text_no_configuration_data: "Os Papéis, tipos de tarefas, situação de tarefas e fluxos de trabalho não foram configurados ainda.\nÉ altamente recomendado carregar as configurações padrão. Você poderá modificar estas configurações assim que carregadas."
717 717
  text_load_default_configuration: Carregar a configuração padrão
718
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
718 719
  text_status_changed_by_changeset: "Aplicado no changeset {{value}}."
719 720
  text_issues_destroy_confirmation: 'Você tem certeza que deseja excluir a(s) tarefa(s) selecionada(s)?'
720 721
  text_select_project_modules: 'Selecione módulos para habilitar para este projeto:'
......
776 777
  permission_select_project_modules: Selecionar módulos de projeto
777 778
  permission_manage_documents: Gerenciar documentos
778 779
  permission_edit_wiki_pages: Editar páginas wiki
780
  setting_commit_logtime_enabled: Enable time logging
781
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
779 782
  permission_add_issue_watchers: Adicionar observadores
780 783
  permission_view_gantt: Ver gráfico gantt
781 784
  permission_move_issues: Mover tarefas
......
948 951
  field_start_date: Start date
949 952
  label_principal_search: "Search for user or group:"
950 953
  label_user_search: "Search for user:"
954
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
955
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
956
  setting_commit_logtime_activity: "Spent time activity"
957
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/pt.yml Locally Modified (Based On LOCAL)
702 702
  text_user_mail_option: "Para projectos não seleccionados, apenas receberá notificações acerca de coisas que está a observar ou está envolvido (ex. tarefas das quais foi o criador ou lhes foram atribuídas)."
703 703
  text_no_configuration_data: "Perfis, tipos de tarefas, estados das tarefas e workflows ainda não foram configurados.\nÉ extremamente recomendado carregar as configurações padrão. Será capaz de as modificar depois de estarem carregadas."
704 704
  text_load_default_configuration: Carregar as configurações padrão
705
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
705 706
  text_status_changed_by_changeset: "Aplicado no changeset {{value}}."
706 707
  text_issues_destroy_confirmation: 'Tem a certeza que deseja apagar a(s) tarefa(s) seleccionada(s)?'
707 708
  text_select_project_modules: 'Seleccione os módulos a activar para este projecto:'
......
760 761
  permission_select_project_modules: Seleccionar módulos do projecto
761 762
  permission_manage_documents: Gerir documentos
762 763
  permission_edit_wiki_pages: Editar páginas de wiki
764
  setting_commit_logtime_enabled: Enable time logging
765
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
763 766
  permission_add_issue_watchers: Adicionar observadores
764 767
  permission_view_gantt: ver diagrama de Gantt
765 768
  permission_move_issues: Mover tarefas
......
928 931
  field_start_date: Start date
929 932
  label_principal_search: "Search for user or group:"
930 933
  label_user_search: "Search for user:"
934
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
935
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
936
  setting_commit_logtime_activity: "Spent time activity"
937
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/ro.yml Locally Modified (Based On LOCAL)
321 321
  permission_view_gantt: Afișează Gantt
322 322
  permission_view_calendar: Afișează calendarul
323 323
  permission_view_issue_watchers: Afișează lista de persoane interesate
324
  setting_commit_logtime_enabled: Enable time logging
325
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
324 326
  permission_add_issue_watchers: Adaugă persoane interesate
325 327
  permission_log_time: Înregistrează timpul de lucru
326 328
  permission_view_time_entries: Afișează timpul de lucru
......
756 758
  text_user_mail_option: "Pentru proiectele care nu sunt selectate, veți primi notificări doar pentru ceea ce urmăriți sau în ce sunteți implicat (ex: tichete create de dumneavoastră sau care vă sunt atribuite)."
757 759
  text_no_configuration_data: "Nu s-au configurat încă rolurile, stările tichetelor și modurile de lucru.\nEste recomandat să încărcați configurația implicită. O veți putea modifica ulterior."
758 760
  text_load_default_configuration: Încarcă configurația implicită
761
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
759 762
  text_status_changed_by_changeset: "Aplicat în setul {{value}}."
760 763
  text_issues_destroy_confirmation: 'Sigur doriți să ștergeți tichetele selectate?'
761 764
  text_select_project_modules: 'Selectați modulele active pentru acest proiect:'
......
913 916
  field_start_date: Start date
914 917
  label_principal_search: "Search for user or group:"
915 918
  label_user_search: "Search for user:"
919
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
920
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
921
  setting_commit_logtime_activity: "Spent time activity"
922
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/ru.yml Locally Modified (Based On LOCAL)
792 792

  
793 793
  permission_add_issues: Добавление задач
794 794
  permission_add_issue_notes: Добавление примечаний
795
  setting_commit_logtime_enabled: Enable time logging
796
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
795 797
  permission_add_issue_watchers: Добавление наблюдателей
796 798
  permission_add_messages: Отправка сообщений
797 799
  permission_browse_repository: Просмотр хранилища
......
940 942
  text_rmagick_available: Доступно использование RMagick (опционально)
941 943
  text_select_mail_notifications: Выберите действия, на которые будет отсылаться уведомление на электронную почту.
942 944
  text_select_project_modules: 'Выберите модули, которые будут использованы в проекте:'
945
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
943 946
  text_status_changed_by_changeset: "Реализовано в {{value}} редакции."
944 947
  text_subprojects_destroy_warning: "Подпроекты: {{value}} также будут удалены."
945 948
  text_tip_issue_begin_day: дата начала задачи
......
1043 1046
  label_principal_search: "Search for user or group:"
1044 1047
  label_user_search: "Search for user:"
1045 1048
  field_start_date: Start Date
1049
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
1050
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
1051
  setting_commit_logtime_activity: "Spent time activity"
1052
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/sk.yml Locally Modified (Based On LOCAL)
668 668
  text_user_mail_option: "U projektov, které neboli vybrané, budete dostávať oznamenie iba o vašich či o sledovaných položkách (napr. o položkách, ktorých ste autor, alebo ku ktorým ste priradený/á)."
669 669
  text_no_configuration_data: "Role, fronty, stavy úloh ani workflow neboli zatiaľ nakonfigurované.\nVelmi doporučujeme nahrať východziu konfiguráciu. Potom si môžete všetko upraviť"
670 670
  text_load_default_configuration: Nahrať východziu konfiguráciu
671
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
671 672
  text_status_changed_by_changeset: "Aktualizované v sade zmien {{value}}."
672 673
  text_issues_destroy_confirmation: 'Naozaj si prajete odstrániť všetky zvolené úlohy?'
673 674
  text_select_project_modules: 'Aktivne moduly v tomto projekte:'
......
746 747
  permission_select_project_modules: Voľba projektových modulov
747 748
  permission_manage_documents: Správa dokumentov
748 749
  permission_edit_wiki_pages: Úprava Wiki strániek
750
  setting_commit_logtime_enabled: Enable time logging
751
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
749 752
  permission_add_issue_watchers: Pridanie pozorovateľov
750 753
  permission_view_gantt: Zobrazenie Ganttovho diagramu
751 754
  permission_move_issues: Presun úloh
......
915 918
  field_start_date: Start date
916 919
  label_principal_search: "Search for user or group:"
917 920
  label_user_search: "Search for user:"
921
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
922
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
923
  setting_commit_logtime_activity: "Spent time activity"
924
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/sl.yml Locally Modified (Based On LOCAL)
318 318
  permission_view_gantt: Poglej gantogram
319 319
  permission_view_calendar: Poglej koledar
320 320
  permission_view_issue_watchers: Oglej si listo spremeljevalcev
321
  setting_commit_logtime_enabled: Enable time logging
322
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
321 323
  permission_add_issue_watchers: Dodaj spremljevalce
322 324
  permission_log_time: Beleži porabljen čas
323 325
  permission_view_time_entries: Poglej porabljen čas
......
744 746
  text_user_mail_option: "Na neizbrane projekte boste prejemali le obvestila o zadevah ki jih spremljate ali v katere ste vključeni (npr. zahtevki katerih avtor(ica) ste)"
745 747
  text_no_configuration_data: "Vloge, vrste zahtevkov, statusi zahtevkov in potek dela še niso bili določeni. \nZelo priporočljivo je, da naložite privzeto  konfiguracijo, ki jo lahko kasneje tudi prilagodite."
746 748
  text_load_default_configuration: Naloži privzeto konfiguracijo
749
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
747 750
  text_status_changed_by_changeset: "Dodano v zapis sprememb {{value}}."
748 751
  text_issues_destroy_confirmation: 'Ali ste prepričani, da želite izbrisati izbrani(e) zahtevek(ke)?'
749 752
  text_select_project_modules: 'Izberite module, ki jih želite omogočiti za ta projekt:'
......
916 919
  field_start_date: Start date
917 920
  label_principal_search: "Search for user or group:"
918 921
  label_user_search: "Search for user:"
922
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
923
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
924
  setting_commit_logtime_activity: "Spent time activity"
925
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/sr-YU.yml Locally Modified (Based On LOCAL)
368 368
  permission_view_gantt: Pregledanje Gantovog dijagrama
369 369
  permission_view_calendar: Pregledanje kalendara
370 370
  permission_view_issue_watchers: Pregledanje spiska posmatrača
371
  setting_commit_logtime_enabled: Enable time logging
372
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
371 373
  permission_add_issue_watchers: Dodavanje posmatrača
372 374
  permission_delete_issue_watchers: Brisanje posmatrača
373 375
  permission_log_time: Beleženje utrošenog vremena
......
856 858
  text_user_mail_option: "Za neizabrane projekte, dobićete samo obaveštenje o stvarima koje pratite ili ste uključeni (npr. problemi čiji ste vi autor ili zastupnik)."
857 859
  text_no_configuration_data: "Uloge, praćenja, statusi problema i toka posla još uvek nisu podešeni.\nPreporučljivo je da učitate podrazumevano konfigurisanje. Izmena je moguća nakon prvog učitavanja."
858 860
  text_load_default_configuration: Učitaj podrazumevano konfigurisanje
861
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
859 862
  text_status_changed_by_changeset: "Primenjeno u skupu sa promenama {{value}}."
860 863
  text_issues_destroy_confirmation: 'Jeste li sigurni da želite da izbrišete odabrane probleme?'
861 864
  text_select_project_modules: 'Odaberite module koje želite omogućiti za ovaj projekat:'
......
920 923
  field_start_date: Start date
921 924
  label_principal_search: "Search for user or group:"
922 925
  label_user_search: "Search for user:"
926
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
927
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
928
  setting_commit_logtime_activity: "Spent time activity"
929
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/sr.yml Locally Modified (Based On LOCAL)
368 368
  permission_view_gantt: Прегледање Гантовог дијаграма
369 369
  permission_view_calendar: Прегледање календара
370 370
  permission_view_issue_watchers: Прегледање списка посматрача
371
  setting_commit_logtime_enabled: Enable time logging
372
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
371 373
  permission_add_issue_watchers: Додавање посматрача
372 374
  permission_delete_issue_watchers: Брисање посматрача
373 375
  permission_log_time: Бележење утрошеног времена
......
856 858
  text_user_mail_option: "За неизабране пројекте, добићете само обавештење о стварима које пратите или сте укључени (нпр. проблеми чији сте ви аутор или заступник)."
857 859
  text_no_configuration_data: "Улоге, праћења, статуси проблема и тока посла још увек нису подешени.\nПрепоручљиво је да учитате подразумевано конфигурисање. Измена је могућа након првог учитавања."
858 860
  text_load_default_configuration: Учитај подразумевано конфигурисање
861
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
859 862
  text_status_changed_by_changeset: "Примењено у скупу са променама {{value}}."
860 863
  text_issues_destroy_confirmation: 'Јесте ли сигурни да желите да избришете одабране проблеме?'
861 864
  text_select_project_modules: 'Одаберите модуле које желите омогућити за овај пројекат:'
......
921 924
  field_start_date: Start date
922 925
  label_principal_search: "Search for user or group:"
923 926
  label_user_search: "Search for user:"
927
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
928
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
929
  setting_commit_logtime_activity: "Spent time activity"
930
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/sv.yml Locally Modified (Based On LOCAL)
420 420
  permission_view_gantt: Visa Gantt-schema
421 421
  permission_view_calendar: Visa kalender
422 422
  permission_view_issue_watchers: Visa bevakarlista
423
  setting_commit_logtime_enabled: Enable time logging
424
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
423 425
  permission_add_issue_watchers: Lägga till bevakare
424 426
  permission_delete_issue_watchers: Ta bort bevakare
425 427
  permission_log_time: Logga spenderad tid
......
912 914
  text_user_mail_option: "För omarkerade projekt kommer du bara bli underrättad om saker du bevakar eller är inblandad i (T.ex. ärenden du skapat eller tilldelats)."
913 915
  text_no_configuration_data: "Roller, ärendetyper, ärendestatus och arbetsflöden har inte konfigurerats ännu.\nDet rekommenderas att läsa in standardkonfigurationen. Du kommer att kunna göra ändringar efter att den blivit inläst."
914 916
  text_load_default_configuration: Läs in standardkonfiguration
917
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
915 918
  text_status_changed_by_changeset: "Tilldelad i changeset {{value}}."
916 919
  text_issues_destroy_confirmation: 'Är du säker på att du vill radera markerade ärende(n) ?'
917 920
  text_select_project_modules: 'Välj vilka moduler som ska vara aktiva för projektet:'
......
972 975
  field_start_date: Start date
973 976
  label_principal_search: "Search for user or group:"
974 977
  label_user_search: "Search for user:"
978
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
979
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
980
  setting_commit_logtime_activity: "Spent time activity"
981
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/th.yml Locally Modified (Based On LOCAL)
674 674
  text_user_mail_option: "ในโครงการที่ไม่ได้เลือก, คุณจะได้รับการแจ้งเกี่ยวกับสิ่งที่คุณเฝ้าดูหรือมีส่วนเกี่ยวข้อง (เช่นปัญหาที่คุณแจ้งไว้หรือได้รับมอบหมาย)."
675 675
  text_no_configuration_data: "บทบาท, การติดตาม, สถานะปัญหา และลำดับงานยังไม่ได้ถูกตั้งค่า.\nขอแนะนำให้โหลดค่าเริ่มต้น. คุณสามารถแก้ไขค่าได้หลังจากโหลดแล้ว."
676 676
  text_load_default_configuration: โหลดค่าเริ่มต้น
677
  text_time_logged_by_changeset: "Time logged by changeset {{value}}."
677 678
  text_status_changed_by_changeset: "ประยุกต์ใช้ในกลุ่มการเปลี่ยนแปลง {{value}}."
678 679
  text_issues_destroy_confirmation: 'คุณแน่ใจไหมว่าต้องการลบปัญหา(ทั้งหลาย)ที่เลือกไว้?'
679 680
  text_select_project_modules: 'เลือกส่วนประกอบที่ต้องการใช้งานสำหรับโครงการนี้:'
......
749 750
  permission_select_project_modules: Select project modules
750 751
  permission_manage_documents: Manage documents
751 752
  permission_edit_wiki_pages: Edit wiki pages
753
  setting_commit_logtime_enabled: Enable time logging
754
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
752 755
  permission_add_issue_watchers: Add watchers
753 756
  permission_view_gantt: View gantt chart
754 757
  permission_move_issues: Move issues
......
917 920
  field_start_date: Start date
918 921
  label_principal_search: "Search for user or group:"
919 922
  label_user_search: "Search for user:"
923
  setting_commit_logtime_journal_enabled: Create journal entry for time logging
924
  text_commit_logtime_journal_enabled: Creates new journal (activity) entry for each spent time entry logged through a commit message
925
  setting_commit_logtime_activity: "Spent time activity"
926
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/tmp Locally New
1
  setting_commit_logtime_activity: "Spent time activity"
2
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/tr.yml Locally Modified (Based On LOCAL)
699 699
  text_user_mail_option: "Seçili olmayan projeler için, sadece dahil olduğunuz ya da izlediğiniz öğeler hakkında uyarılar alacaksınız (örneğin,yazarı veya atandığınız iletiler)."
700 700
  text_no_configuration_data: "Roller, takipçiler, ileti durumları ve işakışı henüz yapılandırılmadı.\nVarsayılan yapılandırılmanın yüklenmesi şiddetle tavsiye edilir. Bir kez yüklendiğinde yapılandırmayı değiştirebileceksiniz."
701 701
  text_load_default_configuration: Varsayılan yapılandırmayı yükle
702
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
702 703
  text_status_changed_by_changeset: "Değişiklik listesi {{value}} içinde uygulandı."
703 704
  text_issues_destroy_confirmation: 'Seçili iletileri silmek istediğinizden emin misiniz ?'
704 705
  text_select_project_modules: 'Bu proje için etkinleştirmek istediğiniz modülleri seçin:'
......
775 776
  permission_select_project_modules: Select project modules
776 777
  permission_manage_documents: Manage documents
777 778
  permission_edit_wiki_pages: Edit wiki pages
779
  setting_commit_logtime_enabled: Enable time logging
780
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
778 781
  permission_add_issue_watchers: Add watchers
779 782
  permission_view_gantt: View gantt chart
780 783
  permission_move_issues: Move issues
......
943 946
  field_start_date: Start date
944 947
  label_principal_search: "Search for user or group:"
945 948
  label_user_search: "Search for user:"
949
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
950
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
951
  setting_commit_logtime_activity: "Spent time activity"
952
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/uk.yml Locally Modified (Based On LOCAL)
640 640
  enumeration_issue_priorities: Пріоритети питань
641 641
  enumeration_doc_categories: Категорії документів
642 642
  enumeration_activities: Дії (облік часу)
643
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
643 644
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
644 645
  label_display_per_page: "Per page: {{value}}"
645 646
  label_issue_added: Issue added
......
748 749
  permission_select_project_modules: Select project modules
749 750
  permission_manage_documents: Manage documents
750 751
  permission_edit_wiki_pages: Edit wiki pages
752
  setting_commit_logtime_enabled: Enable time logging
753
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
751 754
  permission_add_issue_watchers: Add watchers
752 755
  permission_view_gantt: View gantt chart
753 756
  permission_move_issues: Move issues
......
916 919
  field_start_date: Start date
917 920
  label_principal_search: "Search for user or group:"
918 921
  label_user_search: "Search for user:"
922
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
923
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
924
  setting_commit_logtime_activity: "Spent time activity"
925
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/vi.yml Locally Modified (Based On LOCAL)
747 747
  text_user_mail_option: "Với các dự án không được chọn, bạn chỉ có thể nhận được thông báo về các vấn đề bạn đăng ký theo dõi hoặc có liên quan đến bạn (chẳng hạn, vấn đề được gán cho bạn)."
748 748
  text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
749 749
  text_load_default_configuration: Load the default configuration
750
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
750 751
  text_status_changed_by_changeset: "Applied in changeset {{value}}."
751 752
  text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
752 753
  text_select_project_modules: 'Chọn các mô-đun cho dự án:'
......
808 809
  permission_view_gantt: Xem biểu đồ sự kiện
809 810
  permission_view_calendar: Xem lịch
810 811
  permission_view_issue_watchers: Xem các người theo dõi
812
  setting_commit_logtime_enabled: Enable time logging
813
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
811 814
  permission_add_issue_watchers: Thêm người theo dõi
812 815
  permission_log_time: Lưu thời gian đã tốn
813 816
  permission_view_time_entries: Xem thời gian đã tốn
......
975 978
  field_start_date: Start date
976 979
  label_principal_search: "Search for user or group:"
977 980
  label_user_search: "Search for user:"
981
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
982
  text_commit_logtime_journal_enabled: "Creates new journal (activity) entry for each spent time entry logged through a commit message"
983
  setting_commit_logtime_activity: "Spent time activity"
984
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/zh-TW.yml Locally Modified (Based On LOCAL)
461 461
  permission_view_gantt: 檢視甘特圖
462 462
  permission_view_calendar: 檢視日曆
463 463
  permission_view_issue_watchers: 檢視觀察者清單
464
  setting_commit_logtime_enabled: Enable time logging
465
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
464 466
  permission_add_issue_watchers: 新增觀察者
465 467
  permission_delete_issue_watchers: 刪除觀察者
466 468
  permission_log_time: 紀錄耗用工時
......
956 958
  text_user_mail_option: "對於那些未被選擇的專案,將只會接收到您正在觀察中,或是參與中的項目通知。(「參與中的項目」包含您建立的或是指派給您的項目)"
957 959
  text_no_configuration_data: "角色、追蹤標籤、項目狀態與流程尚未被設定完成。\n強烈建議您先載入預設的組態。將預設組態載入之後,您可再變更其中之值。"
958 960
  text_load_default_configuration: 載入預設組態
961
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
959 962
  text_status_changed_by_changeset: "已套用至變更集 {{value}}."
960 963
  text_issues_destroy_confirmation: '確定刪除已選擇的項目?'
961 964
  text_select_project_modules: '選擇此專案可使用之模組:'
......
1011 1014

  
1012 1015
  label_principal_search: "Search for user or group:"
1013 1016
  label_user_search: "Search for user:"
1017
  setting_commit_logtime_journal_enabled: Create journal entry for time logging
1018
  text_commit_logtime_journal_enabled: Creates new journal (activity) entry for each spent time entry logged through a commit message
1019
  setting_commit_logtime_activity: "Spent time activity"
1020
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/locales/zh.yml Locally Modified (Based On LOCAL)
376 376
  permission_view_gantt: 查看甘特图
377 377
  permission_view_calendar: 查看日历
378 378
  permission_view_issue_watchers: 查看跟踪者列表
379
  setting_commit_logtime_enabled: Enable time logging
380
  text_commit_logtime: "Allows to log time in commit messages. Examples: refs #123 @1.5 or refs #123 @1h30m or fixes #123 @1h 30m (logs one hour and 30 minutes for issue #123)"
379 381
  permission_add_issue_watchers: 添加跟踪者
380 382
  permission_delete_issue_watchers: 删除跟踪者
381 383
  permission_log_time: 登记工时
......
855 857
  text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。"
856 858
  text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。"
857 859
  text_load_default_configuration: 载入默认设置
860
  text_time_logged_by_changeset: "Spent time of {{value}} hours logged by changeset {{value2}}."
858 861
  text_status_changed_by_changeset: "已应用到变更列表 {{value}}."
859 862
  text_issues_destroy_confirmation: '您确定要删除选中的问题吗?'
860 863
  text_select_project_modules: '请选择此项目可以使用的模块:'
......
938 941
  field_start_date: Start date
939 942
  label_principal_search: "Search for user or group:"
940 943
  label_user_search: "Search for user:"
944
  setting_commit_logtime_journal_enabled: "Create journal entry for time logging"
945
  text_commit_logtime_journal_enabled: Creates new journal (activity) entry for each spent time entry logged through a commit message
946
  setting_commit_logtime_activity: "Spent time activity"
947
  text_commit_logtime_activity: "Log spent time from commit message on this activity. For example: Development"
config/settings.yml Locally Modified (Based On LOCAL)
98 98
  default: 0
99 99
commit_fix_done_ratio:
100 100
  default: 100
101
commit_logtime_enabled:
102
  format: int
103
  default: 0
104
commit_logtime_journal_enabled:
105
  format: int
106
  default: 1
107
commit_logtime_activity:
108
  format: int
109
  default: 0
101 110
# autologin duration in days
102 111
# 0 means autologin is disabled 
103 112
autologin:
lib/redmine/i18n.rb Locally Modified (Based On LOCAL)
31 31
      l((hours < 2.0 ? :label_f_hour : :label_f_hour_plural), :value => ("%.2f" % hours.to_f))
32 32
    end
33 33
    
34
    def ll(lang, str, value=nil)
35
      ::I18n.t(str.to_s, :value => value, :locale => lang.to_s.gsub(%r{(.+)\-(.+)$}) { "#{$1}-#{$2.upcase}" })
34
    def ll(lang, str, value=nil, value2=nil)
35
      ::I18n.t(str.to_s, :value => value, :value2 => value2, :locale => lang.to_s.gsub(%r{(.+)\-(.+)$}) { "#{$1}-#{$2.upcase}" })
36 36
    end
37 37

  
38 38
    def format_date(date)
test/fixtures/changesets.yml Locally Modified (Based On LOCAL)
101 101
  user_id: 3
102 102
  repository_id: 10
103 103
  committer: dlopper
104
  
104
changesets_011:
105
  commit_date: "2010-11-09"
106
  comments: Logging spent time on IssueID #1 @1h30m
107
  committed_on: 2009-11-09 12:14:41
108
  revision: "11"
109
  id: 110
110
  scmid:
111
  user_id: 3
112
  repository_id: 10
113
  committer: dlopper
114
changesets_012:
115
  commit_date: "2010-11-09"
116
  comments: Testing time logging from revision 12, references #1 @3.5h #2 @2h 20m and closes #3 @30m
117
  committed_on: 2009-11-09 12:19:38
118
  revision: "12"
119
  id: 111
120
  scmid:
121
  user_id: 3
122
  repository_id: 10
123
  committer: dlopper
... This diff was truncated because it exceeds the maximum size that can be displayed.
(12-12/13)