From 7e705071a5333980c142d180f81470d7e4d96066 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 5 Apr 2014 14:38:08 +0000 Subject: [PATCH] Merged r13042 to r13044 (#3177). git-svn-id: http://svn.redmine.org/redmine/branches/2.5-stable@13049 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/admin_helper.rb | 8 ++++++ app/views/admin/plugins.html.erb | 46 +++++++++++++++++++++++++++++++- config/locales/ar.yml | 3 +++ config/locales/az.yml | 3 +++ config/locales/bg.yml | 3 +++ config/locales/bs.yml | 3 +++ config/locales/ca.yml | 3 +++ config/locales/cs.yml | 3 +++ config/locales/da.yml | 3 +++ config/locales/de.yml | 3 +++ config/locales/el.yml | 3 +++ config/locales/en-GB.yml | 3 +++ config/locales/en.yml | 3 +++ config/locales/es.yml | 3 +++ config/locales/et.yml | 3 +++ config/locales/eu.yml | 3 +++ config/locales/fa.yml | 3 +++ config/locales/fi.yml | 3 +++ config/locales/fr.yml | 3 +++ config/locales/gl.yml | 3 +++ config/locales/he.yml | 3 +++ config/locales/hr.yml | 3 +++ config/locales/hu.yml | 3 +++ config/locales/id.yml | 3 +++ config/locales/it.yml | 3 +++ config/locales/ja.yml | 3 +++ config/locales/ko.yml | 3 +++ config/locales/lt.yml | 3 +++ config/locales/lv.yml | 3 +++ config/locales/mk.yml | 3 +++ config/locales/mn.yml | 3 +++ config/locales/nl.yml | 3 +++ config/locales/no.yml | 3 +++ config/locales/pl.yml | 3 +++ config/locales/pt-BR.yml | 3 +++ config/locales/pt.yml | 3 +++ config/locales/ro.yml | 3 +++ config/locales/ru.yml | 3 +++ config/locales/sk.yml | 3 +++ config/locales/sl.yml | 3 +++ config/locales/sq.yml | 3 +++ config/locales/sr-YU.yml | 3 +++ config/locales/sr.yml | 3 +++ config/locales/sv.yml | 3 +++ config/locales/th.yml | 3 +++ config/locales/tr.yml | 3 +++ config/locales/uk.yml | 3 +++ config/locales/vi.yml | 3 +++ config/locales/zh-TW.yml | 3 +++ config/locales/zh.yml | 3 +++ 50 files changed, 197 insertions(+), 1 deletion(-) diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb index fa487a2f6..b5dc67982 100644 --- a/app/helpers/admin_helper.rb +++ b/app/helpers/admin_helper.rb @@ -24,4 +24,12 @@ module AdminHelper [l(:project_status_closed), '5'], [l(:project_status_archived), '9']], selected.to_s) end + + def plugin_data_for_updates(plugins) + data = {"v" => Redmine::VERSION.to_s, "p" => {}} + plugins.each do |plugin| + data["p"].merge! plugin.id => {"v" => plugin.version, "n" => plugin.name, "a" => plugin.author} + end + data + end end diff --git a/app/views/admin/plugins.html.erb b/app/views/admin/plugins.html.erb index 7cd4fe763..2fb8096d5 100644 --- a/app/views/admin/plugins.html.erb +++ b/app/views/admin/plugins.html.erb @@ -9,11 +9,55 @@ <%= content_tag('span', link_to(h(plugin.url), plugin.url), :class => 'url') unless plugin.url.blank? %> <%= plugin.author_url.blank? ? h(plugin.author) : link_to(h(plugin.author), plugin.author_url) %> - <%=h plugin.version %> + <%= plugin.version %> <%= link_to(l(:button_configure), plugin_settings_path(plugin)) if plugin.configurable? %> <% end %> +

<%= l(:label_check_for_updates) %> <% else %>

<%= l(:label_no_data) %>

<% end %> + +<%= javascript_tag do %> +$(document).ready(function(){ + $("#check-for-updates").click(function(e){ + e.preventDefault(); + $.ajax({ + dataType: "jsonp", + url: "http://www.redmine.org/plugins/check_updates", + data: <%= raw_json plugin_data_for_updates(@plugins) %>, + timeout: 3000, + beforeSend: function(){ + $('#ajax-indicator').show(); + }, + success: function(data){ + $('#ajax-indicator').hide(); + $("table.plugins td.version span").addClass("unknown"); + $.each(data, function(plugin_id, plugin_data){ + var s = $("tr#plugin-"+plugin_id+" td.version span"); + s.removeClass("icon-checked icon-warning unknown"); + if (plugin_data.url) { + if (s.parent("a").length>0) { + s.unwrap(); + } + s.addClass("found"); + s.wrap($("").attr("href", plugin_data.url).attr("target", "_blank")); + } + if (plugin_data.c == s.text()) { + s.addClass("icon-checked"); + } else if (plugin_data.c) { + s.addClass("icon-warning"); + s.attr("title", "<%= escape_javascript l(:label_latest_compatible_version) %>: "+plugin_data.c); + } + }); + $("table.plugins td.version span.unknown").addClass("icon-help").attr("title", "<%= escape_javascript l(:label_unknown_plugin) %>"); + }, + error: function(){ + $('#ajax-indicator').hide(); + alert("Unable to retrieve plugin informations from www.redmine.org"); + } + }); + }); +}); +<% end if @plugins.any? %> diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 9fe5075ef..e83e70b29 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -1112,3 +1112,6 @@ ar: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/az.yml b/config/locales/az.yml index 8931db16d..970bd0ac9 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -1209,3 +1209,6 @@ az: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/bg.yml b/config/locales/bg.yml index f127bfbd8..e301c8869 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -1106,3 +1106,6 @@ bg: description_date_from: Въведете начална дата description_date_to: Въведете крайна дата text_repository_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.
Промяна след създаването му не е възможна.' + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/bs.yml b/config/locales/bs.yml index 68225436b..952149303 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -1125,3 +1125,6 @@ bs: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 43087b53d..6f1c3e3f2 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -1114,3 +1114,6 @@ ca: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 2d13f596f..0acaae03b 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1114,3 +1114,6 @@ cs: setting_force_default_language_for_loggedin: Vynutit výchozí jazyk pro přihlášené uživatele users label_custom_field_select_type: Vybrat typ objektu, ke kterému bude přiřazeno uživatelské pole + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/da.yml b/config/locales/da.yml index 16d09b2ab..a5b19cf27 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -1129,3 +1129,6 @@ da: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/de.yml b/config/locales/de.yml index 3741b06c3..cba569e43 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1121,3 +1121,6 @@ de: warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden." label_link: Link + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/el.yml b/config/locales/el.yml index 4e0d14bd4..a57092160 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -1112,3 +1112,6 @@ el: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 495f7c01b..04ecfe1b1 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -1114,3 +1114,6 @@ en-GB: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/en.yml b/config/locales/en.yml index 39b7d8f04..fc5072cf6 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -911,6 +911,9 @@ en: label_checkboxes: checkboxes label_link_values_to: Link values to URL label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin button_login: Login button_submit: Submit diff --git a/config/locales/es.yml b/config/locales/es.yml index e350924fe..0b41e49a4 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -1145,3 +1145,6 @@ es: setting_force_default_language_for_anonymous: Forzar lenguaje por defecto a usuarios anónimos setting_force_default_language_for_loggedin: Forzar lenguaje por defecto para usuarios identificados label_custom_field_select_type: Seleccione el tipo de objeto al que unir el campo personalizado + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/et.yml b/config/locales/et.yml index 8f94315ec..12e963e0a 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -1125,3 +1125,6 @@ et: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/eu.yml b/config/locales/eu.yml index f05ce8df0..c36091f42 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -1113,3 +1113,6 @@ eu: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 12e2b0f81..687d77b4c 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -1114,3 +1114,6 @@ fa: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 2320e4228..35e7977eb 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -1133,3 +1133,6 @@ fi: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/fr.yml b/config/locales/fr.yml index bfb86f4a2..992ce725e 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -887,6 +887,9 @@ fr: label_checkboxes: cases à cocher label_link_values_to: Lier les valeurs vers l'URL label_custom_field_select_type: Selectionner le type d'objet auquel attacher le champ personnalisé + label_check_for_updates: Vérifier les mises à jour + label_latest_compatible_version: Dernière version compatible + label_unknown_plugin: Plugin inconnu button_login: Connexion button_submit: Soumettre diff --git a/config/locales/gl.yml b/config/locales/gl.yml index eadd22e28..89ff42631 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1123,3 +1123,6 @@ gl: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/he.yml b/config/locales/he.yml index 9506e805b..eda59b18e 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -1117,3 +1117,6 @@ he: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 8f858673e..2483f3b40 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -1113,3 +1113,6 @@ hr: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 855400188..fdf42e286 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -1131,3 +1131,6 @@ users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/id.yml b/config/locales/id.yml index a48b49a14..a46064be8 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -1116,3 +1116,6 @@ id: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/it.yml b/config/locales/it.yml index a3354833b..e7a9eb0ea 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1111,3 +1111,6 @@ it: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/ja.yml b/config/locales/ja.yml index eb363bb3f..0d16a8727 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -1136,3 +1136,6 @@ ja: setting_force_default_language_for_anonymous: 匿名ユーザーに既定の言語を強制 setting_force_default_language_for_loggedin: ログインユーザーに既定の言語を強制 label_custom_field_select_type: カスタムフィールドを追加するオブジェクトを選択してください + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/ko.yml b/config/locales/ko.yml index af5adfc1b..53c84f701 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -1156,3 +1156,6 @@ ko: setting_force_default_language_for_anonymous: 익명 사용자의 기본 언어 강제 setting_force_default_language_for_loggedin: 로그인 사용자의 기본 언어 강제 label_custom_field_select_type: 사용자 정의 필드에 추가할 대상을 선택해주세요. + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/lt.yml b/config/locales/lt.yml index a683af79c..ad731b49f 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1171,3 +1171,6 @@ lt: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/lv.yml b/config/locales/lv.yml index a6882711b..cf00b755c 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -1106,3 +1106,6 @@ lv: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/mk.yml b/config/locales/mk.yml index 7e33b4218..9a517be11 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -1112,3 +1112,6 @@ mk: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/mn.yml b/config/locales/mn.yml index c3dcce2f1..35a11c224 100644 --- a/config/locales/mn.yml +++ b/config/locales/mn.yml @@ -1113,3 +1113,6 @@ mn: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 58ec166de..83181133e 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -1091,3 +1091,6 @@ nl: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/no.yml b/config/locales/no.yml index a7379774a..c13530174 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -1102,3 +1102,6 @@ users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/pl.yml b/config/locales/pl.yml index feca2bdb2..f38cb43e5 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -1132,3 +1132,6 @@ pl: setting_force_default_language_for_loggedin: Wymuś domyślny język dla zalogowanych użytkowników label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 917d466d6..cbb9deb9a 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -1131,3 +1131,6 @@ pt-BR: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 619c94abf..88aec01b4 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -1118,3 +1118,6 @@ pt: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 79e4eb907..09f11b189 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -1107,3 +1107,6 @@ ro: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/ru.yml b/config/locales/ru.yml index f182b3174..d49608079 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1218,3 +1218,6 @@ ru: setting_force_default_language_for_anonymous: Не определять язык для анонимных пользователей setting_force_default_language_for_loggedin: Не определять язык для зарегистрированных пользователей label_custom_field_select_type: Выберите тип объекта для которого будет создано настраиваемое поле + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 02f2322ad..509209d45 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -1102,3 +1102,6 @@ sk: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 72fcd79ed..18d4a44d2 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -1112,3 +1112,6 @@ sl: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 191c3825f..132867018 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -1108,3 +1108,6 @@ sq: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml index fc6d85d91..d7d6a05a5 100644 --- a/config/locales/sr-YU.yml +++ b/config/locales/sr-YU.yml @@ -1114,3 +1114,6 @@ sr-YU: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 31ca005f1..fc743137e 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -1113,3 +1113,6 @@ sr: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/sv.yml b/config/locales/sv.yml index ebcc6af1b..9f2dae972 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -1150,3 +1150,6 @@ sv: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/th.yml b/config/locales/th.yml index 53ee8f636..ef77747aa 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -1109,3 +1109,6 @@ th: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/tr.yml b/config/locales/tr.yml index bad30d5f8..a2748b57b 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -1121,3 +1121,6 @@ tr: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/uk.yml b/config/locales/uk.yml index de0a82ecc..70c6ff14a 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -1107,3 +1107,6 @@ uk: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 4d6a8ce04..c6e5b3402 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -1165,3 +1165,6 @@ vi: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 3dd8510f4..6da90c91c 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1189,3 +1189,6 @@ description_date_from: 輸入起始日期 description_date_to: 輸入結束日期 text_repository_identifier_info: '僅允許使用小寫英文字母 (a-z), 阿拉伯數字, 虛線與底線。
一旦儲存之後, 代碼便無法再次被更改。' + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 110ac878a..b8ec9548f 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -1113,3 +1113,6 @@ zh: users label_custom_field_select_type: Select the type of object to which the custom field is to be attached + label_check_for_updates: Check for updates + label_latest_compatible_version: Latest compatible version + label_unknown_plugin: Unknown plugin -- 2.39.5