From f645de43ab4257296a48cfdf85ebf3fbf88e89cc Mon Sep 17 00:00:00 2001 From: George Clark Date: Mon, 21 Dec 2015 21:43:51 -0500 Subject: [PATCH 1/4] Item13900: Redirect with ForceDefaultUrlHost enabled. The redirect was not adding the url path or action to the redirect, and resulted in a 404 message if the short URL path was other than empty. --- core/lib/Foswiki/LoginManager.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/lib/Foswiki/LoginManager.pm b/core/lib/Foswiki/LoginManager.pm index 5b5ccd2ac6..0723145a9b 100644 --- a/core/lib/Foswiki/LoginManager.pm +++ b/core/lib/Foswiki/LoginManager.pm @@ -655,7 +655,8 @@ sub redirectToLoggedOutUrl { # ForceDefaultUrlHost enabled - probably a reverse proxy. $path_info ||= ''; - $redirectUrl = $session->{urlHost} . $path_info; + my $action = $session->{request}->{action} || 'view'; + $redirectUrl = $session->getScriptUrl( '1', $action ) . $path_info; } elsif ($path_info) { $redirectUrl = $session->{request}->url() . $path_info; From e4587ee9b89955d4d532c6eaa1d0b7eac5e20250 Mon Sep 17 00:00:00 2001 From: Vadim Belman Date: Wed, 23 Dec 2015 21:52:13 +0100 Subject: [PATCH 2/4] Item13884: Translations updated using Weblate (Ukrainian) Currently translated at 100.0% (1211 of 1211 strings) --- core/locale/uk.po | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/core/locale/uk.po b/core/locale/uk.po index 84a593b498..9427746b80 100644 --- a/core/locale/uk.po +++ b/core/locale/uk.po @@ -6,15 +6,15 @@ msgstr "" "Project-Id-Version: Foswiki $ld\n" "Report-Msgid-Bugs-To: foswiki-svn@lists.sourceforge.net\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" -"PO-Revision-Date: 2015-12-09 01:17+0200\n" +"PO-Revision-Date: 2015-12-23 21:52+0200\n" "Last-Translator: Vadim Belman \n" "Language-Team: \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.1\n" "X-Poedit-Language: Ukrainian\n" "X-Poedit-Country: UKRAINE\n" @@ -204,9 +204,8 @@ msgstr "%1 перейменовано або переміщено з %2 до %3 #. ("%SYSTEMWEB%.$pluginName", "${templateName}Template") #: AutoViewTemplatePlugin/lib/Foswiki/Plugins/AutoViewTemplatePlugin.pm:97 -#, fuzzy msgid "%1: Invalid template name (%2) - Contains invalid characters." -msgstr "Ім'я теми (%1) містило недозволені символи." +msgstr "%1: некоректне ім'я шаблону (%2) – містить недозволені символи." #: PatternSkin/templates/foswiki.pattern.tmpl:16 msgid "&Cancel" @@ -1929,9 +1928,8 @@ msgid "Get a fresh version here." msgstr "Отримайте останню версію тут." #: PatternSkin/templates/view.pattern01x01.tmpl:75 -#, fuzzy msgid "Get a fresh version here." -msgstr "Отримайте останню версію тут." +msgstr "Отримайте останню версію тут." #: core/templates/attach.tmpl:3 msgid "Get help on attaching files" @@ -2347,7 +2345,7 @@ msgstr "Невірні параметри скрипту =%1=" #: core/templates/registermessages.tmpl:127 msgid "Incorrect templatetopic name provided." -msgstr "" +msgstr "Надано невірне ім'я шаблону теми." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 msgid "Indent" @@ -4410,6 +4408,11 @@ msgid "" "web. If not provided, the default topic is [[%USERSWEB%.NewUserTemplate]], " "or if that does not exist. [[%SYSTEMWEB%.NewUserTemplate]]." msgstr "" +"Надане ім'я або невірне, або названої теми не знайдено. templatetopic має " +"бути існуючим шаблоном теми нового користувача у розділі %USERSWEB%. Якщо " +"його не задано, то за замовченням використовується " +"[[%USERSWEB%.NewUserTemplate]]; або ж якщо він відсутній, то тоді " +"[[%SYSTEMWEB%.NewUserTemplate]]." #: core/data/System/UserName.txt:3 msgid "The name you log in with" @@ -4554,6 +4557,8 @@ msgid "" "This field is not normally user provided. This may be a Foswiki " "configuration error." msgstr "" +"Це поле зазвичай не надається користувачем. Можливо маємо помилку у " +"конфігурації Foswiki." #: TopicUserMappingContrib/data/System/ChangeEmailAddress.txt:14 msgid "" @@ -5774,9 +5779,8 @@ msgstr "довідка" #: core/data/Sandbox/WebHome.txt:11 #: core/data/System/FrequentlyAskedQuestions.txt:47 -#, fuzzy msgid "hide form" -msgstr "Додати форму" +msgstr "приховати форму" #: core/data/System/WikiSyntaxSummary.txt:20 msgid "hints on good style" From ea19cd464286f9fb12fcd55a1d4aae038f23ac85 Mon Sep 17 00:00:00 2001 From: George Clark Date: Wed, 23 Dec 2015 16:35:00 -0500 Subject: [PATCH 3/4] Item13884: Update source string. --- core/templates/registermessages.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/registermessages.tmpl b/core/templates/registermessages.tmpl index d0bf8c50f1..7e6c212004 100644 --- a/core/templates/registermessages.tmpl +++ b/core/templates/registermessages.tmpl @@ -124,7 +124,7 @@ %TMPL:END% %{==============================================================================}% %TMPL:DEF{"bad_templatetopic"}% ----+++ %MAKETEXT{"Incorrect templatetopic name provided."}% +---+++ %MAKETEXT{"Incorrect topic name provided for the templatetopic parameter."}% %MAKETEXT{"The name provided is either invalid, or the named topic is not found. The templatetopic must be an existing new user template topic in the %USERSWEB% web. If not provided, the default topic is [[%USERSWEB%.NewUserTemplate]], or if that does not exist. [[%SYSTEMWEB%.NewUserTemplate]]."}% %MAKETEXT{"This field is not normally user provided. This may be a Foswiki configuration error."}% From 79e1666759da062cdc42dd836bd9dfe2cf9741c0 Mon Sep 17 00:00:00 2001 From: George Clark Date: Wed, 23 Dec 2015 16:37:56 -0500 Subject: [PATCH 4/4] Item13884: xgettext run --- core/locale/Foswiki.pot | 64 +++++++++++++++++---------------- core/locale/bg.po | 66 ++++++++++++++++++---------------- core/locale/cs.po | 69 ++++++++++++++++++----------------- core/locale/da.po | 65 +++++++++++++++++---------------- core/locale/de.po | 69 ++++++++++++++++++----------------- core/locale/el.po | 66 ++++++++++++++++++---------------- core/locale/es.po | 69 ++++++++++++++++++----------------- core/locale/fi.po | 66 ++++++++++++++++++---------------- core/locale/fr.po | 65 +++++++++++++++++---------------- core/locale/it.po | 65 +++++++++++++++++---------------- core/locale/ja.po | 70 ++++++++++++++++++------------------ core/locale/ko.po | 66 ++++++++++++++++++---------------- core/locale/nl.po | 65 +++++++++++++++++---------------- core/locale/no.po | 65 +++++++++++++++++---------------- core/locale/pl.po | 70 ++++++++++++++++++------------------ core/locale/pt-br.po | 65 +++++++++++++++++---------------- core/locale/pt.po | 66 ++++++++++++++++++---------------- core/locale/ru.po | 70 ++++++++++++++++++------------------ core/locale/sv.po | 65 +++++++++++++++++---------------- core/locale/tlh.po | 65 +++++++++++++++++---------------- core/locale/tr.po | 65 +++++++++++++++++---------------- core/locale/uk.po | 80 +++++++++++++++++++++-------------------- core/locale/zh-cn.po | 66 ++++++++++++++++++---------------- core/locale/zh-tw.po | 65 +++++++++++++++++---------------- 24 files changed, 852 insertions(+), 755 deletions(-) diff --git a/core/locale/Foswiki.pot b/core/locale/Foswiki.pot index d30a8f1ef1..591cab34f1 100644 --- a/core/locale/Foswiki.pot +++ b/core/locale/Foswiki.pot @@ -1085,7 +1085,7 @@ msgstr "" msgid "Checked topics will be updated to point to the new web name." msgstr "" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "" @@ -1155,7 +1155,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "" @@ -1257,6 +1257,10 @@ msgstr "" msgid "Country:" msgstr "" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +msgid "Create New FAQ Topic" +msgstr "" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1289,10 +1293,6 @@ msgstr "" msgid "Create group" msgstr "" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1352,7 +1352,7 @@ msgstr "" msgid "Dear %1" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "" @@ -1606,6 +1606,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1721,7 +1725,7 @@ msgstr "" msgid "Find similar topics" msgstr "" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "" @@ -2190,7 +2194,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2376,7 +2380,7 @@ msgstr "" msgid "Last name:" msgstr "" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "" @@ -2655,7 +2659,7 @@ msgstr "" msgid "New web name:" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "" @@ -2701,7 +2705,7 @@ msgstr "" msgid "No permission to view %1" msgstr "" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "" @@ -2815,7 +2819,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "" @@ -2877,7 +2881,7 @@ msgstr "" msgid "Optionally enter a different topic name:" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "" @@ -3368,7 +3372,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "" @@ -3384,19 +3388,19 @@ msgstr "" msgid "Restore and exit" msgstr "" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3404,7 +3408,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3454,7 +3458,7 @@ msgstr "" msgid "Revision history of %1" msgstr "" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "" @@ -3566,7 +3570,7 @@ msgstr "" msgid "Search string" msgstr "" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "" @@ -3676,7 +3680,7 @@ msgstr "" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "" @@ -3684,7 +3688,7 @@ msgstr "" msgid "Set all" msgstr "" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "" @@ -3713,7 +3717,7 @@ msgstr "" msgid "Shrink edit box" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "" @@ -4820,7 +4824,7 @@ msgstr "" msgid "View difference" msgstr "" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "" @@ -4832,7 +4836,7 @@ msgstr "" msgid "View later" msgstr "" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "" @@ -4840,11 +4844,11 @@ msgstr "" msgid "View raw text without formatting" msgstr "" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "" @@ -5403,7 +5407,7 @@ msgstr "" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "" diff --git a/core/locale/bg.po b/core/locale/bg.po index 34a884ac46..8078c61d21 100644 --- a/core/locale/bg.po +++ b/core/locale/bg.po @@ -1210,7 +1210,7 @@ msgid "Checked topics will be updated to point to the new web name." msgstr "" "Отметнатите страници ще бъдат обновени да сочат към новото име на раздела." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Подстраници в раздел %1" @@ -1284,7 +1284,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Сравняване на версиите" @@ -1395,6 +1395,11 @@ msgstr "Неуспешен запис на %1." msgid "Country:" msgstr "Страна:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Нова Страница" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1431,11 +1436,6 @@ msgstr "Нова Страница" msgid "Create group" msgstr "Нова Страница" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Нова Страница" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1497,7 +1497,7 @@ msgstr "Дата" msgid "Dear %1" msgstr "Уважаеми %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Дебъг" @@ -1783,6 +1783,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Уголеми кутията за редактиране" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1907,7 +1911,7 @@ msgstr "Файлът бе качен с различно име" msgid "Find similar topics" msgstr "Търсене на подобни страници" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Намери страници, които имат връзки към %1 ..." @@ -2413,7 +2417,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Грешни параметри към скрипта =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2615,7 +2619,7 @@ msgstr "Последна промяна" msgid "Last name:" msgstr "Фамилия:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(версия %1)" @@ -2911,7 +2915,7 @@ msgstr "Регистрацията на нови потребители е из msgid "New web name:" msgstr "Име на новия раздел:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "По-нова версия:" @@ -2962,7 +2966,7 @@ msgstr "" msgid "No permission to view %1" msgstr "нямате права да видите %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Не съществува предна версия." @@ -3081,7 +3085,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "По-стара версия" @@ -3149,7 +3153,7 @@ msgstr "Може да въведете различно име на страни msgid "Optionally enter a different topic name:" msgstr "Може да въведете различно име на страница:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Действие" @@ -3689,7 +3693,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Възстановяване" @@ -3708,19 +3712,19 @@ msgstr "" msgid "Restore and exit" msgstr "Възстанови страница:" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Възстанови страница:" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Възстанови страница до версия:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Възстанови страницата до тази версия:" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3728,7 +3732,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3783,7 +3787,7 @@ msgstr "Версия" msgid "Revision history of %1" msgstr "История на версиите на %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Версии" @@ -3904,7 +3908,7 @@ msgstr "(резултати от търсенето)" msgid "Search string" msgstr "Низ за търсене" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Търсене в Раздел %1 за страници, които сочат насам" @@ -4025,7 +4029,7 @@ msgstr "Регистрация на нови потребители не се п msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Последователно" @@ -4033,7 +4037,7 @@ msgstr "Последователно" msgid "Set all" msgstr "Отбелязване на всички" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Задай нов родител" @@ -4064,7 +4068,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Смали кутийката за редакция" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "" @@ -5207,7 +5211,7 @@ msgstr "Изглед на цялата история на страницата" msgid "View difference" msgstr "Виж разлики" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Виж разлики" @@ -5222,7 +5226,7 @@ msgstr "Виж шаблоните" msgid "View later" msgstr "Виж шаблоните" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Виж предната версия на страницата" @@ -5230,12 +5234,12 @@ msgstr "Виж предната версия на страницата" msgid "View raw text without formatting" msgstr "Преглед в суров текстов формат" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Виж версия" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Виж версия" @@ -5821,7 +5825,7 @@ msgstr "съвети за добър стил" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "в суров текстов формат" diff --git a/core/locale/cs.po b/core/locale/cs.po index 14d027035e..bc073a53c4 100755 --- a/core/locale/cs.po +++ b/core/locale/cs.po @@ -1155,7 +1155,7 @@ msgstr "Označené články budou aktualizovány do bodu do nového umístění msgid "Checked topics will be updated to point to the new web name." msgstr "Označené články budou aktualizovány do bodu do nového jména webu." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Podřízené články v %1 webu" @@ -1228,7 +1228,7 @@ msgstr "Vytváření komentářů není možné, pokud nejste přihlášeni" msgid "Commenting is disabled while running from the command line" msgstr "Vytváření komentářů není možné, pokud jste v režimu příkazové řádky" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Porovnejte revize" @@ -1339,6 +1339,11 @@ msgstr "Nemohl uložit %1." msgid "Country:" msgstr "Země:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Vytvoř nový článek FAQ (často kladené dotazy)" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1371,10 +1376,6 @@ msgstr "Vytvoř účet" msgid "Create group" msgstr "Vytvoř skupinu" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Vytvoř nový článek FAQ (často kladené dotazy)" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1434,7 +1435,7 @@ msgstr "Datum" msgid "Dear %1" msgstr "Vážený %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Ladění" @@ -1700,6 +1701,11 @@ msgstr "Emotikon" msgid "Enlarge edit box" msgstr "Zvětšit editovací prostor" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "žádný (odstraňte nadřízený článek)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Vložte nové uživatelské jméno a heslo pro změnu identity" @@ -1819,7 +1825,7 @@ msgstr "Soubor byl nahrán pod odlišným jménem" msgid "Find similar topics" msgstr "Najít obdobné články" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Najít články které odkazují na %1 ..." @@ -2335,7 +2341,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Chybné parametry pro =%1= skript" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2532,7 +2538,7 @@ msgstr "Naposledy změněno" msgid "Last name:" msgstr "Poslední název:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Poslední revize: %1" @@ -2816,7 +2822,7 @@ msgstr "Registrace nových uživatelů je na tomto webu vypnutá." msgid "New web name:" msgstr "Nové jméno webu:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Novější revize:" @@ -2867,7 +2873,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Nemáte právo pro prohlížení %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Neexistují žádné předchozí revize článku." @@ -2986,7 +2992,7 @@ msgstr "OK, toto jsem stále já!" msgid "Ok" msgstr "Ok" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Starší revize:" @@ -3050,7 +3056,7 @@ msgstr "Volitelně vložte odlišné jméno přílohy:" msgid "Optionally enter a different topic name:" msgstr "Volitelně vložte odlišné jméno článku:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Vlastnosti" @@ -3563,7 +3569,7 @@ msgid "Resetting and setting password is not available." msgstr "Resetování a nastavení hesla není k dispozici." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Obnov" @@ -3579,19 +3585,19 @@ msgstr "Obnov a pokračuj v editaci" msgid "Restore and exit" msgstr "Obnov a skonči" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Obnov článek" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Obnov revizi článku dle:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Obnov tuto revizi článku" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3602,7 +3608,7 @@ msgstr "" "každá revize bude zaznamenána v historii článku, můžete vždy znovu zobrazit " "verzi kterou nahrazujete. Uvědomte si, že přílohy zůstanou beze změn." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "Obnova není možná, protože tento článek je ve své první revizi." @@ -3654,7 +3660,7 @@ msgstr "Revize" msgid "Revision history of %1" msgstr "Historie verzí pro %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Verze" @@ -3767,7 +3773,7 @@ msgstr "Výsledky hledání" msgid "Search string" msgstr "Hledej řetězec" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Hledej články ve webu %1 které sem odkazují" @@ -3881,7 +3887,7 @@ msgstr "Samo registrace není tímto webem podporována." msgid "Send mail" msgstr "Zašli mail" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sekvenčně" @@ -3889,7 +3895,7 @@ msgstr "Sekvenčně" msgid "Set all" msgstr "Nastav vše" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Nastavit nový nadřízený článek" @@ -3919,7 +3925,7 @@ msgstr "Zobrazuji revize %1 - %2 (mimo %3)" msgid "Shrink edit box" msgstr "Zmenšit editovací oblast" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Vedle sebe" @@ -5130,7 +5136,7 @@ msgstr "Zobraz celou historii článku" msgid "View difference" msgstr "Zobraz rozdíly" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Zobraz rozdíly" @@ -5142,7 +5148,7 @@ msgstr "Zobraz dřívější" msgid "View later" msgstr "Zobraz pozdější" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Prohlédni předchozí revize článku" @@ -5150,11 +5156,11 @@ msgstr "Prohlédni předchozí revize článku" msgid "View raw text without formatting" msgstr "Prohlédni nepracovaný text (bez formátování)" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Zobraz revize" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Zobraz revize:" @@ -5780,7 +5786,7 @@ msgstr "nápověda k dobrému stylu" msgid "ignore case" msgstr "ignoruj" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "v neupraveném textovém formátu" @@ -6701,9 +6707,6 @@ msgstr "proč jste byl dotazován na potvrzení" #~ msgid "You can review your changes in your personal TWiki topic %1" #~ msgstr "Můžete zkontrolovat Vaše změny ve Vašem osobním TWiki článku %1" -#~ msgid "none (remove topic parent)" -#~ msgstr "žádný (odstraňte nadřízený článek)" - #~ msgid "to edit the topic anyway." #~ msgstr "přesto editovat článek" diff --git a/core/locale/da.po b/core/locale/da.po index 55229483a4..63dfca0915 100644 --- a/core/locale/da.po +++ b/core/locale/da.po @@ -1175,7 +1175,7 @@ msgstr "" msgid "Checked topics will be updated to point to the new web name." msgstr "Markederede sider vil blive opdateret til at pege på det nye webnavn." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Datter-sider i %1-webbet" @@ -1249,7 +1249,7 @@ msgstr "Ikke muligt at kommentere før man er logget ind" msgid "Commenting is disabled while running from the command line" msgstr "Kommentarer er slået fra kørende fra kommandolinjen" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Sammenlign versioner" @@ -1361,6 +1361,11 @@ msgstr "%1 kunne ikke gemmes." msgid "Country:" msgstr "Land:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Opret ny FAQ side" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1393,10 +1398,6 @@ msgstr "Opret konto" msgid "Create group" msgstr "Opret gruppe" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Opret ny FAQ side" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1456,7 +1457,7 @@ msgstr "Dato" msgid "Dear %1" msgstr "Kære %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1728,6 +1729,10 @@ msgstr "Humørikon" msgid "Enlarge edit box" msgstr "Forstør edit-boks" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Angiv et nyt brugernavn og password for at skifte identitet" @@ -1848,7 +1853,7 @@ msgstr "Filen er blevet uploadet under et ændret navn" msgid "Find similar topics" msgstr "Find lignende sider" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Find sider der refererer til %1 ..." @@ -2369,7 +2374,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Ukorrekte parametre til scriptet =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2566,7 +2571,7 @@ msgstr "Sidst opdateret" msgid "Last name:" msgstr "Efternavn:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Seneste revision: %1" @@ -2847,7 +2852,7 @@ msgstr "Brugerregistrering er deaktiveret på denne wiki." msgid "New web name:" msgstr "Nyt web-navn:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Nyere version:" @@ -2893,7 +2898,7 @@ msgstr "Der er ingen nuværende registreringer for aktiveringskoden %1." msgid "No permission to view %1" msgstr "Ingen rettigheder til at se %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Ingen tidligere version eksisterer." @@ -3013,7 +3018,7 @@ msgstr "OK, dette er stadig mig!" msgid "Ok" msgstr "Ok" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Tidligere version:" @@ -3079,7 +3084,7 @@ msgstr "Benyt eventuelt et andet navn til vedhæftet fil (valgfrit):" msgid "Optionally enter a different topic name:" msgstr "Benyt eventuelt et andet sidenavn (valgfrit):" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Valgmuligheder" @@ -3594,7 +3599,7 @@ msgid "Resetting and setting password is not available." msgstr "Nulstilling og ændringer af adgangskode er ikke muligt." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Gendan" @@ -3610,19 +3615,19 @@ msgstr "Gendan og fortsæt med at redigere" msgid "Restore and exit" msgstr "Gendan og afslut" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Gendan side" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Gendan siden til versionen:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Gendan siden til denne version" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3633,7 +3638,7 @@ msgstr "" "kan altid gense den version som du erstatter, for hver version bliver gemt i " "historikken. Bemærk at vedhæftede filer forbliver uændrede." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "Gendannelse er ikke mulig fordi denne side er version 1." @@ -3683,7 +3688,7 @@ msgstr "Version" msgid "Revision history of %1" msgstr "Versionshistorik for %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versioner" @@ -3797,7 +3802,7 @@ msgstr "Søgeresultat" msgid "Search string" msgstr "Søgestreng" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Søg i %1-webbet efter sider der linker til denne side." @@ -3913,7 +3918,7 @@ msgstr "Selv registrering er ikke supporteret på denne Wiki." msgid "Send mail" msgstr "Send e-mail" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sekventiel" @@ -3921,7 +3926,7 @@ msgstr "Sekventiel" msgid "Set all" msgstr "Vælg alle" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Vælg ny forælder" @@ -3950,7 +3955,7 @@ msgstr "Viser versionerne %1 - %2 (ud af %3)" msgid "Shrink edit box" msgstr "Formindsk edit boks" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Side ved side" @@ -5177,7 +5182,7 @@ msgstr "Vis komplet historik for siden" msgid "View difference" msgstr "Vis forskel" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Vis forskelle" @@ -5189,7 +5194,7 @@ msgstr "Vis tidligere" msgid "View later" msgstr "Vis senere" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Vis en tidligere version af siden" @@ -5197,11 +5202,11 @@ msgstr "Vis en tidligere version af siden" msgid "View raw text without formatting" msgstr "Vis rå kildetekst uden formatering" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Vis version" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Vis version:" @@ -5835,7 +5840,7 @@ msgstr "hints til god stil i e-samarbejdet" msgid "ignore case" msgstr "ignorer sag" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "i kildetekst-format" diff --git a/core/locale/de.po b/core/locale/de.po index 5afcd7d740..ef03bf11c9 100644 --- a/core/locale/de.po +++ b/core/locale/de.po @@ -1190,7 +1190,7 @@ msgstr "" "Ausgewählte Topics werden aktualisiert, damit sie auf den neuen Webnamen " "zeigen." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Untertopics im %1-Web" @@ -1262,7 +1262,7 @@ msgstr "Kommentieren ist nur für angemeldete Benutzer möglich" msgid "Commenting is disabled while running from the command line" msgstr "Kommentieren von der Kommandozeile ist nicht möglich" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Vergleiche Revisionen" @@ -1374,6 +1374,11 @@ msgstr "%1 konnte nicht gespeichert werden." msgid "Country:" msgstr "Land:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Neues FAQ-Topic anlegen" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1406,10 +1411,6 @@ msgstr "Benutzerkonto anlegen" msgid "Create group" msgstr "Gruppe anlegen" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Neues FAQ-Topic anlegen" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1469,7 +1470,7 @@ msgstr "Datum" msgid "Dear %1" msgstr "Hallo %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Fehler beheben" @@ -1746,6 +1747,11 @@ msgstr "Emoticon" msgid "Enlarge edit box" msgstr "Bearbeitungsfenster vergrößern" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "keiner (Ober-Topic Verknüpfung entfernen)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1874,7 +1880,7 @@ msgstr "Die Datei wurde mit einem anderen Namen hochgeladen" msgid "Find similar topics" msgstr "Ähnliche Topics finden" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Unter-Topics von %1 finden..." @@ -2400,7 +2406,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Inkorrekte Parameter für das =%1= Skript" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2597,7 +2603,7 @@ msgstr "Zeit der letzten Änderung" msgid "Last name:" msgstr "Nachname:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Neueste Revision: %1" @@ -2880,7 +2886,7 @@ msgstr "Die Registrierung für neue Benutzer ist abgeschaltet." msgid "New web name:" msgstr "Neuer Web-Name:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Neuere Revision:" @@ -2927,7 +2933,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Keine Erlaubnis, %1 zu sehen" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Es existiert keine vorherige Revision." @@ -3047,7 +3053,7 @@ msgstr "OK, das bin immer noch ich!" msgid "Ok" msgstr "OK" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Ältere Revisionen:" @@ -3113,7 +3119,7 @@ msgstr "Optional einen anderen Namen für den Anhang eingeben:" msgid "Optionally enter a different topic name:" msgstr "Optional geben Sie einen anderen Topic-Namen ein:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Optionen" @@ -3635,7 +3641,7 @@ msgstr "" "statt." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Wiederherstellen" @@ -3651,19 +3657,19 @@ msgstr "Wiederherstellen und Bearbeiten fortsetzen" msgid "Restore and exit" msgstr "Wiederherstellen und verlassen" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Topic wiederherstellen" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Vorherige Topic-Revision wiederherstellen:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Vorherige Topic-Revision wiederherstellen" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3676,7 +3682,7 @@ msgstr "" "einsehen. Bitte beachten Sie, dass Anhänge von dieser Aktion nicht abgedeckt " "sind." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" "Wiederherstellen ist deaktiviert, weil dieses Topic in der ersten Revision " @@ -3732,7 +3738,7 @@ msgstr "Revision" msgid "Revision history of %1" msgstr "Revisions-Historie von %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Revisionen" @@ -3846,7 +3852,7 @@ msgstr "Suchergebnis" msgid "Search string" msgstr "Suchausdruck" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Das %1 Web nach Unter-Topics von diesem Topic durchsuchen." @@ -3961,7 +3967,7 @@ msgstr "Sie können sich auf dieser Website nicht selbst registrieren." msgid "Send mail" msgstr "Mail schicken" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sequenziell" @@ -3969,7 +3975,7 @@ msgstr "Sequenziell" msgid "Set all" msgstr "Alles auswählen" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Neues Ober-Topic zuordnen" @@ -3998,7 +4004,7 @@ msgstr "Zeige Revisionen %1 – %2 (von %3)" msgid "Shrink edit box" msgstr "Editier-Box verkleinern" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Seite an Seite" @@ -5245,7 +5251,7 @@ msgstr "Komplette Topic-Historie ansehen" msgid "View difference" msgstr "Unterschied anzeigen" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Unterschiede anzeigen" @@ -5257,7 +5263,7 @@ msgstr "Frühere anzeigen" msgid "View later" msgstr "Spätere anzeigen" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Vorherige Topic-Revision ansehen" @@ -5265,11 +5271,11 @@ msgstr "Vorherige Topic-Revision ansehen" msgid "View raw text without formatting" msgstr "Quelltext ohne Formatierung ansehen" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Revision ansehen" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Revision ansehen:" @@ -5919,7 +5925,7 @@ msgstr "Tips für guten Stil" msgid "ignore case" msgstr "Groß-/Kleinschreibung ignorieren" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "im Quelltextformat" @@ -6925,9 +6931,6 @@ msgstr "warum Sie zur Bestätigung aufgefordert werden" #~ msgstr "" #~ "Sie können Ihre Änderungen in Ihrem persönlichen TWiki topic %1 ansehen" -#~ msgid "none (remove topic parent)" -#~ msgstr "keiner (Ober-Topic Verknüpfung entfernen)" - #~ msgid "to edit the topic anyway." #~ msgstr "um das Topic trotzdem zu bearbeiten." diff --git a/core/locale/el.po b/core/locale/el.po index 2d376e84eb..b994e534f5 100644 --- a/core/locale/el.po +++ b/core/locale/el.po @@ -1217,7 +1217,7 @@ msgstr "" "Τα επιλεγμένα θέματα θα ενημερωθούν να παραπέμπουν στη νέα ονομασία του " "ιστού." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Child topics in %1 web" @@ -1291,7 +1291,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Συγκρίνετε τις αναθεωρήσεις" @@ -1402,6 +1402,11 @@ msgstr "Δεν είναι δυνατή η αποθήκευση του αρχεί msgid "Country:" msgstr "Χώρα:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Δημιουργήστε το θέμα" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1437,11 +1442,6 @@ msgstr "" msgid "Create group" msgstr "Δημιουργία νέου θέματος" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Δημιουργήστε το θέμα" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1504,7 +1504,7 @@ msgstr "Ημερομηνία" msgid "Dear %1" msgstr "Αγαπητέ %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1790,6 +1790,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Μεγένθυση πλαίσιου επεξεργασίας" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1915,7 +1919,7 @@ msgstr "Το αρχείο έχει μεταφορτωθεί με διαφορε msgid "Find similar topics" msgstr "Βρείτε παρόμοια θέματα" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Βρείτε θέματα με συνδέσμους προς το %1 ..." @@ -2443,7 +2447,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Incorrect parameters to the =%1= script" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2650,7 +2654,7 @@ msgstr "Ώρα τελευταίας τροποποίησης" msgid "Last name:" msgstr "Επώνυμο:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(αναθεώρηση %1)" @@ -2948,7 +2952,7 @@ msgstr "Η εγγραφή Νέου Χρήστη έχει απενεργοποι msgid "New web name:" msgstr "Νέο όνομα ιστού:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Νεότερη αναθεώρηση:" @@ -2998,7 +3002,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Δεν δικαιώματα προβολής %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Δεν υπάρχει προηγούμενη αναθεώρηση." @@ -3118,7 +3122,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Παλαιότερη αναθεώρηση:" @@ -3189,7 +3193,7 @@ msgstr "Προαιρετικά εισάγετε μια διαφορετική ο msgid "Optionally enter a different topic name:" msgstr "Προαιρετικά εισάγετε μια διαφορετική ονομασία του θέματος:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Ενέργεια" @@ -3736,7 +3740,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Επαναφορά" @@ -3754,19 +3758,19 @@ msgstr "" msgid "Restore and exit" msgstr "Επαναφορά θέματος" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Επαναφορά θέματος" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Επαναφορά θέματος σε αναθεώρηση:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Επαναφορά θέματος σε αυτή την αναθεώρηση:" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3774,7 +3778,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3829,7 +3833,7 @@ msgstr "Αναθεώρηση" msgid "Revision history of %1" msgstr "Ιστορικό έκδοσης του %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Αναθεωρήσεις" @@ -3952,7 +3956,7 @@ msgstr "(αναζήτηση αποτελέσματος)" msgid "Search string" msgstr "Κείμενο αναζήτησης" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Αναζήτηση στον ιστό %1για θέματα που παραπέμπουν εδώ" @@ -4069,7 +4073,7 @@ msgstr "Η εγγραφή Νέου Χρήστη δεν υποστηρίζετα msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Διαδοχική" @@ -4077,7 +4081,7 @@ msgstr "Διαδοχική" msgid "Set all" msgstr "Ορισμός όλων" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Ορισμός νέου γονέα" @@ -4108,7 +4112,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Μείωσε το πλαίσιο επεξεργασίας" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Δίπλα-δίπλα" @@ -5331,7 +5335,7 @@ msgstr "Προβολή συνολικού ιστορικού του θέματο msgid "View difference" msgstr "Προβολή διαφορών" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Προβολή διαφορών" @@ -5346,7 +5350,7 @@ msgstr "Προβολή προτύπων" msgid "View later" msgstr "Προβολή προτύπων" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Επισκόπηση προηγούμενης αναθεώρησης θέματος" @@ -5354,12 +5358,12 @@ msgstr "Επισκόπηση προηγούμενης αναθεώρησης θ msgid "View raw text without formatting" msgstr "Προβολή αδιαμόρφωτου κείμενου χωρίς μορφοποίηση" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Προβολή αναθεώρησης:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Προβολή αναθεώρησης:" @@ -5986,7 +5990,7 @@ msgstr "συμβουλές για καλό στυλ" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "σε αδιαμόρφωτη μορφή κειμένου" diff --git a/core/locale/es.po b/core/locale/es.po index d9b1812b61..80b4c8be16 100644 --- a/core/locale/es.po +++ b/core/locale/es.po @@ -1196,7 +1196,7 @@ msgid "Checked topics will be updated to point to the new web name." msgstr "" "Temas marcados serán actualizados para señalar al nuevo nombre de la web." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Temas hijo en la web %1" @@ -1274,7 +1274,7 @@ msgstr "" "Los comentarios están deshabilitados mientras esté iniciado desde la línea " "de comando" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Comparar revisiones" @@ -1388,6 +1388,11 @@ msgstr "No se pudo guardar %1." msgid "Country:" msgstr "País" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Crear tema nuevo de preguntas frecuentes" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1422,10 +1427,6 @@ msgstr "Crear grupo" msgid "Create group" msgstr "Crear grupo" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Crear tema nuevo de preguntas frecuentes" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1487,7 +1488,7 @@ msgstr "Fecha" msgid "Dear %1" msgstr "Estimad@ %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Depurar" @@ -1775,6 +1776,11 @@ msgstr "" msgid "Enlarge edit box" msgstr "Ampliar caja de edición" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "ninguno (remover página pariente)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1904,7 +1910,7 @@ msgstr "El archivo ha sido cargado con un nombre diferente" msgid "Find similar topics" msgstr "Encontrar temas similares" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Buscar temas que enlazan a %1..." @@ -2421,7 +2427,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Parámetros incorrectos para el script =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2630,7 +2636,7 @@ msgstr "Modificada por última vez" msgid "Last name:" msgstr "Apellido" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(revisión %1)" @@ -2928,7 +2934,7 @@ msgstr "Registro de usuarios nuevos deshabilitado" msgid "New web name:" msgstr "Nuevo nombre de web:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Revisión más nueva:" @@ -2980,7 +2986,7 @@ msgstr "" msgid "No permission to view %1" msgstr "No hay acceso para ver %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "No existe revisión anterior." @@ -3099,7 +3105,7 @@ msgstr "OK, todavía soy yo!" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Revisión anterior:" @@ -3167,7 +3173,7 @@ msgstr "Introducir opcionalmente un nombre diferente de tema:" msgid "Optionally enter a different topic name:" msgstr "Introducir opcionalmente un nombre diferente de tema:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Opciones" @@ -3718,7 +3724,7 @@ msgid "Resetting and setting password is not available." msgstr "Reiniciar una contraseña no es manejado por Foswiki" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Restaurar..." @@ -3737,19 +3743,19 @@ msgstr "" msgid "Restore and exit" msgstr "Salvado en:" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Restaurar tema" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Restaurar tema a revisión:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Restaurar tema a esta revisión" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3757,7 +3763,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 #, fuzzy msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3813,7 +3819,7 @@ msgstr "Revisión" msgid "Revision history of %1" msgstr "Historial de revisión de %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Revisiones" @@ -3933,7 +3939,7 @@ msgstr "Resultado de búsqueda" msgid "Search string" msgstr "Cadena de búsqueda" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Buscar la web %1 por temas que enlacen aquí" @@ -4054,7 +4060,7 @@ msgstr "Registro de usuarios nuevos no disponible" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Secuencial" @@ -4062,7 +4068,7 @@ msgstr "Secuencial" msgid "Set all" msgstr "Seleccionar todos" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Definir nuevo tema padre" @@ -4094,7 +4100,7 @@ msgstr "Revisiones %1 - %2 (de %3)" msgid "Shrink edit box" msgstr "Empequeñecer campo de edición" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Lado a lado" @@ -5332,7 +5338,7 @@ msgstr "Ver historial total del tema" msgid "View difference" msgstr "Ver diferencias" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Ver diferencias" @@ -5346,7 +5352,7 @@ msgstr "anterior" msgid "View later" msgstr "Ver plantillas" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Ver revisión anterior del tema" @@ -5354,11 +5360,11 @@ msgstr "Ver revisión anterior del tema" msgid "View raw text without formatting" msgstr "Ver código sin formato" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Ver revisión" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Ver revisión:" @@ -6004,7 +6010,7 @@ msgstr "recomendaciones de buen estilo" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "en formato de código" @@ -7009,9 +7015,6 @@ msgstr "" #~ msgid "You can review your changes in your personal TWiki topic %1" #~ msgstr "Puede revisar sus cambios en su página personal TWiki %1" -#~ msgid "none (remove topic parent)" -#~ msgstr "ninguno (remover página pariente)" - #~ msgid "to edit the topic anyway." #~ msgstr "Para editar la página de todas maneras" diff --git a/core/locale/fi.po b/core/locale/fi.po index 253a6ff1d9..ceb9c888f4 100644 --- a/core/locale/fi.po +++ b/core/locale/fi.po @@ -1201,7 +1201,7 @@ msgstr "Valitut aiheet päivitetään viittaamaan uuteen aiheen sijaintiin." msgid "Checked topics will be updated to point to the new web name." msgstr "Valitut aiheet päivitetään viittaamaan uuteen verkkonimeen." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Aliaiheet %1 verkossa" @@ -1274,7 +1274,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Vertaa versioita" @@ -1386,6 +1386,11 @@ msgstr "Ei voitu tallentaa %1." msgid "Country:" msgstr "Maa:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Luo uusi aihe" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1422,11 +1427,6 @@ msgstr "Luo uusi aihe" msgid "Create group" msgstr "Luo uusi aihe" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Luo uusi aihe" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1488,7 +1488,7 @@ msgstr "Päiväys" msgid "Dear %1" msgstr "Hyvä %1," -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1774,6 +1774,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Suurenna muokkauslaatikkoa" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Syötä uusi käyttäjätunnus ja salasana muuttaaksesi identiteettisi" @@ -1900,7 +1904,7 @@ msgstr "Tiedosto on lähetetty eri nimellä" msgid "Find similar topics" msgstr "Etsi samankaltaisia aiheita" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Etsi aiheita, jotka linkittävät %1:een ..." @@ -2415,7 +2419,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Väärät parametrit =%1= skriptiin" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2622,7 +2626,7 @@ msgstr "Muokattu viimeksi" msgid "Last name:" msgstr "Sukunimi:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(versio %1)" @@ -2919,7 +2923,7 @@ msgstr "Uuden käyttäjän rekisteröinti poistettu käytöstä" msgid "New web name:" msgstr "Uusi verkon nimi:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Uudempi versio:" @@ -2970,7 +2974,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Ei oikeuksia näyttää %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Aikaisempaa versiota ei ole olemassa." @@ -3091,7 +3095,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Vanhempi versio:" @@ -3160,7 +3164,7 @@ msgstr "Vaihtoehtoisesti syötä erilainen aiheen nimi:" msgid "Optionally enter a different topic name:" msgstr "Vaihtoehtoisesti syötä erilainen aiheen nimi:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Toiminto" @@ -3702,7 +3706,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Palauta" @@ -3721,19 +3725,19 @@ msgstr "" msgid "Restore and exit" msgstr "Palauta aihe" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Palauta aihe" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Palauta aihe versioon:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Palauta aihe tähän versioon" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3741,7 +3745,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3796,7 +3800,7 @@ msgstr "Versio" msgid "Revision history of %1" msgstr "%1:n versiohistoria" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versiot" @@ -3919,7 +3923,7 @@ msgstr "(haun tulos)" msgid "Search string" msgstr "Etsi merkkijonoa" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Etsi verkosta %1 aiheita, jotka linkittävät tänne" @@ -4038,7 +4042,7 @@ msgstr "Uuden käyttäjän rekisteröinti ei tuettu" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Peräkkäinen" @@ -4046,7 +4050,7 @@ msgstr "Peräkkäinen" msgid "Set all" msgstr "Aseta kaikki" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Aseta uusi yläartikkeli" @@ -4077,7 +4081,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Pienennä muokkauslaatikkoa" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Vierekkäin" @@ -5292,7 +5296,7 @@ msgstr "Näytä aiheen täysi historia" msgid "View difference" msgstr "Näytä eroavaisuudet" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Näytä eroavaisuudet" @@ -5307,7 +5311,7 @@ msgstr "Näytä sivupohjat" msgid "View later" msgstr "Näytä sivupohjat" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Näytä aiheen edellinen versio" @@ -5315,12 +5319,12 @@ msgstr "Näytä aiheen edellinen versio" msgid "View raw text without formatting" msgstr "Näytä raaka teksti ilman muotoiluja" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Näytä versio:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Näytä versio:" @@ -5946,7 +5950,7 @@ msgstr "vinkkejä hyvään tyyliin" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "raa'assa tekstimuodossa" diff --git a/core/locale/fr.po b/core/locale/fr.po index a6c695b48d..da4d05ba21 100644 --- a/core/locale/fr.po +++ b/core/locale/fr.po @@ -1181,7 +1181,7 @@ msgstr "" "Les liens pointant vers ce web seront mis à jours, sur les pages " "sélectionnées." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Pages filles dans le web %1" @@ -1254,7 +1254,7 @@ msgid "Commenting is disabled while running from the command line" msgstr "" "Les commentaires sont désactivés lors d'une exécution en ligne de commande" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Comparer les versions" @@ -1367,6 +1367,11 @@ msgstr "Impossible d'enregistrer %1." msgid "Country:" msgstr "Pays :" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Créer une nouvelle page de FAQ" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1399,10 +1404,6 @@ msgstr "Créer un compte" msgid "Create group" msgstr "Créer le groupe" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Créer une nouvelle page de FAQ" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1462,7 +1463,7 @@ msgstr "Date" msgid "Dear %1" msgstr "Cher·e %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1734,6 +1735,10 @@ msgstr "Émoticône" msgid "Enlarge edit box" msgstr "Agrandir le cadre d&'édition" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1857,7 +1862,7 @@ msgstr "Ce fichier a été envoyé, sous un nom différent" msgid "Find similar topics" msgstr "Trouver des pages similaires" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Chercher les pages qui sont des filles de %1..." @@ -2393,7 +2398,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Paramètres erronés pour le script =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2594,7 +2599,7 @@ msgstr "Dernière modification" msgid "Last name:" msgstr "Nom de famille :" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Dernière révision : %1" @@ -2875,7 +2880,7 @@ msgstr "L'inscription de nouveaux utilisateurs est désactivée sur ce site." msgid "New web name:" msgstr "Nouveau nom du web :" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Nouvelle version :" @@ -2923,7 +2928,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Vous n'avez pas la permission d'accéder à %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Aucune version précédente n'existe." @@ -3043,7 +3048,7 @@ msgstr "OK, c'est toujours moi !" msgid "Ok" msgstr "Ok" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Ancienne version :" @@ -3109,7 +3114,7 @@ msgstr "Éventuellement, entrez un autre nom de fichier attaché :" msgid "Optionally enter a different topic name:" msgstr "Éventuellement, entrez un autre nom de page :" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Options" @@ -3625,7 +3630,7 @@ msgstr "" "disponibles." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Restaurer" @@ -3641,19 +3646,19 @@ msgstr "Restaurer et continuer de modifier" msgid "Restore and exit" msgstr "Restaurer et quitter" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Restaurer la page" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Restaurer la page à la version :" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Restaurer cette version de la page" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3665,7 +3670,7 @@ msgstr "" "dans l'historique de la page, vous pourrez toujours reconsulter la version " "que vous remplacez. Notez que les fichiers attachés demeureront inchangés." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "La restauration est désactivée car cette page est en version 1." @@ -3719,7 +3724,7 @@ msgstr "Version" msgid "Revision history of %1" msgstr "Historique des versions de %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versions" @@ -3835,7 +3840,7 @@ msgstr "Résultats de la recherche" msgid "Search string" msgstr "Texte recherché" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Chercher, dans le Web %1, les pages filles de cette page." @@ -3956,7 +3961,7 @@ msgstr "L'auto-inscription n'est pas supportée par ce site." msgid "Send mail" msgstr "Envoyer e-mail" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "À la suite" @@ -3964,7 +3969,7 @@ msgstr "À la suite" msgid "Set all" msgstr "Tout sélectionner" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Choisissez la nouvelle page mère" @@ -3993,7 +3998,7 @@ msgstr "Liste des versions %1 - %2 (sur un total de %3)" msgid "Shrink edit box" msgstr "Rétrécir le cadre d'édition" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Côte à côte" @@ -5257,7 +5262,7 @@ msgstr "Afficher l'intégralité de l'historique" msgid "View difference" msgstr "Afficher les différences" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Afficher différences" @@ -5269,7 +5274,7 @@ msgstr "Voir précédentes" msgid "View later" msgstr "Voir suivantes" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Afficher la version précédente de la page" @@ -5277,11 +5282,11 @@ msgstr "Afficher la version précédente de la page" msgid "View raw text without formatting" msgstr "Afficher le code source, sans formatage" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Afficher version" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Afficher la version :" @@ -5932,7 +5937,7 @@ msgstr "astuces sur des pratiques courantes de collaboration" msgid "ignore case" msgstr "ignorer casse" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "afficher le code source" diff --git a/core/locale/it.po b/core/locale/it.po index b2f5ca1e22..7e1a5aad1e 100644 --- a/core/locale/it.po +++ b/core/locale/it.po @@ -1180,7 +1180,7 @@ msgid "Checked topics will be updated to point to the new web name." msgstr "" "Le pagine marcate saranno aggiornate per puntare al nuovo nome del Web." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Pagine figlie nel Web %1" @@ -1252,7 +1252,7 @@ msgstr "Commenti disabilitati se non autenticati" msgid "Commenting is disabled while running from the command line" msgstr "Commenti disabilitati se esecuzione da riga di comando" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Confronta le versioni" @@ -1365,6 +1365,11 @@ msgstr "Non posso salvare %1." msgid "Country:" msgstr "Nazione:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Crea una nuova pagina di FAQ" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1397,10 +1402,6 @@ msgstr "Crea un nuovo accesso" msgid "Create group" msgstr "Crea un gruppo di utenti" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Crea una nuova pagina di FAQ" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1460,7 +1461,7 @@ msgstr "Data" msgid "Dear %1" msgstr "Caro %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1731,6 +1732,10 @@ msgstr "Faccina" msgid "Enlarge edit box" msgstr "Allarga la finestra di modifica" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Per cambiare identità, inserisci nuovi username e password" @@ -1852,7 +1857,7 @@ msgstr "Il file è stato caricato con un nome differente" msgid "Find similar topics" msgstr "Trova pagine simili" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Trova le pagine figlia a %1 ..." @@ -2372,7 +2377,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Parametri non corretti nello script =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2571,7 +2576,7 @@ msgstr "Data dell'ultima modifica" msgid "Last name:" msgstr "Cognome:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Ultima versione: %1" @@ -2854,7 +2859,7 @@ msgstr "La registrazione di nuovi utenti in questo sito è disabilitata." msgid "New web name:" msgstr "Nuovo nome Web:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Ultima versione:" @@ -2902,7 +2907,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Non hai il permesso di visualizzare %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Non esistono versioni precedenti." @@ -3021,7 +3026,7 @@ msgstr "OK, ancora io!" msgid "Ok" msgstr "Ok" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Versione meno recente:" @@ -3087,7 +3092,7 @@ msgstr "Opzionalmente inserisci un nome diverso per l'allegato:" msgid "Optionally enter a different topic name:" msgstr "Opzionalmente inserisci un nome diverso per la pagina:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Opzioni" @@ -3600,7 +3605,7 @@ msgid "Resetting and setting password is not available." msgstr "Ripristino o impostazione password non disponibile." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Ripristina" @@ -3616,19 +3621,19 @@ msgstr "Ripristina e continua la modifica" msgid "Restore and exit" msgstr "Ripristina ed esci" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Ripristina la pagina" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Ripristina la pagina alla versione:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Ripristina la pagina a questa versione" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3640,7 +3645,7 @@ msgstr "" "la versione che si sta sostituendo. Gli allegati resteranno comunque " "invariati." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" "Il ripristino è disabilitato in quanto la versione della pagina è pari a 1." @@ -3693,7 +3698,7 @@ msgstr "Versione" msgid "Revision history of %1" msgstr "Storia delle versioni di %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versioni" @@ -3808,7 +3813,7 @@ msgstr "Risultato della ricerca" msgid "Search string" msgstr "Testo della ricerca" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Cerca nelle pagine del Web %1 collegate a questa pagina." @@ -3922,7 +3927,7 @@ msgstr "L'auto-registrazione non è consentita in questo sito." msgid "Send mail" msgstr "Invia e-mail" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sequenziali" @@ -3930,7 +3935,7 @@ msgstr "Sequenziali" msgid "Set all" msgstr "Definisci tutto" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Definisci un nuovo padre" @@ -3959,7 +3964,7 @@ msgstr "Mostra versioni %1 - %2 (di %3)" msgid "Shrink edit box" msgstr "Riduci la dimensione dell'area di modifica" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Affiancate" @@ -5199,7 +5204,7 @@ msgstr "Mostra tutte le versioni della pagina" msgid "View difference" msgstr "Mostra la differenza" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Mostra le differenze" @@ -5211,7 +5216,7 @@ msgstr "Mostra prima" msgid "View later" msgstr "Mostra dopo" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Mostra la versione precedente della pagina" @@ -5219,11 +5224,11 @@ msgstr "Mostra la versione precedente della pagina" msgid "View raw text without formatting" msgstr "Visualizza il testo \"raw\" senza formattazione" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Mostra la versione" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Mostra la versione:" @@ -5862,7 +5867,7 @@ msgstr "suggerimenti sullo stile" msgid "ignore case" msgstr "ignora le maiuscole" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "in formato testo \"raw\"" diff --git a/core/locale/ja.po b/core/locale/ja.po index 0dfbb7f8f2..64e2a632fb 100644 --- a/core/locale/ja.po +++ b/core/locale/ja.po @@ -1208,7 +1208,7 @@ msgstr "チェックされたトピックが更新され、新しいトピック msgid "Checked topics will be updated to point to the new web name." msgstr "チェックされたトピックが更新され、新しいウェブ名へリンクされます" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "%1ウェブの中の子トピック" @@ -1281,7 +1281,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "バージョン比較" @@ -1392,6 +1392,11 @@ msgstr "%1を保存できませんでした" msgid "Country:" msgstr "国:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "新トピックを作成します" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1428,11 +1433,6 @@ msgstr "新トピックを作成します" msgid "Create group" msgstr "新トピックを作成します" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "新トピックを作成します" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1494,7 +1494,7 @@ msgstr "日付" msgid "Dear %1" msgstr "尊敬する %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "デバッグ" @@ -1772,6 +1772,11 @@ msgstr "" msgid "Enlarge edit box" msgstr "編集枠を拡大します" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "無(親トピックを削除します)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "新しいユーザー名とパスワードを入力してアイデンティティを変更します" @@ -1898,7 +1903,7 @@ msgstr "ファイルは既に他の名称でアップロードされました" msgid "Find similar topics" msgstr "" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "%1へリンクするトピックを検索します..." @@ -2410,7 +2415,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "=%1=スクリプトの中の不正なパラメーター" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2619,7 +2624,7 @@ msgstr "最新更新時間" msgid "Last name:" msgstr "名:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(改訂 %1)" @@ -2919,7 +2924,7 @@ msgstr "" msgid "New web name:" msgstr "新ウェブ名:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "新バージョン:" @@ -2970,7 +2975,7 @@ msgstr "" msgid "No permission to view %1" msgstr " %1を見る権限がありません" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "前のトピックバージョンが存在しません" @@ -3090,7 +3095,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "古いバージョン" @@ -3157,7 +3162,7 @@ msgstr "又は違うトピック名をご入力ください:" msgid "Optionally enter a different topic name:" msgstr "又は違うトピック名をご入力ください:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "変更" @@ -3699,7 +3704,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "回復" @@ -3718,19 +3723,19 @@ msgstr "" msgid "Restore and exit" msgstr "保存して閉じます" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "トピックを回復します" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "トピックを改訂版に回復します" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "トピックをこの改訂版に回復します" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3738,7 +3743,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3793,7 +3798,7 @@ msgstr "改訂" msgid "Revision history of %1" msgstr "%1 のバージョンヒストリー" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "改訂" @@ -3916,7 +3921,7 @@ msgstr "(検索結果)" msgid "Search string" msgstr "検索する文字列" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "%1ウェブからここへリンクされるトピックを検索します" @@ -4036,7 +4041,7 @@ msgstr "" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "シーケンシャル" @@ -4044,7 +4049,7 @@ msgstr "シーケンシャル" msgid "Set all" msgstr "全て設定" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "新しい親トピックを設定します" @@ -4075,7 +4080,7 @@ msgstr "" msgid "Shrink edit box" msgstr "編集枠を縮小します" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "並列" @@ -5271,7 +5276,7 @@ msgstr "トータルトピックヒストリーを確認します" msgid "View difference" msgstr "差異を確認します" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "差異を確認します" @@ -5286,7 +5291,7 @@ msgstr "テンプレートを確認します" msgid "View later" msgstr "テンプレートを確認します" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "前のトピックバージョンを確認します" @@ -5294,12 +5299,12 @@ msgstr "前のトピックバージョンを確認します" msgid "View raw text without formatting" msgstr "ファーマットされていない元のテキストを確認します" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "改訂を確認します" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "改訂を確認します" @@ -5911,7 +5916,7 @@ msgstr "スタイルに関するメッセージ" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "元のテキストフォーマット" @@ -6846,9 +6851,6 @@ msgstr "" #~ msgid "You can review your changes in your personal TWiki topic %1" #~ msgstr "個人Twikiトピック %1 から変更を確認することができます" -#~ msgid "none (remove topic parent)" -#~ msgstr "無(親トピックを削除します)" - #~ msgid "to edit the topic anyway." #~ msgstr "このトピックを編集しなければなりません" diff --git a/core/locale/ko.po b/core/locale/ko.po index 36e9e7737b..1d759eeee3 100644 --- a/core/locale/ko.po +++ b/core/locale/ko.po @@ -1144,7 +1144,7 @@ msgstr "" msgid "Checked topics will be updated to point to the new web name." msgstr "" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "" @@ -1215,7 +1215,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "리비전 비교하기" @@ -1321,6 +1321,11 @@ msgstr "" msgid "Country:" msgstr "국가:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "새 토픽 생성하기" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1357,11 +1362,6 @@ msgstr "새 토픽 생성하기" msgid "Create group" msgstr "새 토픽 생성하기" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "새 토픽 생성하기" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1424,7 +1424,7 @@ msgstr "날짜" msgid "Dear %1" msgstr "안녕하세요, %1 님 " -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "디버그" @@ -1690,6 +1690,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "편집 상자 확장" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "정보 변경을 위해 새로운 사용자 이름과 비밀번호를 입력하세요" @@ -1811,7 +1815,7 @@ msgstr "" msgid "Find similar topics" msgstr "" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "" @@ -2292,7 +2296,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2493,7 +2497,7 @@ msgstr "" msgid "Last name:" msgstr "성(Last Name):" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "리비전 보기:" @@ -2788,7 +2792,7 @@ msgstr "" msgid "New web name:" msgstr "새로운 Web 이름" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "새로운 리비전:" @@ -2838,7 +2842,7 @@ msgstr "" msgid "No permission to view %1" msgstr "%1 의 보기 권한이 없습니다" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "이전 리비전이 존재하지 않습니다." @@ -2958,7 +2962,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "이전 리비전:" @@ -3022,7 +3026,7 @@ msgstr "" msgid "Optionally enter a different topic name:" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "" @@ -3547,7 +3551,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "복구" @@ -3566,19 +3570,19 @@ msgstr "" msgid "Restore and exit" msgstr "토픽 복구하기" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "토픽 복구하기" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "다음 리비전으로 토픽 복구하기:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "다음 리비전으로 토픽 복구" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3586,7 +3590,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3640,7 +3644,7 @@ msgstr "리비전" msgid "Revision history of %1" msgstr "%1 의 버전 내역" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "리비전" @@ -3761,7 +3765,7 @@ msgstr "문자 검색" msgid "Search string" msgstr "문자 검색" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "" @@ -3876,7 +3880,7 @@ msgstr "" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "" @@ -3884,7 +3888,7 @@ msgstr "" msgid "Set all" msgstr "" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "" @@ -3915,7 +3919,7 @@ msgstr "" msgid "Shrink edit box" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "" @@ -5059,7 +5063,7 @@ msgstr "모든 토픽 내역 보기" msgid "View difference" msgstr "차이점 보기" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "차이점 보기" @@ -5074,7 +5078,7 @@ msgstr "템플릿 보기" msgid "View later" msgstr "템플릿 보기" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "이전 토픽 리비전 보기" @@ -5082,12 +5086,12 @@ msgstr "이전 토픽 리비전 보기" msgid "View raw text without formatting" msgstr "포맷팅 없이 위키 원문 보기" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "리비전 보기:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "리비전 보기:" @@ -5663,7 +5667,7 @@ msgstr "좋은 스타일을 위한 힌트" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "원문 보기 포맷으로" diff --git a/core/locale/nl.po b/core/locale/nl.po index d689728638..39648f15fe 100644 --- a/core/locale/nl.po +++ b/core/locale/nl.po @@ -1172,7 +1172,7 @@ msgstr "" "Aangevinkte pagina's zullen worden geupdate zodat ze verwijzen naar de " "nieuwe webnaam." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Onderliggende pagina's in %1 web" @@ -1244,7 +1244,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Vergelijk revisies" @@ -1354,6 +1354,11 @@ msgstr "Kon %1 niet bewaren." msgid "Country:" msgstr "Land:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Nieuwe FAQ-pagina aanmaken" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1386,10 +1391,6 @@ msgstr "Nieuwe account aanmaken" msgid "Create group" msgstr "Groep aanmaken" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Nieuwe FAQ-pagina aanmaken" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1449,7 +1450,7 @@ msgstr "Datum" msgid "Dear %1" msgstr "Beste %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debuggen" @@ -1720,6 +1721,10 @@ msgstr "Emoticon" msgid "Enlarge edit box" msgstr "Tekstvak vergroten" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1842,7 +1847,7 @@ msgstr "Het bestand is geupload met een andere naam" msgid "Find similar topics" msgstr "Vind soortgelijke pagina's" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Onderliggende pagina&'s van %1 vinden..." @@ -2362,7 +2367,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Onjuiste parameters aan het =%1= script" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2561,7 +2566,7 @@ msgstr "Laatst bewerkt op" msgid "Last name:" msgstr "Achternaam:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Laatste revisie: %1" @@ -2842,7 +2847,7 @@ msgstr "Registratie van nieuwe gebruikers is gedeactiveerd." msgid "New web name:" msgstr "Nieuwe webnaam:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Nieuwere revisie:" @@ -2888,7 +2893,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Geen permissie om %1 te bekijken" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Er is geen vorige paginarevisie beschikbaar." @@ -3007,7 +3012,7 @@ msgstr "OK, ik ben het nog steeds!" msgid "Ok" msgstr "OK" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Oudere revisie:" @@ -3074,7 +3079,7 @@ msgstr "Voer eventueel een andere naam voor de bijlage in:" msgid "Optionally enter a different topic name:" msgstr "Voer eventueel een andere paginanaam in:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Opties" @@ -3583,7 +3588,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Herstellen" @@ -3599,19 +3604,19 @@ msgstr "" msgid "Restore and exit" msgstr "" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Pagina herstellen" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Zet pagina terug naar revisie:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Zet pagina terug naar deze revisie" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3623,7 +3628,7 @@ msgstr "" "paginageschiedenis kun je altijd terug naar de huidige (te vervangen) " "revisie. Let op dat bijlagen ongewijzigd blijven." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "Herstellen is uitgeschakeld omdat de pagina bij revisie 1 is." @@ -3675,7 +3680,7 @@ msgstr "Revisie" msgid "Revision history of %1" msgstr "Versiegeschiedenis van %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Revisies" @@ -3789,7 +3794,7 @@ msgstr "Zoekresultaten" msgid "Search string" msgstr "Zoektekst" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Zoek in het %1 Web naar onderliggende pagina's van deze pagina." @@ -3901,7 +3906,7 @@ msgstr "Zelf-registratie wordt niet ondersteund." msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sequentieel" @@ -3909,7 +3914,7 @@ msgstr "Sequentieel" msgid "Set all" msgstr "Vink aan" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Stel bovenliggende pagina in" @@ -3938,7 +3943,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Tekstvak verkleinen" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Naast elkaar" @@ -5138,7 +5143,7 @@ msgstr "Bekijk gehele paginageschiedenis" msgid "View difference" msgstr "Bekijk verschillen" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Bekijk verschillen" @@ -5150,7 +5155,7 @@ msgstr "Bekijk eerdere" msgid "View later" msgstr "Bekijk latere" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Bekijk vorige paginarevisie" @@ -5158,11 +5163,11 @@ msgstr "Bekijk vorige paginarevisie" msgid "View raw text without formatting" msgstr "Bekijk brontekst zonder opmaak" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Bekijk revisie" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Bekijk revisie:" @@ -5783,7 +5788,7 @@ msgstr "tips voor een goede stijl" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "brontekst zonder opmaak" diff --git a/core/locale/no.po b/core/locale/no.po index e9a86cf0e6..00d6150400 100644 --- a/core/locale/no.po +++ b/core/locale/no.po @@ -1154,7 +1154,7 @@ msgstr "" msgid "Checked topics will be updated to point to the new web name." msgstr "Valgte sider vil bli oppdatert til å referere til det nye web navnet." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Undersider i %1 web'en" @@ -1228,7 +1228,7 @@ msgstr "Kommentering er deaktivert uten innlogging" msgid "Commenting is disabled while running from the command line" msgstr "Kommentering er deaktivert ved kjøring fra kommandolinjen" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Sammenlign versjoner" @@ -1340,6 +1340,11 @@ msgstr "Kunne ikke lagre %1." msgid "Country:" msgstr "Land:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Lag ny FAQ side" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1372,10 +1377,6 @@ msgstr "Opprett konto" msgid "Create group" msgstr "Lag gruppe" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Lag ny FAQ side" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1435,7 +1436,7 @@ msgstr "Dato" msgid "Dear %1" msgstr "Kjære %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Debug" @@ -1704,6 +1705,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Forstørr redigeringsboks" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Skriv inn nytt brukernavn og passord for å endre indentitet" @@ -1822,7 +1827,7 @@ msgstr "Filen har blitt lastet opp med annet navn" msgid "Find similar topics" msgstr "Finn liknende sider" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Finn sider som linker til %1..." @@ -2322,7 +2327,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Feil parametere til =%1= skriptet" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2519,7 +2524,7 @@ msgstr "Siste endringstidspunkt" msgid "Last name:" msgstr "Etternavn:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Siste versjon: %1" @@ -2803,7 +2808,7 @@ msgstr "Registrering av nye brukere er ikke aktivert på dette nettstedet." msgid "New web name:" msgstr "Nytt webnavn:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Nyere versjon:" @@ -2853,7 +2858,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Ingen tilgang til å lese %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Ingen tidligere versjon finnes." @@ -2972,7 +2977,7 @@ msgstr "OK, dette er fortsatt meg!" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Eldre versjon:" @@ -3038,7 +3043,7 @@ msgstr "Eventuelt skriv et annet navn på vedlegg:" msgid "Optionally enter a different topic name:" msgstr "Eventuelt skriv et annet sidenavn:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Valg" @@ -3569,7 +3574,7 @@ msgid "Resetting and setting password is not available." msgstr "Tilbakestilling av passord håndteres ikke av Foswiki" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Gjenopprett..." @@ -3588,19 +3593,19 @@ msgstr "" msgid "Restore and exit" msgstr "Gjenopprett side" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Gjenopprett side" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Gjenopprett side til versjon:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Gjenopprett side til denne versjonen" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3608,7 +3613,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 #, fuzzy msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3664,7 +3669,7 @@ msgstr "Versjon" msgid "Revision history of %1" msgstr "Versjonhistorikk for %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versjoner" @@ -3784,7 +3789,7 @@ msgstr "Søkeresultat" msgid "Search string" msgstr "Søkestreng" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Søk i %1 web etter sider som linker hit" @@ -3904,7 +3909,7 @@ msgstr "Registrering av ny bruker er ikke supportert" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sekvensiell" @@ -3912,7 +3917,7 @@ msgstr "Sekvensiell" msgid "Set all" msgstr "Velg alle" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Sett ny forelder" @@ -3944,7 +3949,7 @@ msgstr "Versjoner %1 - %2 (av %3)" msgid "Shrink edit box" msgstr "Krymp redigeringsboks" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Side ved side" @@ -5166,7 +5171,7 @@ msgstr "Vis all side historikk" msgid "View difference" msgstr "Vis differanse" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Vis differanser" @@ -5180,7 +5185,7 @@ msgstr "tidligere" msgid "View later" msgstr "Vis maler" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Vis forrige versjon av siden" @@ -5188,11 +5193,11 @@ msgstr "Vis forrige versjon av siden" msgid "View raw text without formatting" msgstr "Vis rå tekst uten formatering" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Vis versjon" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Vis versjon:" @@ -5818,7 +5823,7 @@ msgstr "tips om god stil" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "i rå tekst format" diff --git a/core/locale/pl.po b/core/locale/pl.po index 779ecc6a49..3db3182fa7 100644 --- a/core/locale/pl.po +++ b/core/locale/pl.po @@ -1208,7 +1208,7 @@ msgstr "" "Skróty na zaznaczonych stronach zostaną zaktualizowane tak, aby wskazywały " "na nową nazwę działu." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Strony podrzędne w dziale %1" @@ -1282,7 +1282,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Porównaj zmiany" @@ -1394,6 +1394,11 @@ msgstr "Nie można zapisać strony: %1." msgid "Country:" msgstr "Państwo:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Utwórz nową stronę" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1430,11 +1435,6 @@ msgstr "Utwórz nową stronę" msgid "Create group" msgstr "Utwórz nową stronę" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Utwórz nową stronę" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1498,7 +1498,7 @@ msgstr "Data" msgid "Dear %1" msgstr "Drogi %1!" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Wyświetl błędy" @@ -1775,6 +1775,11 @@ msgstr "" msgid "Enlarge edit box" msgstr "Powiększ okienko edycyjne" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "brak (usuń stronę nadrzędną)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Podaj nową nazwę konta użytkownika i hasło:" @@ -1902,7 +1907,7 @@ msgstr "Plik załadowano i zapisano pod inną nazwą" msgid "Find similar topics" msgstr "Znajdź podobne tematy" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Wyszukaj strony z odwołaniami do %1 ..." @@ -2420,7 +2425,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Błędne parametry wywołania skryptu: =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2633,7 +2638,7 @@ msgstr "czasu ostatniej edycji" msgid "Last name:" msgstr "Nazwisko:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(wersja %1)" @@ -2933,7 +2938,7 @@ msgstr "Rejestracja Nowych Użytkowników wyłączona" msgid "New web name:" msgstr "Nowa nazwa działu:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Zmiana:" @@ -2984,7 +2989,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Brak uprawnień do wyświetlenia %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Poprzednia wersja nie istnieje." @@ -3105,7 +3110,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Wersja:" @@ -3175,7 +3180,7 @@ msgstr "Można podać nazwę innej strony:" msgid "Optionally enter a different topic name:" msgstr "Można podać nazwę innej strony:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Akcja" @@ -3716,7 +3721,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Odtwórz" @@ -3736,19 +3741,19 @@ msgstr "Zapisz i edytuj" msgid "Restore and exit" msgstr "Zapisz i wyjdź" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Przywróć temat" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Przywróć temat do wersji:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Przywróć temat do tej wersji" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3756,7 +3761,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3811,7 +3816,7 @@ msgstr "Zmiana" msgid "Revision history of %1" msgstr "Historia zmian załącznika %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Wersje" @@ -3932,7 +3937,7 @@ msgstr "(wyniki wyszukiwania)" msgid "Search string" msgstr "wyszukanego tekstu" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Wyszukaj strony w dziale %1 z odwołaniami do bieżącej strony" @@ -4055,7 +4060,7 @@ msgstr "Rejestracja Nowego Użytkownika nie obsługiwana" msgid "Send mail" msgstr "Błąd przy wysyłaniu poczty" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sekwencyjnie" @@ -4063,7 +4068,7 @@ msgstr "Sekwencyjnie" msgid "Set all" msgstr "Ustaw wszystko" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Ustaw nowy temat nadrzędny" @@ -4094,7 +4099,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Zmniejsz okienko edycyjne" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Obok siebie" @@ -5322,7 +5327,7 @@ msgstr "Historia strony" msgid "View difference" msgstr "Wyświetl różnice" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Wyświetl różnice" @@ -5337,7 +5342,7 @@ msgstr "Wyświetl formularze" msgid "View later" msgstr "Wyświetl formularze" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Wyświetl kolejną zmianę na stronie" @@ -5345,12 +5350,12 @@ msgstr "Wyświetl kolejną zmianę na stronie" msgid "View raw text without formatting" msgstr "Wyświetl kod źródłowy strony" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Wyśwield wersję:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Wyśwield wersję:" @@ -5969,7 +5974,7 @@ msgstr "w dobrym stylu" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "w postaci kodu źródłowego" @@ -6951,9 +6956,6 @@ msgstr "dlaczego jesteś pytany o potwierdzenie" #~ msgid "You can review your changes in your personal Foswiki topic %1" #~ msgstr "Zmiany można przejrzeć na stronie domowej: %1" -#~ msgid "none (remove topic parent)" -#~ msgstr "brak (usuń stronę nadrzędną)" - #~ msgid "to edit the topic anyway." #~ msgstr "aby mimo wszystko przeprowadzić edycję strony." diff --git a/core/locale/pt-br.po b/core/locale/pt-br.po index 76bd302921..7ca5f1d5d9 100644 --- a/core/locale/pt-br.po +++ b/core/locale/pt-br.po @@ -1178,7 +1178,7 @@ msgid "Checked topics will be updated to point to the new web name." msgstr "" "Os tópicos sinalizados serão atualizados para que apontem o novo nome da web." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Tópicos filhos na web %1" @@ -1250,7 +1250,7 @@ msgstr "Comentários são desativados enquanto não estiver logado" msgid "Commenting is disabled while running from the command line" msgstr "Comentários são desativados enquanto linhas de comandos são executadas" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Comparar versões" @@ -1362,6 +1362,11 @@ msgstr "Não foi possível salvar %1." msgid "Country:" msgstr "País:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Criar novo tópico de FAQ" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1394,10 +1399,6 @@ msgstr "Criar conta" msgid "Create group" msgstr "Criar grupo" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Criar novo tópico de FAQ" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1457,7 +1458,7 @@ msgstr "Data" msgid "Dear %1" msgstr "Caro(a) %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Depurar" @@ -1725,6 +1726,10 @@ msgstr "Emoticon" msgid "Enlarge edit box" msgstr "Caixa de edição ampliada" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Digite um novo nome de usuário e senha para trocar de identidade" @@ -1845,7 +1850,7 @@ msgstr "O arquivo foi enviado com um nome diferente" msgid "Find similar topics" msgstr "Procurar tópicos similares" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Procurar por tópicos que referenciem %1 ..." @@ -2368,7 +2373,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Parâmetros incorretos para o script =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2566,7 +2571,7 @@ msgstr "Hora da última alteração" msgid "Last name:" msgstr "Último Nome:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Última versão: %1" @@ -2859,7 +2864,7 @@ msgstr "Registro de novo usuário desativado" msgid "New web name:" msgstr "Novo nome da web:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Versão mais recente:" @@ -2911,7 +2916,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Sem permissão para visualizar %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Não existe versão anterior." @@ -3033,7 +3038,7 @@ msgstr "OK, isso é comigo!" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Versão mais antiga:" @@ -3100,7 +3105,7 @@ msgstr "Opcionalmente digite um nome diferente para o anexo:" msgid "Optionally enter a different topic name:" msgstr "Opcionalmente digite um nome diferente de tópico:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Opções" @@ -3645,7 +3650,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Restaurar" @@ -3664,19 +3669,19 @@ msgstr "" msgid "Restore and exit" msgstr "Restaurar tópico" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Restaurar tópico" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Restaurar tópico para a versão:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Restaurar tópico para esta versão" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3684,7 +3689,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3739,7 +3744,7 @@ msgstr "Versão" msgid "Revision history of %1" msgstr "Versão do histórico de %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versões" @@ -3862,7 +3867,7 @@ msgstr "(resultados da busca)" msgid "Search string" msgstr "Sequência de texto da busca" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Procurar na web %1 por tópicos que façam link pra cá" @@ -3981,7 +3986,7 @@ msgstr "Registro de novo usuário não é suportado" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sequencial" @@ -3989,7 +3994,7 @@ msgstr "Sequencial" msgid "Set all" msgstr "Selecionar todos" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Marcar novo tópico pai" @@ -4020,7 +4025,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Caixa de edição reduzida" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Lado a lado" @@ -5243,7 +5248,7 @@ msgstr "Ver histórico completo do tópico" msgid "View difference" msgstr "Ver diferença" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Ver diferença" @@ -5258,7 +5263,7 @@ msgstr "Ver modelos" msgid "View later" msgstr "Ver modelos" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Ver versão anterior do tópico" @@ -5266,12 +5271,12 @@ msgstr "Ver versão anterior do tópico" msgid "View raw text without formatting" msgstr "Ver em modo texto, sem formatação" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Ver versão:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Ver versão:" @@ -5907,7 +5912,7 @@ msgstr "dicas para um bom estilo" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "em modo texto, sem formatação" diff --git a/core/locale/pt.po b/core/locale/pt.po index 0891a2af41..f207ad96d6 100644 --- a/core/locale/pt.po +++ b/core/locale/pt.po @@ -1226,7 +1226,7 @@ msgid "Checked topics will be updated to point to the new web name." msgstr "" "Os tópicos sinalizados serão atualizados para que apontem o novo nome da web." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Tópicos filhos na web %1" @@ -1300,7 +1300,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Comparar versões" @@ -1412,6 +1412,11 @@ msgstr "Não foi possível salvar %1." msgid "Country:" msgstr "País:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Criar Novo Tópico" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1448,11 +1453,6 @@ msgstr "Criar Novo Tópico" msgid "Create group" msgstr "Criar Novo Tópico" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Criar Novo Tópico" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1515,7 +1515,7 @@ msgstr "Data" msgid "Dear %1" msgstr "Caro(a) %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Depurar" @@ -1799,6 +1799,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Caixa de edição ampliada" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Digite um novo nome de usuário e senha para trocar de identidade" @@ -1927,7 +1931,7 @@ msgstr "O arquivo foi enviado com um nome diferente." msgid "Find similar topics" msgstr "Procurar tópicos similares" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Procurar por tópicos que referenciem %1 ..." @@ -2447,7 +2451,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Parâmetros incorretos para o script =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2655,7 +2659,7 @@ msgstr "Hora da última alteração" msgid "Last name:" msgstr "Último Nome:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(versão %1)" @@ -2952,7 +2956,7 @@ msgstr "Registro de novo usuário desativado" msgid "New web name:" msgstr "Novo nome da web:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Versão mais recente:" @@ -3003,7 +3007,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Sem permissão para visualizar %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Não existe versão anterior." @@ -3124,7 +3128,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Versão mais antiga:" @@ -3194,7 +3198,7 @@ msgstr "Opcionalmente digite um nome diferente de tópico:" msgid "Optionally enter a different topic name:" msgstr "Opcionalmente digite um nome diferente de tópico:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Ação" @@ -3742,7 +3746,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Restaurar" @@ -3761,19 +3765,19 @@ msgstr "" msgid "Restore and exit" msgstr "Restaurar tópico" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Restaurar tópico" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Restaurar tópico para a versão: " -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Restaurar tópico para esta versão" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3781,7 +3785,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3836,7 +3840,7 @@ msgstr "Versão" msgid "Revision history of %1" msgstr "Versão do histórico de %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versões" @@ -3959,7 +3963,7 @@ msgstr "(resultados da busca)" msgid "Search string" msgstr "Sequência de texto da busca" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Procurar na web %1 por tópicos que façam link pra cá" @@ -4079,7 +4083,7 @@ msgstr "Registro de novo usuário não é suportado" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sequencial" @@ -4087,7 +4091,7 @@ msgstr "Sequencial" msgid "Set all" msgstr "Selecionar todos" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Marcar novo tópico pai" @@ -4118,7 +4122,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Caixa de edição reduzida" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Lado a lado" @@ -5340,7 +5344,7 @@ msgstr "Ver histórico completo do tópico" msgid "View difference" msgstr "Ver diferença" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Ver diferença" @@ -5355,7 +5359,7 @@ msgstr "Ver modelos" msgid "View later" msgstr "Ver modelos" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Ver versão anterior do tópico" @@ -5363,12 +5367,12 @@ msgstr "Ver versão anterior do tópico" msgid "View raw text without formatting" msgstr "Ver em modo texto, sem formatação" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Ver versão:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Ver versão:" @@ -6001,7 +6005,7 @@ msgstr "dicas para um bom estilo" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "em modo texto, sem formatação" diff --git a/core/locale/ru.po b/core/locale/ru.po index be2d239b61..57a4f73f00 100644 --- a/core/locale/ru.po +++ b/core/locale/ru.po @@ -1227,7 +1227,7 @@ msgstr "" "Текст отмеченных тем будет обновлен таким образом, чтобы указывать на новое " "имя раздела." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Дочерние темы в разделе %1" @@ -1301,7 +1301,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Сравнить редакции" @@ -1413,6 +1413,11 @@ msgstr "Не удалось сохранить %1." msgid "Country:" msgstr "Страна:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Создать новую тему" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1449,11 +1454,6 @@ msgstr "Создать новую тему" msgid "Create group" msgstr "Создать новую тему" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "Создать новую тему" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1515,7 +1515,7 @@ msgstr "Дата" msgid "Dear %1" msgstr "Дорогой(ая) %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Отладка" @@ -1800,6 +1800,11 @@ msgstr "" msgid "Enlarge edit box" msgstr "Расширить область редактирования" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "none (убрать родительскую тему)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Введите новые имя пользователя и пароль для изменения идентификации" @@ -1929,7 +1934,7 @@ msgstr "Файл был загружен с другим именем" msgid "Find similar topics" msgstr "Найти похожие темы" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Найти темы, ссылающиеся на %1 ..." @@ -2449,7 +2454,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Неверные параметры в скрипте =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2659,7 +2664,7 @@ msgstr "Времени последнего изменения" msgid "Last name:" msgstr "Фамилия:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(редакция %1)" @@ -2956,7 +2961,7 @@ msgstr "Регистрация новых пользователей отклю msgid "New web name:" msgstr "Новое имя раздела" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Младшая редакция:" @@ -3007,7 +3012,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Нет прав для просмотра %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Предыдущих редакций нет." @@ -3128,7 +3133,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Старшая редакция:" @@ -3196,7 +3201,7 @@ msgstr "Введите иное название темы, если это не msgid "Optionally enter a different topic name:" msgstr "Введите иное название темы, если это необходимо:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Действие" @@ -3758,7 +3763,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Восстановить" @@ -3777,19 +3782,19 @@ msgstr "" msgid "Restore and exit" msgstr "Восстановить тему" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Восстановить тему" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Восстановить тему до редакции:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Восстановить тему до этой редакции" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3797,7 +3802,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3852,7 +3857,7 @@ msgstr "Редакция" msgid "Revision history of %1" msgstr "История версий %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Редакции" @@ -3974,7 +3979,7 @@ msgstr "(результаты поиска)" msgid "Search string" msgstr "Строку поиска" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Искать в разделе %1 темы, ссылающиеся на эту" @@ -4096,7 +4101,7 @@ msgstr "Регистрация новых пользователей не под msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Последовательно" @@ -4104,7 +4109,7 @@ msgstr "Последовательно" msgid "Set all" msgstr "Установить все" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Установить нового родителя" @@ -4135,7 +4140,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Сжать окно редактирования" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "В две колонки" @@ -5358,7 +5363,7 @@ msgstr "Просмотреть полную историю изменений с msgid "View difference" msgstr "Посмотреть различия" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Посмотреть различия" @@ -5373,7 +5378,7 @@ msgstr "Просмотреть шаблоны" msgid "View later" msgstr "Просмотреть шаблоны" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Просмотреть предыдущую редакцию" @@ -5381,12 +5386,12 @@ msgstr "Просмотреть предыдущую редакцию" msgid "View raw text without formatting" msgstr "Просмотреть исходный текст, без форматирования" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Просмотр редакции:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Просмотр редакции:" @@ -6017,7 +6022,7 @@ msgstr "подсказки по хорошему стилю" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "в виде исходного текста" @@ -6991,9 +6996,6 @@ msgstr "" #~ msgstr "" #~ "Вы можете просмотреть изменения Вашей персональной TWiki страницы %1" -#~ msgid "none (remove topic parent)" -#~ msgstr "none (убрать родительскую тему)" - #~ msgid "to edit the topic anyway." #~ msgstr "непременно редактировать эту тему." diff --git a/core/locale/sv.po b/core/locale/sv.po index 947a99c721..2d1e796bbb 100644 --- a/core/locale/sv.po +++ b/core/locale/sv.po @@ -1199,7 +1199,7 @@ msgstr "Markerade sidor uppdateras för att peka på den nya platsen för sidan. msgid "Checked topics will be updated to point to the new web name." msgstr "Markerade sidor uppdateras för att peka på det nya avdelningsnamnet" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Dottersidor i avdelningen %1" @@ -1276,7 +1276,7 @@ msgstr "Kommentarer avstängda för oinloggade" msgid "Commenting is disabled while running from the command line" msgstr "Kommentarer avstängda när systemet körs från kommandoraden" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Jämför versioner" @@ -1390,6 +1390,11 @@ msgstr "Kunde inte spara %1." msgid "Country:" msgstr "Land" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Skapa ny FAQ-sida" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1424,10 +1429,6 @@ msgstr "Skapa grupp" msgid "Create group" msgstr "Skapa grupp" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Skapa ny FAQ-sida" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1489,7 +1490,7 @@ msgstr "Datum" msgid "Dear %1" msgstr "Kära %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Felsökning" @@ -1774,6 +1775,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "Förstora redigeringsruta" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Ange ett nytt användarnamn och lösenord för att byta identitet" @@ -1900,7 +1905,7 @@ msgstr "Filen har laddats upp under annat namn" msgid "Find similar topics" msgstr "Hitta liknande sidor" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "Hitta sidor som refererar till %1 ..." @@ -2412,7 +2417,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Felaktiga parametrar till skriptet =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2620,7 +2625,7 @@ msgstr "Senast ändrad" msgid "Last name:" msgstr "Efternamn:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(version %1)" @@ -2917,7 +2922,7 @@ msgstr "Registrering av nya användare avstängd" msgid "New web name:" msgstr "Nytt namn på avdelningen:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Ny version:" @@ -2968,7 +2973,7 @@ msgstr "" msgid "No permission to view %1" msgstr "Inga rättigheter att se %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Ingen tidigare version finns." @@ -3089,7 +3094,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Tidligere version:" @@ -3158,7 +3163,7 @@ msgstr "Mata in ett nytt namn på sidan (frivilligt):" msgid "Optionally enter a different topic name:" msgstr "Mata in ett nytt namn på sidan (frivilligt):" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "Åtgärd" @@ -3704,7 +3709,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "Återställ" @@ -3723,19 +3728,19 @@ msgstr "" msgid "Restore and exit" msgstr "Återställ sida" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Återställ sida" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Återställ sidan till version:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Återställ sidan till denna version" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3743,7 +3748,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 #, fuzzy msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3801,7 +3806,7 @@ msgstr "Version" msgid "Revision history of %1" msgstr "Versionshistorik för %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Versioner" @@ -3924,7 +3929,7 @@ msgstr "(sökresultat)" msgid "Search string" msgstr "Söksträng" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "Sök i avdelning %1 efter sidor som länkar till denna" @@ -4045,7 +4050,7 @@ msgstr "Registrering av nya användare stöds inte" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Sekvensiell" @@ -4053,7 +4058,7 @@ msgstr "Sekvensiell" msgid "Set all" msgstr "Välj alla" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Välj ny förälder" @@ -4084,7 +4089,7 @@ msgstr "" msgid "Shrink edit box" msgstr "Minska redigeringsrutan" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "Sida vid sida" @@ -5296,7 +5301,7 @@ msgstr "Visa komplett historik för sidan" msgid "View difference" msgstr "Visa skillnad" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "Visa skillnad" @@ -5311,7 +5316,7 @@ msgstr "Visa mallar" msgid "View later" msgstr "Visa mallar" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Visa en tidigare version av sidan" @@ -5319,12 +5324,12 @@ msgstr "Visa en tidigare version av sidan" msgid "View raw text without formatting" msgstr "Visa källtext utan formatering" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "Visa version:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Visa version:" @@ -5950,7 +5955,7 @@ msgstr "tips på god stil i e-samarbetet" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "i källtext-format" diff --git a/core/locale/tlh.po b/core/locale/tlh.po index 273e8fa26d..f276c6cac5 100644 --- a/core/locale/tlh.po +++ b/core/locale/tlh.po @@ -1171,7 +1171,7 @@ msgstr "" "mIch pong chu&'vaD rarmeH ghItlhmey luwIvlu&'bogh luchu&'" "moHlu&'." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "%1 mIch puq ghItlhmey" @@ -1245,7 +1245,7 @@ msgstr "bI&'elta&'be&'taHvIS vaj Qapbe&' QInHommey" msgid "Commenting is disabled while running from the command line" msgstr "ra&'wI&' tlheghDaq Qapbe&' QInHommey" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Dotlhmey &'ol" @@ -1358,6 +1358,11 @@ msgstr "%1 pollaHbe&'." msgid "Country:" msgstr "Sep:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "QaH ghItlh chu&' chenmoH" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1390,10 +1395,6 @@ msgstr "lo&'wI&' ta chenmoH" msgid "Create group" msgstr "ghom chenmoH" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "QaH ghItlh chu&' chenmoH" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1455,7 +1456,7 @@ msgstr "HovpoH" msgid "Dear %1" msgstr "yIqIm, %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "QaghHa&'moH" @@ -1729,6 +1730,10 @@ msgstr "qabHom Degh" msgid "Enlarge edit box" msgstr "choHwI&' meyrI&' tInmoH" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1855,7 +1860,7 @@ msgstr "latlh pong ghaj De&'&'e&' lablu&'bogh" msgid "Find similar topics" msgstr "rurbogh ghItlhmey Sam" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "%1 puq ghItlhmey Sam ..." @@ -2375,7 +2380,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "=%1= ngoqDaq ghunmeH mu&'mey qab tu&'lu&'" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2571,7 +2576,7 @@ msgstr "choHlu&' poH" msgid "Last name:" msgstr "tuq pong:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Dotlh Qav: %1" @@ -2854,7 +2859,7 @@ msgstr "DaqvamDaq lo&'wI&' muvmeH mIw chu&'Ha&'lu&'." msgid "New web name:" msgstr "mIch pong chu&':" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Dotlh chu&':" @@ -2902,7 +2907,7 @@ msgstr "%1 &'olmeH ngoqvaD loSbogh muvmeH mIw tu&'be&'lu&'." msgid "No permission to view %1" msgstr "%1 bejlu&'meH chaw&' tu&'lu&'be&'" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "nungbogh Dotlh tu&'lu&'be&'." @@ -3021,7 +3026,7 @@ msgstr "qar, jIHbej!" msgid "Ok" msgstr "luq" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Dotlh qan:" @@ -3088,7 +3093,7 @@ msgstr "latlh tep pong DaghItlhlaH je:" msgid "Optionally enter a different topic name:" msgstr "latlh ghItlh pong DaghItlhlaH je:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "DuHmey" @@ -3599,7 +3604,7 @@ msgid "Resetting and setting password is not available." msgstr "chaw&' ngoq choHmeH mIw chu&'Ha&'lu&'." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "polqa&'" @@ -3615,19 +3620,19 @@ msgstr "polqa&' &'ej choHtaH ruch" msgid "Restore and exit" msgstr "polqa&' &'ej bup" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "ghItlh polqa&'" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Dotlhvam polqa&':" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Dotlhvam polqa&'" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3639,7 +3644,7 @@ msgstr "" "Hoch ghItlh Dotlh pollu&'mo&', reH ghItlh Daqa&'bogh " "Deleghqa&'laH. tepmey luchoHlu&'be&'." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" "wa&' Dotlh neH ghajmo&' ghItlhvam, &'oH Dapolqa&'laHbe&'." @@ -3694,7 +3699,7 @@ msgstr "Dotlh" msgid "Revision history of %1" msgstr "%1 Dotlh qun" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Dotlhmey" @@ -3807,7 +3812,7 @@ msgstr "Dochmey Sambogh" msgid "Search string" msgstr "Doch nejbogh" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "ghItlhvam puqpu&' DaSammeH %1 mIchDaq nej." @@ -3920,7 +3925,7 @@ msgstr "patvamDaq bImuv&'eghmoHlaHbe&'." msgid "Send mail" msgstr "QIn ngeH" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "bIngDaq" @@ -3928,7 +3933,7 @@ msgstr "bIngDaq" msgid "Set all" msgstr "Hoch wIv" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "qup chu&' jom" @@ -3957,7 +3962,7 @@ msgstr "Dotlhmey %1 - %2 &'agh (%3 tu&'lu&')" msgid "Shrink edit box" msgstr "choHmeH vey machmoH" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "retlhDaq" @@ -5136,7 +5141,7 @@ msgstr "ghItlh qun naQ &'ang" msgid "View difference" msgstr "Doch pIm &'angmeH:" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Dochmey pIm &'ang" @@ -5148,7 +5153,7 @@ msgstr "De&' &'eq &'ang" msgid "View later" msgstr "De&' paS &'ang" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "nungbogh ghItlh Dotlh &'ang" @@ -5156,11 +5161,11 @@ msgstr "nungbogh ghItlh Dotlh &'ang" msgid "View raw text without formatting" msgstr "ghunwI&' mu&'mey &'ang" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Dotlh &'ang" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Dotlh &'ang:" @@ -5766,7 +5771,7 @@ msgstr "batlh ghItlhmeH qeSmey laD" msgid "ignore case" msgstr "Degh&'a&'/DeghHom buSQo&'" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "ghunwI&' ngoq" diff --git a/core/locale/tr.po b/core/locale/tr.po index ccefd6205a..edf4ca960d 100644 --- a/core/locale/tr.po +++ b/core/locale/tr.po @@ -1119,7 +1119,7 @@ msgstr "" msgid "Checked topics will be updated to point to the new web name." msgstr "" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "" @@ -1190,7 +1190,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Revizyonları karşılaştır" @@ -1293,6 +1293,11 @@ msgstr "" msgid "Country:" msgstr "" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Yeni bir SSS konusu oluştur" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1327,10 +1332,6 @@ msgstr "Grup oluştur" msgid "Create group" msgstr "Grup oluştur" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Yeni bir SSS konusu oluştur" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1393,7 +1394,7 @@ msgstr "Tarih" msgid "Dear %1" msgstr "Sayın %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "" @@ -1658,6 +1659,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "" @@ -1777,7 +1782,7 @@ msgstr "" msgid "Find similar topics" msgstr "Benzer konuları bul" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "" @@ -2257,7 +2262,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2455,7 +2460,7 @@ msgstr "En son düzenleme zamanı" msgid "Last name:" msgstr "Soyad" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "Revizyonları karşılaştır" @@ -2747,7 +2752,7 @@ msgstr "Yeni Kullanıcı Kaydı kapatılmıştır" msgid "New web name:" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "" @@ -2796,7 +2801,7 @@ msgstr "" msgid "No permission to view %1" msgstr "" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "" @@ -2912,7 +2917,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "" @@ -2976,7 +2981,7 @@ msgstr "" msgid "Optionally enter a different topic name:" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "" @@ -3501,7 +3506,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "" @@ -3517,19 +3522,19 @@ msgstr "" msgid "Restore and exit" msgstr "" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3537,7 +3542,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3588,7 +3593,7 @@ msgstr "Revizyon" msgid "Revision history of %1" msgstr "%1 için revizyon geçmişi" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Revizyonlar" @@ -3706,7 +3711,7 @@ msgstr "Tüm weblerde ara" msgid "Search string" msgstr "" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "" @@ -3820,7 +3825,7 @@ msgstr "Yeni Kullanıcı Kaydı Desteklenmemektedir." msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "" @@ -3828,7 +3833,7 @@ msgstr "" msgid "Set all" msgstr "" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "" @@ -3858,7 +3863,7 @@ msgstr "" msgid "Shrink edit box" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "" @@ -5005,7 +5010,7 @@ msgstr "" msgid "View difference" msgstr "Farkı görüntüle" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "" @@ -5018,7 +5023,7 @@ msgstr "" msgid "View later" msgstr "Konuyu Görüntüle" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "" @@ -5026,11 +5031,11 @@ msgstr "" msgid "View raw text without formatting" msgstr "" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "" @@ -5597,7 +5602,7 @@ msgstr "" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "" diff --git a/core/locale/uk.po b/core/locale/uk.po index 9427746b80..c35212a604 100644 --- a/core/locale/uk.po +++ b/core/locale/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.1\n" "X-Poedit-Language: Ukrainian\n" "X-Poedit-Country: UKRAINE\n" @@ -1166,7 +1166,7 @@ msgstr "Помічені теми буде оновлено так, щоб вк msgid "Checked topics will be updated to point to the new web name." msgstr "Відмічені теми буде оновлено так, щоб вказувати на нове ім'я розділу." -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "Дочірні теми в розділі %1" @@ -1236,7 +1236,7 @@ msgstr "Коментування вимкнено поки не авторизу msgid "Commenting is disabled while running from the command line" msgstr "Коментування вимкнено коли запущено з командного рядку" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "Порівняти редакції" @@ -1346,6 +1346,11 @@ msgstr "Не вдалося зберегти %1." msgid "Country:" msgstr "Країна:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "Створити нову тему FAQ" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1378,10 +1383,6 @@ msgstr "Створити користувача" msgid "Create group" msgstr "Створити групу" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "Створити нову тему FAQ" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1441,7 +1442,7 @@ msgstr "Дата" msgid "Dear %1" msgstr "Любий(а) %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "Відладка" @@ -1708,6 +1709,11 @@ msgstr "Емотікон" msgid "Enlarge edit box" msgstr "Розширити область редагування" +#: core/templates/more.tmpl:102 +#, fuzzy +msgid "Enter __none__ to clear the topic parent" +msgstr "none (убрать родительскую тему)" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "Введіть нове ім'я користувача та пароль щоб змінити логін" @@ -1827,7 +1833,7 @@ msgstr "Файл був завантажений з іншим ім'ям" msgid "Find similar topics" msgstr "Знайти тотожні теми" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "Знайти теми, що є дочірніми до %1 ..." @@ -2344,7 +2350,8 @@ msgid "Incorrect parameters to the =%1= script" msgstr "Невірні параметри скрипту =%1=" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +#, fuzzy +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "Надано невірне ім'я шаблону теми." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2542,7 +2549,7 @@ msgstr "Час останньої зміни" msgid "Last name:" msgstr "Прізвище:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "Остання редакція: %1" @@ -2823,7 +2830,7 @@ msgstr "Реєстрацію нових користувачів вимкнен msgid "New web name:" msgstr "Нове ім'я розділу:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "Новіша редакція:" @@ -2869,7 +2876,7 @@ msgstr "За кодом верифікації %1 нема очікуваних msgid "No permission to view %1" msgstr "Немає прав для перегляду %1" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "Нема попередньої редакції." @@ -2987,7 +2994,7 @@ msgstr "Гаразд, це все ще я!" msgid "Ok" msgstr "Гаразд" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "Старіша редакція:" @@ -3051,7 +3058,7 @@ msgstr "За потреби, введіть іншу назву додатку:" msgid "Optionally enter a different topic name:" msgstr "За потреби, введіть іншу назву тему:" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "Варіанти" @@ -3562,7 +3569,7 @@ msgid "Resetting and setting password is not available." msgstr "Скидання або встановлення паролю не доступне." #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "Відновити" @@ -3578,19 +3585,19 @@ msgstr "Відновити та редагувати далі" msgid "Restore and exit" msgstr "Відновити та вийти" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "Відновити тему" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "Відновити тему до редакції:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "Відновити тему до цієї редакції" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3601,7 +3608,7 @@ msgstr "" "що до історії зберігається кожна редакція, ви завжди маєте можливість " "переглянути ту, яку замінюєте. Зважте на те, що додатки не змінюються." -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "Відновлення відключено тому, що ця тема має лише одну редакцію." @@ -3653,7 +3660,7 @@ msgstr "Редакція" msgid "Revision history of %1" msgstr "Історія редакцій %1" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "Редакції" @@ -3767,7 +3774,7 @@ msgstr "Результати пошуку" msgid "Search string" msgstr "Рядок пошуку" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "Пошук у розділі %1 всі дочірні теми від цієї." @@ -3878,7 +3885,7 @@ msgstr "Самостійна реєстрація не підтримуєтьс msgid "Send mail" msgstr "Надіслати повідомлення" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "Послідовно" @@ -3886,7 +3893,7 @@ msgstr "Послідовно" msgid "Set all" msgstr "Встановити все" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "Встановити нового батька" @@ -3915,7 +3922,7 @@ msgstr "Показано редакції %1 - %2 (з %3)" msgid "Shrink edit box" msgstr "Стиснути вікно редагування" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "У дві колонки" @@ -4410,9 +4417,9 @@ msgid "" msgstr "" "Надане ім'я або невірне, або названої теми не знайдено. templatetopic має " "бути існуючим шаблоном теми нового користувача у розділі %USERSWEB%. Якщо " -"його не задано, то за замовченням використовується " -"[[%USERSWEB%.NewUserTemplate]]; або ж якщо він відсутній, то тоді " -"[[%SYSTEMWEB%.NewUserTemplate]]." +"його не задано, то за замовченням використовується [[%USERSWEB%." +"NewUserTemplate]]; або ж якщо він відсутній, то тоді [[%SYSTEMWEB%." +"NewUserTemplate]]." #: core/data/System/UserName.txt:3 msgid "The name you log in with" @@ -5147,7 +5154,7 @@ msgstr "Перегляд повної історії теми" msgid "View difference" msgstr "Подивитись різницю" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "Подивитись відмінності" @@ -5159,7 +5166,7 @@ msgstr "Переглянути попередню" msgid "View later" msgstr "Переглянути пізнішу" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "Переглянути попередню редакцію" @@ -5167,11 +5174,11 @@ msgstr "Переглянути попередню редакцію" msgid "View raw text without formatting" msgstr "Переглянути початковий текст, без форматування" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "Переглянути редакцію" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "Переглянути редакцію:" @@ -5790,7 +5797,7 @@ msgstr "поради з хорошого стилю" msgid "ignore case" msgstr "ігнорувати регістр" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "у форматі похідного тексту" @@ -6654,9 +6661,6 @@ msgstr "чому у Вас запитують підтвердження" #~ msgstr "" #~ "Вы можете просмотреть изменения Вашей персональной TWiki страницы %1" -#~ msgid "none (remove topic parent)" -#~ msgstr "none (убрать родительскую тему)" - #~ msgid "to edit the topic anyway." #~ msgstr "непременно редактировать эту тему." diff --git a/core/locale/zh-cn.po b/core/locale/zh-cn.po index 9cf9af6052..3ee40d8877 100644 --- a/core/locale/zh-cn.po +++ b/core/locale/zh-cn.po @@ -1179,7 +1179,7 @@ msgstr "选择的主题,文中连结将更改为新主题。" msgid "Checked topics will be updated to point to the new web name." msgstr "选定的主题,文中连结将更改为新子网。" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "在%1子网中的子主题" @@ -1251,7 +1251,7 @@ msgstr "" msgid "Commenting is disabled while running from the command line" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "比较版本" @@ -1357,6 +1357,11 @@ msgstr "%1 无法保存。" msgid "Country:" msgstr "国家:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "建立新主题" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1393,11 +1398,6 @@ msgstr "建立新主题" msgid "Create group" msgstr "建立新主题" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -#, fuzzy -msgid "Create new FAQ topic" -msgstr "建立新主题" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 #, fuzzy @@ -1460,7 +1460,7 @@ msgstr "日期" msgid "Dear %1" msgstr "亲爱的 %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "除错" @@ -1727,6 +1727,10 @@ msgstr "" msgid "Enlarge edit box" msgstr "放大编辑框" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "输入新用户名和密码以改变身份" @@ -1852,7 +1856,7 @@ msgstr "档案已用其他名称上传" msgid "Find similar topics" msgstr "寻找相似主题" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Find topics that are children of %1 ..." msgstr "找连到 %1 的主题..." @@ -2352,7 +2356,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "=%1= 脚本的参数错误" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2556,7 +2560,7 @@ msgstr "最后修改时间" msgid "Last name:" msgstr "姓:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 #, fuzzy msgid "Latest revision: %1" msgstr "(修订版 %1)" @@ -2853,7 +2857,7 @@ msgstr "禁止新用户注册" msgid "New web name:" msgstr "新子网名称:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "新版本:" @@ -2904,7 +2908,7 @@ msgstr "" msgid "No permission to view %1" msgstr "无浏览 %1 的权限" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "前一个版本不存在。" @@ -3023,7 +3027,7 @@ msgstr "" msgid "Ok" msgstr "" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "旧版本:" @@ -3090,7 +3094,7 @@ msgstr "输入不同的主题名称(非必要):" msgid "Optionally enter a different topic name:" msgstr "输入不同的主题名称(非必要):" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 #, fuzzy msgid "Options" msgstr "功能" @@ -3626,7 +3630,7 @@ msgid "Resetting and setting password is not available." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 #, fuzzy msgid "Restore" msgstr "还原" @@ -3645,19 +3649,19 @@ msgstr "" msgid "Restore and exit" msgstr "还原主题" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "还原主题" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "还原主题至版本:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "还原主题至这个版本" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3665,7 +3669,7 @@ msgid "" "will be left unchanged." msgstr "" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "" @@ -3720,7 +3724,7 @@ msgstr "修订版" msgid "Revision history of %1" msgstr "%1 的版本历史" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "修订版" @@ -3841,7 +3845,7 @@ msgstr "(搜寻结果)" msgid "Search string" msgstr "搜寻字串" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 #, fuzzy msgid "Search the %1 Web for all children of this topic." msgstr "在 %1 子网中搜寻连结至此的主题" @@ -3959,7 +3963,7 @@ msgstr "不支援新用户注册" msgid "Send mail" msgstr "" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "连续的" @@ -3967,7 +3971,7 @@ msgstr "连续的" msgid "Set all" msgstr "设定所有" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "设定新父主题 " @@ -3998,7 +4002,7 @@ msgstr "" msgid "Shrink edit box" msgstr "缩小编辑框" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "并列" @@ -5174,7 +5178,7 @@ msgstr "检视主题完整修订史" msgid "View difference" msgstr "检视差异" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 #, fuzzy msgid "View differences" msgstr "检视差异" @@ -5189,7 +5193,7 @@ msgstr "检视范本" msgid "View later" msgstr "检视范本" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "检视主题的前一个版本" @@ -5197,12 +5201,12 @@ msgstr "检视主题的前一个版本" msgid "View raw text without formatting" msgstr "检视源码" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 #, fuzzy msgid "View revision" msgstr "检视修订版:" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "检视修订版:" @@ -5798,7 +5802,7 @@ msgstr "优良格式的提示" msgid "ignore case" msgstr "" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "源码模式" diff --git a/core/locale/zh-tw.po b/core/locale/zh-tw.po index ac3f3c244d..83b19a7353 100644 --- a/core/locale/zh-tw.po +++ b/core/locale/zh-tw.po @@ -1124,7 +1124,7 @@ msgstr "選擇的主題將指向新的主題位置。" msgid "Checked topics will be updated to point to the new web name." msgstr "選擇的主題將指向新的子網。" -#: core/templates/more.tmpl:204 +#: core/templates/more.tmpl:205 msgid "Child topics in %1 web" msgstr "在 %1 子網內的子主題" @@ -1194,7 +1194,7 @@ msgstr "未登入,禁止評論" msgid "Commenting is disabled while running from the command line" msgstr "命令列模式中,禁止評論" -#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:149 +#: HistoryPlugin/templates/oopshistory.tmpl:101 core/templates/more.tmpl:150 msgid "Compare revisions" msgstr "比較版本" @@ -1296,6 +1296,11 @@ msgstr "%1 無法存檔。" msgid "Country:" msgstr "國家:" +#: core/data/System/FrequentlyAskedQuestions.txt:45 +#, fuzzy +msgid "Create New FAQ Topic" +msgstr "建立新的熱門問答主題" + #: PatternSkin/data/Main/WebLeftBarExample.txt:7 #: PatternSkin/data/Sandbox/WebLeftBarExample.txt:6 #: PatternSkin/data/_default/WebLeftBar.txt:5 @@ -1328,10 +1333,6 @@ msgstr "建立帳號" msgid "Create group" msgstr "建立群組" -#: core/data/System/FrequentlyAskedQuestions.txt:45 -msgid "Create new FAQ topic" -msgstr "建立新的熱門問答主題" - #: FamFamFamContrib/templates/view.famfamfam.tmpl:30 #: FamFamFamContrib/templates/view.famfamfam.tmpl:31 msgid "Create new topic" @@ -1391,7 +1392,7 @@ msgstr "日期" msgid "Dear %1" msgstr "親愛的 %1" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Debug" msgstr "除錯" @@ -1645,6 +1646,10 @@ msgstr "表情" msgid "Enlarge edit box" msgstr "放大編輯框" +#: core/templates/more.tmpl:102 +msgid "Enter __none__ to clear the topic parent" +msgstr "" + #: core/templates/login.tmpl:7 msgid "Enter a new username and password to change identity" msgstr "輸入新用戶名和密碼以改變身份" @@ -1761,7 +1766,7 @@ msgstr "檔案已用其他名稱上傳" msgid "Find similar topics" msgstr "尋找相似主題" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Find topics that are children of %1 ..." msgstr "尋找 %1 的子題..." @@ -2246,7 +2251,7 @@ msgid "Incorrect parameters to the =%1= script" msgstr "=%1= 腳本的參數錯誤" #: core/templates/registermessages.tmpl:127 -msgid "Incorrect templatetopic name provided." +msgid "Incorrect topic name provided for the templatetopic parameter." msgstr "" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:74 @@ -2439,7 +2444,7 @@ msgstr "最後修改時間" msgid "Last name:" msgstr "姓:" -#: core/templates/more.tmpl:179 +#: core/templates/more.tmpl:180 msgid "Latest revision: %1" msgstr "最新版本: %1" @@ -2718,7 +2723,7 @@ msgstr "本站禁止新用戶註冊。" msgid "New web name:" msgstr "新子網名稱:" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Newer revision:" msgstr "新版本:" @@ -2764,7 +2769,7 @@ msgstr "由驗證碼中未找到正等候註冊者 %1。" msgid "No permission to view %1" msgstr "無瀏覽 %1 的權限" -#: core/templates/more.tmpl:197 +#: core/templates/more.tmpl:198 msgid "No previous revision exists." msgstr "前一個版本不存在。" @@ -2880,7 +2885,7 @@ msgstr "OK,這仍是我!" msgid "Ok" msgstr "好" -#: core/templates/more.tmpl:155 +#: core/templates/more.tmpl:156 msgid "Older revision:" msgstr "舊版本:" @@ -2942,7 +2947,7 @@ msgstr "輸入不同的附件名稱(非必要):" msgid "Optionally enter a different topic name:" msgstr "輸入不同的主題名稱(非必要):" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Options" msgstr "選項" @@ -3441,7 +3446,7 @@ msgid "Resetting and setting password is not available." msgstr "無法重設或設定密碼。" #: NatEditPlugin/templates/edittoolbar.natedit.tmpl:142 -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore" msgstr "還原" @@ -3457,19 +3462,19 @@ msgstr "還原並續繼編輯" msgid "Restore and exit" msgstr "還原並離開" -#: core/templates/more.tmpl:167 +#: core/templates/more.tmpl:168 msgid "Restore topic" msgstr "還原主題" -#: core/templates/more.tmpl:183 +#: core/templates/more.tmpl:184 msgid "Restore topic to revision:" msgstr "還原主題至版本:" -#: core/templates/more.tmpl:186 +#: core/templates/more.tmpl:187 msgid "Restore topic to this revision" msgstr "還原主題至這個版本" -#: core/templates/more.tmpl:172 +#: core/templates/more.tmpl:173 msgid "" "Restore will save an exact copy of your selected revision into a new " "revision. Because each revision will be preserved in the topic history, you " @@ -3479,7 +3484,7 @@ msgstr "" "還原會將您選中的版本完全相同的保存到新的版本。因為每個版本都保存在主題紀錄史" "中,可以隨時檢示被置換的版本。注意,附件將保持不變。" -#: core/templates/more.tmpl:177 +#: core/templates/more.tmpl:178 msgid "Restoring is disabled because this topic is at revision 1." msgstr "禁止還原因主題內容是第一個版本。" @@ -3529,7 +3534,7 @@ msgstr "修訂版" msgid "Revision history of %1" msgstr "%1 的版本歷史" -#: core/templates/more.tmpl:135 +#: core/templates/more.tmpl:136 msgid "Revisions" msgstr "修訂版" @@ -3641,7 +3646,7 @@ msgstr "搜尋結果" msgid "Search string" msgstr "搜尋字串" -#: core/templates/more.tmpl:205 +#: core/templates/more.tmpl:206 msgid "Search the %1 Web for all children of this topic." msgstr "在 %1 子網中搜尋此主題的所有子題。" @@ -3751,7 +3756,7 @@ msgstr "本站不支援新用戶註冊。" msgid "Send mail" msgstr "寄信" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Sequential" msgstr "連續的" @@ -3759,7 +3764,7 @@ msgstr "連續的" msgid "Set all" msgstr "設定全部" -#: core/templates/more.tmpl:104 +#: core/templates/more.tmpl:105 msgid "Set new parent" msgstr "設定新的父主題" @@ -3788,7 +3793,7 @@ msgstr "顯示修訂版 %1 - %2 (出自 %3)" msgid "Shrink edit box" msgstr "縮小編輯框" -#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:158 +#: HistoryPlugin/templates/oopshistory.tmpl:75 core/templates/more.tmpl:159 msgid "Side by side" msgstr "並列" @@ -4937,7 +4942,7 @@ msgstr "檢視主題完整修訂史" msgid "View difference" msgstr "檢視差異" -#: core/templates/more.tmpl:161 +#: core/templates/more.tmpl:162 msgid "View differences" msgstr "檢視差異" @@ -4949,7 +4954,7 @@ msgstr "檢視較早的版本" msgid "View later" msgstr "檢視較晚的版本" -#: core/templates/more.tmpl:136 +#: core/templates/more.tmpl:137 msgid "View previous topic revision" msgstr "檢視主題的前一個版本" @@ -4957,11 +4962,11 @@ msgstr "檢視主題的前一個版本" msgid "View raw text without formatting" msgstr "檢視源碼" -#: core/templates/more.tmpl:143 +#: core/templates/more.tmpl:144 msgid "View revision" msgstr "檢視修訂版" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "View revision:" msgstr "檢視修訂版:" @@ -5538,7 +5543,7 @@ msgstr "優良格式的提示" msgid "ignore case" msgstr "忽略大小寫" -#: core/templates/more.tmpl:140 +#: core/templates/more.tmpl:141 msgid "in raw text format" msgstr "源碼模式"