mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-01 03:57:15 +00:00
Fix hardcoded string "auto" on user preferences page (#39879).
Patch by @salmanmp. git-svn-id: https://svn.redmine.org/redmine/trunk@22549 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
1f7f1a2db7
commit
2634d43c8c
@ -1474,7 +1474,7 @@ module ApplicationHelper
|
||||
end
|
||||
|
||||
def lang_options_for_select(blank=true)
|
||||
(blank ? [["(auto)", ""]] : []) + languages_options
|
||||
(blank ? [["(#{l('label_option_auto_lang')})", ""]] : []) + languages_options
|
||||
end
|
||||
|
||||
def labelled_form_for(*args, &proc)
|
||||
|
||||
@ -879,6 +879,7 @@ en:
|
||||
label_diff_inline: inline
|
||||
label_diff_side_by_side: side by side
|
||||
label_options: Options
|
||||
label_option_auto_lang: auto
|
||||
label_copy_workflow_from: Copy workflow from
|
||||
label_permissions_report: Permissions report
|
||||
label_watched_issues: Watched issues
|
||||
|
||||
@ -875,6 +875,7 @@ fa:
|
||||
label_diff_inline: همردیف
|
||||
label_diff_side_by_side: پهلوبهپهلو
|
||||
label_options: گزینهها
|
||||
label_option_auto_lang: خودکار
|
||||
label_copy_workflow_from: رونویسی گردش کار از روی
|
||||
label_permissions_report: گزارش دسترسیها
|
||||
label_watched_issues: مسئلههای نظارتشده
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user