From 308590a609484c8baa77ffd250b366d5115686b5 Mon Sep 17 00:00:00 2001 From: Yannick Francois Date: Wed, 9 Oct 2013 15:43:19 +0200 Subject: [PATCH] Clean dashboard, move lang to locales --- .../admin/dashboard/_publify_dev.html.erb | 22 ---- app/views/admin/dashboard/_welcome.html.erb | 33 +++-- config/locales/da.yml | 39 ++++++ config/locales/de.yml | 39 ++++++ config/locales/en.yml | 39 ++++++ config/locales/es-MX.yml | 39 ++++++ config/locales/fr.yml | 42 ++++++ config/locales/he-IL.yml | 39 ++++++ config/locales/it.yml | 39 ++++++ config/locales/ja.yml | 39 ++++++ config/locales/lt.yml | 39 ++++++ config/locales/nb-NO.yml | 39 ++++++ config/locales/nl.yml | 39 ++++++ config/locales/pl.yml | 39 ++++++ config/locales/pt-BR.yml | 39 ++++++ config/locales/ro.yml | 39 ++++++ config/locales/ru.yml | 39 ++++++ config/locales/zh-CN.yml | 39 ++++++ config/locales/zh-TW.yml | 39 ++++++ lang/da_DK.rb | 53 -------- lang/de_DE.rb | 41 ------ lang/es_MX.rb | 75 ----------- lang/fr_FR.rb | 29 +--- lang/he_IL.rb | 99 -------------- lang/it_IT.rb | 122 ----------------- lang/ja_JP.rb | 90 ------------- lang/lt_LT.rb | 124 ------------------ lang/nb_NO.rb | 49 ------- lang/nl_NL.rb | 44 ------- lang/pl_PL.rb | 95 -------------- lang/pt_BR.rb | 48 ------- lang/ro_RO.rb | 60 --------- lang/ru_RU.rb | 15 --- lang/zh_CN.rb | 32 ----- lang/zh_TW.rb | 44 ------- 35 files changed, 683 insertions(+), 1058 deletions(-) delete mode 100644 app/views/admin/dashboard/_publify_dev.html.erb diff --git a/app/views/admin/dashboard/_publify_dev.html.erb b/app/views/admin/dashboard/_publify_dev.html.erb deleted file mode 100644 index d0c960c312..0000000000 --- a/app/views/admin/dashboard/_publify_dev.html.erb +++ /dev/null @@ -1,22 +0,0 @@ -

<%= _("Latest news from the Publify development blog") %>

-
- -
diff --git a/app/views/admin/dashboard/_welcome.html.erb b/app/views/admin/dashboard/_welcome.html.erb index 5d8b08825b..4ec724f67e 100644 --- a/app/views/admin/dashboard/_welcome.html.erb +++ b/app/views/admin/dashboard/_welcome.html.erb @@ -1,27 +1,26 @@ -

<%= _("Today") -%>

+

<%= t(".today") %>

-

<%= _("%d articles and %d comments were posted since your last connexion", @newposts_count, @newcomments_count) %>

-

<%= _("You're running Publify %s", PUBLIFY_VERSION) %> <%= @version_message %>

- +

<%= t(".articles_and_comments_count_since", articles_count: @newposts_count, comments_count: @newcomments_count) %>

+

<%= t(".running_publify", version: PUBLIFY_VERSION) %> <%= @version_message %>

- <% if current_user.can_access_to_articles? %> - -

<%= link_to(sprintf("%d %s", @statposts, pluralize(@statposts, _("articles"), _("article"), _("articles"))).html_safe, :controller => 'admin/content').html_safe %>

-

<%= link_to(sprintf("%d %s", @statuserposts, _("articles writen by you")).html_safe, :controller => 'admin/content', "search[user_id]" => current_user.id).html_safe %>

-

<%= link_to(sprintf("%d %s", @statsdrafts, pluralize(@statsdrafts, _("drafts"), _("draft"), _("drafts"))).html_safe, :controller => 'admin/content', "search[state]" => "drafts").html_safe %>

-

<%= link_to(sprintf("%d %s", @statspages, pluralize(@statspages, _("pages"), _("page"), _("pages"))).html_safe, :controller => 'admin/pages').html_safe %>

-

<%= link_to(sprintf("%d %s", @statuses, pluralize(@statspages, _("notes"), _("note"), _("notes"))).html_safe, :controller => 'admin/notes').html_safe %>

- <% end %> + <% if current_user.can_access_to_articles? %> + +

<%= link_to(t(".articles_count", count: @statposts), controller: 'admin/content') %>

+

<%= link_to(t(".your_articles_count", count: @statuserposts), controller: 'admin/content', "search[user_id]" => current_user.id) %>

+

<%= link_to(t(".drafts_count", count: @statsdrafts), controller: 'admin/content', "search[state]" => "drafts") %>

+

<%= link_to(t(".pages_count", count: @statspages), controller: 'admin/pages') %>

+

<%= link_to(t(".notes_count", count: @statuses), controller: 'admin/notes') %>

+ <% end %>
<% if current_user.can_access_to_feedback? %> - -

<%= link_to(sprintf("%d %s", @statcomments, _("comments")).html_safe, :controller => 'admin/feedback').html_safe %>

-

<%= link_to(sprintf("%d %s", @confirmed, _("approved")).html_safe, :controller => 'admin/feedback', "ham" => "f").html_safe %>

-

<%= link_to(sprintf("%d %s", @unconfirmed, _("unconfirmed")).html_safe, :controller => 'admin/feedback', "presumed_ham" => "f").html_safe %>

-

<%= link_to(sprintf("%d %s", @statspam, _("spam")).html_safe, :controller => 'admin/feedback', "spam" => "f").html_safe %>

+ +

<%= link_to(t('.comments_count', count: @statcomments), controller: 'admin/feedback') %>

+

<%= link_to(t('.approved_count', count: @confirmed), controller: 'admin/feedback', "ham" => "f") %>

+

<%= link_to(t('.unconfirmed_count', count: @unconfirmed), controller: 'admin/feedback', "presumed_ham" => "f") %>

+

<%= link_to(t(".spam_count", count: @statspam), controller: 'admin/feedback', "spam" => "f") %>

<% end %>
diff --git a/config/locales/da.yml b/config/locales/da.yml index e73cf580f8..0c60c0ab08 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -6,6 +6,45 @@ da: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "Du kører Publify version %{version}" + content: "Indhold" + articles_count: + zero: "ingen artikler" + one: "1 artikel" + other: "%{count} artikler" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Diskussion" + comments_count: + zero: "ingen kommentarer" + one: "1 kommentar" + other: "%{count} kommentarer" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "Dette sted giver dig en hurtig oversigt over, hvad der sker på din Publify blog, og hvad du kan gøre. Måske du ønsker at %{available_actions}." write_a_post: "skrive en artikel" diff --git a/config/locales/de.yml b/config/locales/de.yml index f937301f50..42b34c8e27 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -6,6 +6,45 @@ de: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Diskussion" + comments_count: + zero: "keine Kommentare" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/en.yml b/config/locales/en.yml index 0ea028a94f..9ac36f8343 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -6,6 +6,45 @@ en: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "no comment" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/es-MX.yml b/config/locales/es-MX.yml index a6d8e3e7c0..1fa6fa7879 100644 --- a/config/locales/es-MX.yml +++ b/config/locales/es-MX.yml @@ -6,6 +6,45 @@ es-MX: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no Página" + one: "1 Página" + other: "%{count} Páginas" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "no hay comentarios" + one: "1 comentario" + other: "%{count} comentarios" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 8323d35095..e5bcc38762 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -6,6 +6,48 @@ fr: last: "Last" admin: dashboard: + welcome: + today: "Aujourd'hui" + articles_and_comments_count_since: "Depuis votre dernière connexion, %{articles_count} articles et %{comments_count} commentaires ont été publiés" + running_publify: "Vous utilisez Publify %{version}" + content: "Contenu" + articles_count: + zero: "aucun article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "vous n'avez écris aucun article" + one: "1 article que vous avez écris" + other: "%{count} articles que vous avez écris" + drafts_count: + zero: "aucune brouillon" + one: "1 brouillon" + other: "%{count} brouillons" + pages_count: + zero: "aucune page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "aucune note" + one: "1 note" + other: "%{count} notes" + feedback: "Commentaires" + comments_count: + zero: "aucun commentaire" + one: "1 commentaire" + other: "%{count} commentaires" + approved_count: + zero: "aucun approuvés" + one: "1 approuvé" + other: "%{count} approuvés" + unconfirmed_count: + zero: "aucun non validés" + one: "1 validé" + other: "%{count} validés" + spam_count: + zero: "aucun spam" + one: "1 spam" + other: "%{count} spams" overview: dashboard_explain: "Voici un rapide aperçu de ce que peut faire votre blog Publify. Peux-être voulez vous %{available_actions}" write_a_post: "écrire un article" diff --git a/config/locales/he-IL.yml b/config/locales/he-IL.yml index 579daa3fdc..8d8fe94278 100644 --- a/config/locales/he-IL.yml +++ b/config/locales/he-IL.yml @@ -6,6 +6,45 @@ he-IL: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "אתה מריץ את Publify %{version}" + content: "תוכן" + articles_count: + zero: "אין כתבות" + one: "כתבה 1" + other: "%{count} כתבות" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "משוב" + comments_count: + zero: "אין תגובות" + one: "תגובה 1" + other: "%d תגובות" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "לכתוב כתבה" diff --git a/config/locales/it.yml b/config/locales/it.yml index 6791d49df5..332bd0d9a7 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -6,6 +6,45 @@ it: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Commenti" + comments_count: + zero: "nessun commento" + one: "1 commento" + other: "%{count} commento" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 0764e7e72a..1b4472a8b5 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -6,6 +6,45 @@ ja: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "Publify バージョン%{version} が稼働中です" + content: "コンテンツ" + articles_count: + zero: "no article" + one: "1記事" + other: "%{count}記事" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "フィードバック" + comments_count: + zero: "コメントなし" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "記事を投稿する" diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 1dd5a3741d..c1d0a2132c 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -6,6 +6,45 @@ lt: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Atsiliepimas" + comments_count: + zero: "nėra komentarų" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/nb-NO.yml b/config/locales/nb-NO.yml index fab89833a9..e11a22b257 100644 --- a/config/locales/nb-NO.yml +++ b/config/locales/nb-NO.yml @@ -6,6 +6,45 @@ nb-NO: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} artikler og %{comments_count} kommentarer siden forrige besøk" + running_publify: "Du bruker Publify versjon %{version}" + content: "Innhold" + articles_count: + zero: "ingen artikler" + one: "1 artikkel" + other: "%{count} artikler" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Diskusjon" + comments_count: + zero: "ingen kommentarer" + one: "1 kommentar" + other: "%{count} kommentarer" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "Dette stedet gir deg en rask oversikt over hva som foregår på din Publify-blogg og hva du kan gjøre. Kanskje du ønsker å %{availabel_actions}." write_a_post: "skrive en artikkel" diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 222dbc51af..a1b6ab5c36 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -6,6 +6,45 @@ nl: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} artikels en %{comments_count} commentaren zijn geplaatst sinds je laatste bezoek" + running_publify: "Je gebruikt Publify %{version}" + content: "Inhoud" + articles_count: + zero: "geen artikelen" + one: "1 artikel" + other: "%d artikelen" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "geen reacties" + one: "1 comment" + other: "%{count} reacties" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "Deze pagina geeft je een snel overzicht van wat er gebeurt op je Type blog en wat je doen kunt. Misschien wil je %{available_actions}" write_a_post: "een post schrijven" diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 192f7fda34..1d90fd1c93 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -6,6 +6,45 @@ pl: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} artykułów i %{comments_count} komentarzy zostało opublikowanych od twojego ostaniego połączenia" + running_publify: "Działasz na Publify %{version}" + content: "Content" + articles_count: + zero: "brak artykułów" + one: "1 artykuł" + other: "%{count} artykuły" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Komentarze" + comments_count: + zero: "brak komentarzy" + one: "1 komentarz" + other: "%{count} komentarze" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "utworzyć wpis" diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 8ef924df27..959f2a54bf 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -6,6 +6,45 @@ pt-BR: last: "Anterior" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "sem artigos" + one: "1 artigo" + other: "%{count} artigos" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "sem comentários" + one: "1 comentário" + other: "%{count} comentários" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 66d822a520..5b3a18333f 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -6,6 +6,45 @@ ro: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "fără comentarii" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" write_a_post: "write a post" diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 7dfc4ad0cf..0cea873c2e 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -6,6 +6,45 @@ ru: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} постов и %{comments_count} комментариев получено с вашего последнего посещения" + running_publify: "Работает Publify %{version}" + content: "Content" + articles_count: + zero: "нет постов" + one: "1 пост" + other: "постов: %{count}" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Комментарии" + comments_count: + zero: "нет комментариев" + one: "1 комментарий" + other: "комментариев: %{count}" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "Здесь можно посмотреть, что происходит в вашем Publify-блоге и что в нем можно сделать. Возможно, вы хотели бы %{available_actions}." write_a_post: "написать пост" diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index ffa4322a2f..4e8eeaae69 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -6,6 +6,45 @@ zh-CN: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "在你上次离开后,新增%{articles_count}篇文章和%{comments_count}个评价" + running_publify: "你正在使用的是Publify %{version}" + content: "Content" + articles_count: + zero: "没有文章" + one: "一篇文章" + other: "%{count}篇文章" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "回应" + comments_count: + zero: "没有评论" + one: "一条评论" + other: "%{count}条评论" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "这里給你一個快速的概览,让你知道你的博客发生什么事情了。也许你想要%{available_actions}" write_a_post: "写一篇文章" diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 369b10f8d5..1b67d4cae0 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -6,6 +6,45 @@ zh-TW: last: "Last" admin: dashboard: + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "你現在是使用Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "回應" + comments_count: + zero: "沒有評論" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" overview: dashboard_explain: "這個地方給你一個快速的綜覽,讓你知道你的部落格發生甚麼事情了。也許你想要%{available_actions}" write_a_post: "寫一篇文章" diff --git a/lang/da_DK.rb b/lang/da_DK.rb index d57a53fb1b..899c96d181 100644 --- a/lang/da_DK.rb +++ b/lang/da_DK.rb @@ -21,12 +21,10 @@ l.store "Article was successfully created", "" l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" l.store "All spam have been deleted", "" @@ -41,13 +39,11 @@ l.store "User was successfully updated.", "" # app/controllers/admin/resources_controller.rb - l.store "Error occurred while updating Content Type.", "" l.store "complete", "" l.store "File uploaded: ", "" l.store "Unable to upload", "" l.store "Metadata was successfully updated.", "" l.store "Not all metadata was defined correctly.", "" - l.store "Content Type was successfully updated.", "" # app/controllers/admin/settings_controller.rb l.store "Please review and save the settings before continuing", "" @@ -78,7 +74,6 @@ l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" l.store "Cancel", "Anuller" @@ -99,48 +94,23 @@ l.store "Unpublished", "Ikke offentliggjort" l.store "Back to overview", "Tilbage til oversigten" l.store "Tag", "Tag" - - l.store "no articles", "ingen artikler" - l.store "1 article", "1 artikel" - l.store "%d articles", "%d artikler" - - l.store "Destroy this draft", "" - - l.store "Show conversation", "" - l.store "Flag as %s", "" - l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "%d kommentarer" - l.store "no comments", "ingen kommentarer" - l.store "1 comment", "1 kommentar" l.store "no trackbacks", "ingen trackbacks" l.store "1 trackback", "1 trackback" l.store "%d trackbacks", "%d trackbacks" - l.store "Posted in", "Offentliggjort i" - l.store "no posts", "" - l.store "1 post", "" - l.store "%d posts", "" - - # app/models/article.rb - l.store "Original article writen by", "" - l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" l.store "Reorder", "Arranger" l.store "Sort alphabetically", "Sortér alfabetisk" @@ -169,7 +139,6 @@ l.store "Search articles that contain ...", "Søg efter artikler der indeholder..." l.store "Author", "Forfatter" l.store "Date", "Dato" - l.store "Feedback", "Diskussion" # app/views/admin/dashboard/_comments.html.erb l.store "Latest Comments", "Seneste kommentarer" @@ -190,39 +159,27 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Velkommen tilbage, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "Du kører Publify version %s" l.store "Total posts : %d", "Total artikler : %d" l.store "Your posts : %d", "Dine artikler : %d" l.store "Total comments : %d", "Total kommentarer : %d" l.store "Spam comments : %d", "Spam kommentarer : %d" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" - l.store "Limit to spam", "Indskrænk til spam" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb l.store "This comment by %s was flagged as spam, %s?", "" - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" l.store "Comment", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Kommentarer for" - # app/views/admin/feedback/index.html.erb l.store "Article", "Artikel" # app/views/admin/pages/_form.html.erb @@ -236,7 +193,6 @@ l.store "Delete this page", "Slet denne side" # app/views/admin/pages/index.html.erb - l.store "New Page", "" l.store "Manage pages", "Administrer sider" # app/views/admin/profiles/index.html.erb @@ -281,7 +237,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -309,7 +264,6 @@ l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -324,12 +278,10 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb l.store "Spam protection", "" l.store "Enable comments by default", "Aktiver kommentarer som standard" l.store "Enable Trackbacks by default", "Aktiver Trackbacks som standard" l.store "Enable feedback moderation", "Aktiver feedback moderation" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.", "" l.store "Comments filter", "Kommentarfilter" l.store "Enable gravatars", "Vis gravatars" l.store "Show your email address", "Vis din e-mail addresse" @@ -349,7 +301,6 @@ l.store "Max Links", "Max Links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them" #Need translate l.store "Set to 0 to never reject comments", "Sæt til 0 for at aldrig forkaste kommentarer" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Din Blog" @@ -419,13 +370,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Udgiv ændringer" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" @@ -577,7 +526,6 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "Read full article", "" l.store "comment", "" l.store "trackback", "" @@ -667,7 +615,6 @@ l.store "Choose password", "Kodeord" l.store "Comments and Trackbacks for", "Kommentarer og trackbacks for" l.store "Confirm password", "Gentag kodeord" - l.store "Content", "Indhold" l.store "Continue reading »", "Læs videre »" l.store "Copyright Information", "Copyright information" l.store "Create new Blacklist", "Opret ny blacklist" diff --git a/lang/de_DE.rb b/lang/de_DE.rb index 02ea938c8e..1cd7613b78 100644 --- a/lang/de_DE.rb +++ b/lang/de_DE.rb @@ -19,12 +19,10 @@ l.store "Article was successfully created", "" l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" l.store "All spam have been deleted", "" @@ -39,13 +37,11 @@ l.store "User was successfully updated.", "" # app/controllers/admin/resources_controller.rb - l.store "Error occurred while updating Content Type.", "" l.store "complete", "" l.store "File uploaded: ", "" l.store "Unable to upload", "" l.store "Metadata was successfully updated.", "" l.store "Not all metadata was defined correctly.", "" - l.store "Content Type was successfully updated.", "" # app/controllers/admin/settings_controller.rb l.store "Please review and save the settings before continuing", "" @@ -75,7 +71,6 @@ l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -98,25 +93,12 @@ l.store "Show help on Publify macros", "" l.store "Back to overview", "Zurück zur Übersicht" l.store "Tag", "" - - # app/helpers/admin/categories_helper.rb - l.store "no articles", "" - l.store "1 article", "" - l.store "%d articles", "" - - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "keine Kommentare" - l.store "1 comment", "" l.store "no trackbacks", "keine Trackbacks" l.store "1 trackback", "" l.store "%d trackbacks", "" @@ -135,15 +117,12 @@ # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" l.store "Reorder", "Sortieren" l.store "Sort alphabetically", "Alphabetisch sortieren" @@ -168,7 +147,6 @@ l.store "Delete this article", "Diesen Artikel löschen" l.store "Author", "Autor" - l.store "Feedback", "Diskussion" # app/views/admin/dashboard/_posts.html.erb l.store "Latest Posts", "" @@ -179,36 +157,26 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" l.store "Total comments : %d", "" l.store "Spam comments : %d", "" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "Einschränken auf Spam" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb l.store "This comment by %s was flagged as spam, %s?", "" - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" l.store "Comment", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Kommentare für" # app/views/admin/pages/_form.html.erb @@ -222,7 +190,6 @@ l.store "Delete this page", "Diese Seite löschen" # app/views/admin/pages/index.html.erb - l.store "New Page", "" l.store "Manage pages", "" # app/views/admin/profiles/index.html.erb @@ -266,7 +233,6 @@ l.store "Indexing", "" l.store "Robots.txt", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -294,7 +260,6 @@ l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -309,12 +274,10 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb l.store "Spam protection", "" l.store "Enable comments by default", "Kommentare per default erlauben" l.store "Enable Trackbacks by default", "Trackbacks per default aktivieren" l.store "Enable feedback moderation", "Moderation von Kommentaren aktivieren" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.", "" l.store "Comments filter", "Textfilter für Kommentar" l.store "Enable gravatars", "Gratavare aktivieren" l.store "Show your email address", "Ihre Email Adresse anzeigen" @@ -334,7 +297,6 @@ l.store "Max Links", "Maximale Anzahl Links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify kann automatisch Kommentare und Trackbacks abweisen, die mehr als eine bestimmte Anzahl von Links enthalten" l.store "Set to 0 to never reject comments", "Wert 0 bewirkt, dass Kommentare nie abgewiesen werden" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Mein Blog" @@ -401,13 +363,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Änderungen veröffentlichen" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" @@ -549,7 +509,6 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "Read full article", "" l.store "comment", "" l.store "trackback", "" diff --git a/lang/es_MX.rb b/lang/es_MX.rb index 4389ccece7..9f3a24199a 100644 --- a/lang/es_MX.rb +++ b/lang/es_MX.rb @@ -20,24 +20,15 @@ # app/controllers/admin/content_controller.rb l.store "Error, you are not allowed to perform this action", "" l.store "Preview", "" - l.store "Article was successfully created", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" - l.store "All spam have been deleted", "" - l.store "Comment was successfully created.", "" - - # app/controllers/admin/pages_controller.rb - l.store "Page was successfully created.", "" # app/controllers/admin/resources_controller.rb - l.store "Error occurred while updating Content Type.", "" l.store "complete", "" l.store "File uploaded: ", "" l.store "Unable to upload", "" @@ -61,14 +52,10 @@ # app/controllers/application_controller.rb l.store "Localization.rtl", "" - # app/controllers/articles_controller.rb l.store "No posts found...", "" l.store "Archives for", "" l.store "Archives for ", "" - l.store ", Articles for ", "" - # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -87,41 +74,26 @@ l.store "Save", "Guardar" l.store "Edit", "Editar" - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "no hay comentarios" - l.store "1 comment", "" l.store "no trackbacks", "no hay trackbacks" l.store "1 trackback", "" l.store "%d trackbacks", "" - # app/models/article.rb - l.store "Original article writen by", "" - l.store "direct link to this article", "" - l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Reorganizar" @@ -153,8 +125,6 @@ # app/views/admin/content/index.html.erb l.store "Author", "Autor" - l.store "Feedback", "" - l.store "Manage articles", "" # app/views/admin/dashboard/_comments.html.erb l.store "Error: can't generate secret token. Security is at risk. Please, change %s content", "" @@ -176,55 +146,30 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" l.store "Total comments : %d", "" - l.store "Spam comments : %d", "" - # app/views/admin/feedback/_button.html.erb l.store "Select action", "" l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" - l.store "Limit to spam", "Limitar a spam" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Comentarios para" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb - l.store "Pages","Páginas" l.store "Are you sure you want to delete the page", "¿Estás seguro que deseas eliminar esta página?" l.store "Delete this page", "Eliminar esta página" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" - # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Content Type" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Página anterior" l.store "Next page", "Página siguiente" @@ -265,7 +210,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -278,22 +222,14 @@ l.store "Here you can add anything you want to appear in your application header, such as analytics service tracking code.", "" # app/views/admin/seo/titles.html.erb - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" - l.store "Replaced with the post/page excerpt", "" - l.store "Replaced with the article tags (comma separated)", "" - l.store "Replaced with the article categories (comma separated)", "" l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" - l.store "These tags can be included in your templates and will be replaced when displaying the page.", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Habilitar comentarios por default" l.store "Enable Trackbacks by default", "Habilitar Trackbacks por default" l.store "Enable feedback moderation", "Habilitar moderación de comentarios y trackbacks" @@ -316,7 +252,6 @@ l.store "Max Links", "Máximo número de links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify rechazará automáticamente los comentarios y trackbacks que contengan más de un cierto número de links en ellos" l.store "Set to 0 to never reject comments", "Introducir 0 para nunca rechazar comentarios" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Tu sitio" @@ -344,9 +279,7 @@ l.store "Meta keywords", "" l.store "Use RSS description", "" l.store "Index categories", "" - l.store "Unchecking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Index tags", "" - l.store "Unchecking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "This will display", "" @@ -390,14 +323,10 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Publicar cambios" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" - l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -529,10 +458,6 @@ # app/views/comments/show.html.erb l.store "This comment has been flagged for moderator approval.", "" - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "" diff --git a/lang/fr_FR.rb b/lang/fr_FR.rb index 0ef1ec5762..7a3a2b0e5b 100644 --- a/lang/fr_FR.rb +++ b/lang/fr_FR.rb @@ -33,7 +33,6 @@ l.store "There's a new version of Publify available which may contain important bug fixes. Why don't you upgrade to %s ?", "Une nouvelle version de Publify est disponible. Celle-ci contient probablement d'importants correctifs. Pourquoi ne téléchargeriez-vous pas %s" l.store "There's a new version of Publify available. Why don't you upgrade to %s ?", "Une nouvelle version de Publify est disponible. Pouquoi n'installeriez-vous pas %s" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "Supprimé" l.store "Not found", "Introuvable" l.store "Deleted %d item(s)", "%d commentaires ont été supprimés" @@ -127,7 +126,6 @@ l.store "Article type", "" l.store "Default", "" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "Afficher le fil" l.store "Flag as %s", "Marquer comme %s" @@ -161,38 +159,19 @@ l.store "Author", "Auteur" l.store "Date", "Date" - l.store "Feedback", "Commentaires" l.store "Latest Comments", "Derniers commentaires" - # app/views/admin/dashboard/_popular.html.erb l.store "Most popular", "Billets les plus populaires" l.store "Nothing to show yet", "Rien à afficher pour l'instant" - # app/views/admin/dashboard/_posts.html.erb - l.store "Latest Posts", "Derniers articles" - l.store "No posts yet, why don't you start and write one", "Vous n'avez encore écrit aucun article, pourquoi ne pas commencer par là" - - # app/views/admin/dashboard/_publify_dev.html.erb - l.store "Latest news from the Publify development blog", "Dernières nouvelles du blog officiel de Publify" - l.store "Oh no, nothing new", "Non, rien de nouveau" - - # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Bienvenue, %s !" - l.store "%d articles and %d comments were posted since your last connexion", "Depuis votre dernière connexion, %d articles et %d commentaires ont été publiés" - l.store "You're running Publify %s", "Vous utilisez Publify %s" - l.store "Content", "Contenu" + l.store "Total posts:", "Nombre total d'articles :" l.store "Your posts:", "Vos articles :" - l.store "Categories:", "" l.store "Total comments:", "Nombre total de commentaires :" l.store "Spam comments:", "Nombre total de spam :" l.store "In your spam queue:", "En attente de modération :" - l.store "articles writen by you", "articles que vous avez écris" - l.store "drafts", "brouillons" - l.store "draft", "brouillon" - l.store "comments", "commentaires" - l.store "approved", "approuvés" l.store "unconfirmed", "non validés" # app/views/admin/dashboard/_dafts.html.erb @@ -227,7 +206,6 @@ l.store "Spam", "Spam" l.store "Presumed ham", "Probablement valide" l.store "Presumed spam", "Probablement du spam" - l.store "Article", "Article" l.store "Select all", "Tout sélectionner" # app/views/admin/pages/_form.html.erb @@ -255,7 +233,6 @@ l.store "Leave empty to shorten a link", "Laissez vide pour créer un lien court" l.store "To", "Vers" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Page précédente" l.store "Next page", "Page suivante" @@ -329,8 +306,6 @@ l.store "Title settings", "Paramétrage des titres" l.store "Title template", "Titre" l.store "Description template", "Description" - l.store "Articles", "Articles" - l.store "Pages","Pages" l.store "Paginated archives", "Archives paginées" l.store "Dated archives", "Archives par date" l.store "Author page", "Page d'auteur" @@ -358,7 +333,6 @@ l.store "Message", "Message" l.store "Error messages", "Messages d'erreur" - # app/views/admin/settings/feedback.html.erb l.store "Spam protection", "Protection contre le spam" l.store "Enable comments by default", "Activer les commentaires par défaut" l.store "Enable Trackbacks by default", "Activer les rétroliens par défaut" @@ -739,7 +713,6 @@ l.store "Delete this Post Type", "" l.store "Delete this article", "Supprimer ce billet" l.store "Delete this category", "Supprimer cette catégorie" - l.store "Delete this feedback", "" l.store "Delete this page", "Supprimer cette page" l.store "Delete this redirection", "" l.store "Delete this tag", "Supprimer ce label" diff --git a/lang/he_IL.rb b/lang/he_IL.rb index 8501613650..cef7077e87 100644 --- a/lang/he_IL.rb +++ b/lang/he_IL.rb @@ -21,7 +21,6 @@ l.store "Article was successfully created", "הכתבה נוצרה בהצלחה " l.store "Article was successfully updated.", "הכתבה עודכנה בהצלחה." - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "נמחקה" l.store "Not found", "לא נמצאה" l.store "Deleted %d item(s)", "נמחקו %d פריטים" @@ -29,11 +28,9 @@ l.store "Marked %d item(s) as Spam", "סומנו %d פריטים כספאם" l.store "Confirmed classification of %s item(s)", "אומת הסיווג של %d פריטים." l.store "Not implemented", "לא מיושם" - l.store "All spam have been deleted", "" l.store "Comment was successfully created.", "התגובה נוצרה בהצלחה." l.store "Comment was successfully updated.", "התגובה עודכנה בהצלחה." - # app/controllers/admin/pages_controller.rb l.store "Page was successfully created.", "הדף נוצר בהצלחה." l.store "Page was successfully updated.", "הדף עודכן בהצלחה." @@ -71,14 +68,11 @@ # app/controllers/application_controller.rb l.store "Localization.rtl", "1" - # app/controllers/articles_controller.rb l.store "No posts found...", "" l.store "Archives for", "" l.store "Archives for ", "" - l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -102,24 +96,15 @@ l.store "Back to overview", "עבור לסקירה" l.store "Tag", "תוית" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "אין כתבות" - l.store "1 article", "כתבה 1" - l.store "%d articles", "%d כתבות" - # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "מחוק טיוטה זו" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "%%a, %%d %%b %%Y %%H:%%M:%%S GMT" l.store "%%d. %%b", "%%d. %%b" - l.store "%d comments", "%d תגובות" - l.store "no comments", "אין תגובות" - l.store "1 comment", "תגובה 1" l.store "no trackbacks", "אין עוקבים-חזרה" l.store "1 trackback", "עוקב-חזרה 1" l.store "%d trackbacks", "%d עוקבים-חזרה" @@ -130,18 +115,13 @@ l.store "1 post", "כתבה 1" l.store "%d posts", "%d כתבות" - # app/models/article.rb - l.store "Original article writen by", "" l.store "and published on", "" - l.store "direct link to this article", "" - l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "" l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "לא סווג" l.store "Just Presumed Ham", "כנראה לא-ספאם" l.store "Ham?", "לא-ספאם ?" @@ -183,10 +163,8 @@ l.store "Articles", "כתבות" # app/views/admin/content/index.html.erb - l.store "Search articles that contain ...", "" l.store "Author", "כותב" l.store "Date", "תאריך" - l.store "Feedback", "משוב" # app/views/admin/dashboard/_popular.html.erb l.store "Most popular", "הכי פופלריים" @@ -202,55 +180,35 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "ברוך הבא, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "אתה מריץ את Publify %s" l.store "Total posts : %d", "כתבות: %d" l.store "Your posts : %d", "הכתבות שלך: %d" l.store "Total comments : %d", "תגובות: %d" l.store "Spam comments : %d", "תגובות ספאם: %d" - # app/views/admin/feedback/_button.html.erb l.store "Select action", "" l.store "Delete Checked Items", "מחק פריטים שסומנו" - l.store "Delete all spam", "" l.store "Mark Checked Items as Spam", "סווג פריטים שסומנו כספאם" l.store "Mark Checked Items as Ham", "סווג פריטים שסומנו כלא-ספאם" - l.store "All comments", "" l.store "Limit to ham", "" l.store "Unapproved comments", "תגובות לא מאושרות" l.store "Limit to spam", "סווג כספאם" - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "כתובת" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "תגובות עבור %s" - l.store "Comment Author", "" - l.store "Comment", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "תגובות על" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "חפש תגובות או עוקבים-חזרה המכילים" l.store "Article", "כתבה" - # app/views/admin/pages/_form.html.erb l.store "Online", "מוצג" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages", "דפים" l.store "Are you sure you want to delete the page", "האם אתה בטוח שברצונך למחוק דף זה ?" l.store "Delete this page", "מחק דף זה" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" l.store "Manage pages", "נהל דפים" # app/views/admin/profiles/index.html.erb @@ -259,7 +217,6 @@ # app/views/admin/resources/_mime_edit.html.erb l.store "Content Type", "סוג התוכן" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "הדף הקודם" l.store "Next page", "הדף הבא" @@ -294,13 +251,9 @@ l.store "RSS description message", "" l.store "Indexing", "" l.store "Do not index categories", "" - l.store "Checking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Do not index tags", "" - l.store "Checking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -320,10 +273,6 @@ l.store "Month and title", "" l.store "Title only", "" l.store "You can custom your URL structure using the following tags:", "" - l.store "your article slug. Using this slug is mandatory.", "" - l.store "your article year of publication.", "" - l.store "your article month of publication.", "" - l.store "your article day of publication.", "" l.store "Permalinks", "" l.store "Custom", "" @@ -332,35 +281,23 @@ l.store "Home", "" l.store "Title template", "" l.store "Description template", "" - l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "Help on title settings", "" - l.store "Replaced with the title of the article/page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" - l.store "Replaced with the post/page excerpt", "" - l.store "Replaced with the article tags (comma separated)", "" - l.store "Replaced with the article categories (comma separated)", "" - l.store "Replaced with the article/page title", "" l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" - l.store "These tags can be included in your templates and will be replaced when displaying the page.", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "אפשר תגובות כברירת מחדל" l.store "Enable Trackbacks by default", "אפשר עוקבים-חזרה כברירת מחדל" l.store "Enable feedback moderation", "אפשר ביקורת על המשוב" @@ -384,7 +321,6 @@ l.store "Max Links", "מקסימום קישורים" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify תדחה אוטומטית תגובות ועוקבים-חזרה המכילים את כמות הקישורים מסויימת" l.store "Set to 0 to never reject comments", "הגדר כ-0 כדי לא לדחות תגובות לעולם" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "הבלוג שלך" @@ -413,9 +349,7 @@ l.store "Meta keywords", "" l.store "Use RSS description", "" l.store "Index categories", "" - l.store "Unchecking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Index tags", "" - l.store "Unchecking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Search Engine Optimization", "" @@ -461,14 +395,10 @@ l.store "Get more plugins", "" l.store "Sidebar", "תיבת צד" l.store "Publish changes", "פרסם שינויים" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" - l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -547,15 +477,12 @@ # app/views/admin/users/new.html.erb l.store "Add User", "הוסף משתמש" - # app/views/articles/_article.html.erb l.store "Posted by", "נכתב על ידי" l.store "Continue reading", "" - # app/views/articles/_comment.html.erb l.store "said", "a dit" l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "תגובה זו הועברה לביקורת. היא לא תופיע בבלוג עד אשר הכותב יאשר אותה" - # app/views/articles/_comment_box.html.erb l.store "Your name", "השם שלך" l.store "Your email", "הדואל שלך" l.store "Your message", "התגובה שלך" @@ -563,23 +490,17 @@ l.store "Preview comment", "תצוגה מקדימה של התגובה" l.store "leave url/email", "השאר כתובת/דואל" - # app/views/articles/_comment_failed.html.erb l.store "Oops, something wrong happened, the comment could not be saved", "אופס, משהו השתבש, התגובה אינה יכולה להישמר" - # app/views/articles/_trackback.html.erb l.store "From", "מאת" - # app/views/articles/archives.html.erb l.store "No articles found", "לא נמצאו כתבות" l.store "posted in", "נשלח ב-" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "עומד לומר" - # app/views/articles/groupings.html.erb l.store "There are", "ישנם" - # app/views/articles/read.html.erb l.store "Leave a response", "הגב" l.store "Trackbacks", "עוקבים חזרה" l.store "Use the following link to trackback from your own site", "השתמש בקישור הבא כדי לעקוב-חזרה מהאתר שלך" @@ -596,15 +517,9 @@ l.store "AIM:", "" l.store "Twitter:", "" l.store "About %s", "" - l.store "This author has not published any article yet", "" - # app/views/comments/show.html.erb l.store "This comment has been flagged for moderator approval.", "התגובה הזו ממתינה לאישור" - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "" l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Publify will take care of everything else", "" @@ -623,7 +538,6 @@ l.store "Powered by %s", "מופעל על ידי %s" l.store "Designed by %s ", "עוצב על ידי %s" - # test/mocks/themes/typographic/views/articles/_article.html.erb l.store "Continue reading...", "המשך לקרוא..." l.store "This entry was posted on %s", "כתבה זו פורסמה בתאריך %s" l.store "and %s", "ו-%s" @@ -635,10 +549,8 @@ l.store "comment", "תגובה" l.store "trackback", "עוקב-חזרה" - # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "אחר כך" - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb l.store "Leave a comment", "הגב" l.store "Name %s", "שם %s" l.store "enabled", "מאופשר" @@ -648,7 +560,6 @@ l.store "Markdown enabled", "Markdown מאופשר" l.store "required", "נחוץ" - # test/mocks/themes/typographic/views/articles/_comment_list.html.erb l.store "No comments", "ללא תגובות" # test/mocks/themes/typographic/views/shared/_search.html.erb @@ -661,34 +572,25 @@ # themes/scribbish/layouts/default.html.erb l.store "styled with %s", "עוצב על ידי %s" - # themes/scribbish/views/articles/_article.html.erb l.store "Meta", "פרטים" l.store "permalink", "קישור קבוע" # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" - # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment.html.erb l.store "later:", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "" l.store "Your website", "" - # themes/true-blue-3/views/articles/read.html.erb - l.store "If you liked this article you can %s", "" l.store "add me to Twitter", "" l.store "Trackbacks for", "עוקבי חזרה עבור" - # themes/true-blue-3/views/articles/search.html.erb l.store "Search results for:", "" # themes/true-blue-3/views/categories/index.html.erb - l.store "Read all articles in %s", "" # themes/true-blue-3/views/categories/show.html.erb l.store "Previous", "" @@ -739,7 +641,6 @@ l.store "Comments for %s (%s)", "תגובות עבור %s (%s)" l.store "Confirm Classification of Checked Items", "אמת סיווג של פריטים" l.store "Confirm password", "אמת סיסמה" - l.store "Content", "תוכן" l.store "Contributor", "תורם" l.store "Copyright Information", "מידע על זכויות יוצרים" l.store "Create Text Filter", "צור מסנן טקסט" diff --git a/lang/it_IT.rb b/lang/it_IT.rb index f92f268058..808b23581a 100644 --- a/lang/it_IT.rb +++ b/lang/it_IT.rb @@ -18,24 +18,13 @@ # app/controllers/admin/content_controller.rb l.store "Error, you are not allowed to perform this action", "" l.store "Preview", "" - l.store "Article was successfully created", "" - l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "Conferma classificazione di %s elementi" l.store "Not implemented", "Non implementato" - l.store "All spam have been deleted", "" - l.store "Comment was successfully created.", "" - l.store "Comment was successfully updated.", "" - - # app/controllers/admin/pages_controller.rb - l.store "Page was successfully created.", "" - l.store "Page was successfully updated.", "" # app/controllers/admin/profiles_controller.rb l.store "User was successfully updated.", "" @@ -71,14 +60,11 @@ # app/controllers/application_controller.rb l.store "Localization.rtl", "" - # app/controllers/articles_controller.rb l.store "No posts found...", "" l.store "Archives for", "" l.store "Archives for ", "" - l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -102,30 +88,19 @@ l.store "Back to overview", "Torna al sommario" l.store "Tag", "" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "" - l.store "1 article", "" - l.store "%d articles", "" - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "nessun commento" - l.store "1 comment", "" l.store "no trackbacks", "nessun trackback" l.store "1 trackback", "" l.store "%d trackbacks", "" # app/models/article.rb - l.store "Original article writen by", "" l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" @@ -133,16 +108,11 @@ # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" - l.store "Reorder", "Riordina" l.store "Sort alphabetically", "Ordina alfabeticamente" @@ -168,9 +138,7 @@ l.store "Delete this article", "Elimina articolo" l.store "Author", "Autore" - l.store "Feedback", "Commenti" - # app/views/admin/dashboard/_comments.html.erb l.store "Error: can't generate secret token. Security is at risk. Please, change %s content", "" l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "" @@ -188,64 +156,36 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" - l.store "Total comments : %d", "" - l.store "Spam comments : %d", "" - # app/views/admin/feedback/_button.html.erb l.store "Select action", "" l.store "Delete Checked Items", "Elimina gli elementi selezionati" - l.store "Delete all spam", "" l.store "Mark Checked Items as Spam", "Segna come spam" l.store "Mark Checked Items as Ham", "Segna come confermati" - l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "Limita a spam" - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Sito" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb - l.store "Comments for %s", "" - l.store "Comment Author", "" - l.store "Comment", "" - - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Commenti per" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "Cerca commenti o trackback che contengono" l.store "Article", "" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages","Pagine" l.store "Are you sure you want to delete the page", "Sei sicuro di voler eliminare questa pagina" l.store "Delete this page", "Elimina questa pagina" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" # app/views/admin/resources/_mime_edit.html.erb l.store "Content Type", "Tipo di contenuto" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Pagina precedente" l.store "Next page", "Pagina successiva" @@ -278,13 +218,9 @@ l.store "Use RSS description", "" l.store "RSS description message", "" l.store "Indexing", "" - l.store "Checking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Do not index tags", "" - l.store "Checking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -300,39 +236,26 @@ l.store "Publify offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links.", "" l.store "Here are some examples to get you started.", "" l.store "You can custom your URL structure using the following tags:", "" - l.store "your article slug. Using this slug is mandatory.", "" - l.store "your article year of publication.", "" - l.store "your article month of publication.", "" - l.store "your article day of publication.", "" l.store "Permalinks", "" l.store "Custom", "" l.store "Description template", "" - l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" - l.store "Replaced with the post/page excerpt", "" - l.store "Replaced with the article tags (comma separated)", "" l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" - l.store "These tags can be included in your templates and will be replaced when displaying the page.", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Abilita commenti di defaault" l.store "Enable Trackbacks by default", "Abilita Trackbacks come default" l.store "Enable feedback moderation", "Abilita la moderazione dei feedback" @@ -356,7 +279,6 @@ l.store "Max Links", "Max Links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Il blog cancellera' automaticamente commenti e trackbacks che contengono un certo numero di link" l.store "Set to 0 to never reject comments", "Inserisci 0 per accettare sempre i commenti." - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Tuo blog " @@ -383,9 +305,7 @@ l.store "Meta description", "" l.store "Meta keywords", "" l.store "Use RSS description", "" - l.store "Unchecking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Index tags", "" - l.store "Unchecking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Search Engine Optimization", "" @@ -431,14 +351,10 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Pubblica cambiamenti" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" - l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -509,7 +425,6 @@ # app/views/admin/users/index.html.erb l.store "New User", "Nuovo utente" - l.store "Comments", "" l.store "State", "" l.store "%s user", "" l.store "Manage users", "" @@ -517,39 +432,25 @@ # app/views/admin/users/new.html.erb l.store "Add User", "Aggiungi Utente" - # app/views/articles/_article.html.erb l.store "Posted by", "Scritto da" l.store "Continue reading", "" - # app/views/articles/_comment.html.erb l.store "said", "dice" - l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "" - - # app/views/articles/_comment_box.html.erb l.store "Your name", "Tuo nome " l.store "Your email", "Tua email" l.store "Your message", "Tuo messaggio" l.store "Comment Markup Help", "Aiuto sul markup dei comemnti" l.store "Preview comment", "Anteprima commento" l.store "leave url/email", "" - - # app/views/articles/_comment_failed.html.erb - l.store "Oops, something wrong happened, the comment could not be saved", "" - - # app/views/articles/_trackback.html.erb l.store "From", "Da" - # app/views/articles/archives.html.erb l.store "No articles found", "Nessun articolo trovato" l.store "posted in", "" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "sta per dire" - # app/views/articles/groupings.html.erb l.store "There are", "Ci sono" - # app/views/articles/read.html.erb l.store "Leave a response", "Commenta" l.store "Trackbacks", "" l.store "Use the following link to trackback from your own site", "Usa il link seguente per fare un trackback dal tuo sito" @@ -567,13 +468,6 @@ l.store "Twitter:", "" l.store "About %s", "" - # app/views/comments/show.html.erb - l.store "This comment has been flagged for moderator approval.", "" - - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "" @@ -591,7 +485,6 @@ l.store "Powered by %s", "" l.store "Designed by %s ", "" - # test/mocks/themes/typographic/views/articles/_article.html.erb l.store "Continue reading...", "" l.store "This entry was posted on %s", "" l.store "and %s", "" @@ -600,14 +493,8 @@ l.store "You can leave a %s", "" l.store "or a %s from your own site", "" l.store "Read full article", "Leggi articolo completo" - l.store "comment", "" l.store "trackback", "" - - # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" - - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -623,29 +510,20 @@ # themes/scribbish/layouts/default.html.erb l.store "styled with %s", "" - # themes/scribbish/views/articles/_article.html.erb l.store "Meta", "" # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" - - # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "" l.store "Your website", "" - # themes/true-blue-3/views/articles/read.html.erb - l.store "If you liked this article you can %s", "" l.store "add me to Twitter", "" l.store "Trackbacks for", "Trackbacks per" - # themes/true-blue-3/views/articles/search.html.erb l.store "Search results for:", "" - l.store "Read all articles in %s", "" l.store "Previous", "" diff --git a/lang/ja_JP.rb b/lang/ja_JP.rb index e9d6ff127c..af2a998e4b 100644 --- a/lang/ja_JP.rb +++ b/lang/ja_JP.rb @@ -19,19 +19,12 @@ l.store "Article was successfully created", "記事を作成しました" l.store "Article was successfully updated.", "記事が更新されました" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" - l.store "All spam have been deleted", "" - l.store "Comment was successfully created.", "" - l.store "Comment was successfully updated.", "" - - # app/controllers/admin/pages_controller.rb l.store "Page was successfully created.", "ページが作成されました" l.store "Page was successfully updated.", "ページが更新されました" @@ -69,14 +62,11 @@ # app/controllers/application_controller.rb l.store "Localization.rtl", "" - # app/controllers/articles_controller.rb l.store "No posts found...", "" l.store "Archives for", "" l.store "Archives for ", "" - l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -98,25 +88,12 @@ l.store "Show help on Publify macros", "Publifyマクロのヘルプを表示" l.store "Back to overview", "オーバービューに戻る" l.store "Tag", "" - - # app/helpers/admin/categories_helper.rb - l.store "no articles", "" - l.store "1 article", "1記事" - l.store "%d articles", "%d記事" - - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", Proc.new { |date| sprintf(date.strftime("%Y-%m-%d %H:%M:%S GMT")) } l.store "%%d. %%b", Proc.new { |date| sprintf(date.strftime("%m/%d")) } - l.store "%d comments", "" - l.store "no comments", "コメントなし" - l.store "1 comment", "" l.store "no trackbacks", "トラックバックなし" l.store "1 trackback", "" l.store "%d trackbacks", "" @@ -128,7 +105,6 @@ l.store "%d posts", "" # app/models/article.rb - l.store "Original article writen by", "" l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" @@ -136,7 +112,6 @@ # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "未分類" l.store "Just Presumed Ham", "承認と推定" l.store "Ham?", "承認?" @@ -176,7 +151,6 @@ l.store "Search articles that contain ...", "以下の語句を含む記事を検索" l.store "Author", "投稿者" l.store "Date", "日付" - l.store "Feedback", "フィードバック" # app/views/admin/dashboard/_popular.html.erb l.store "Most popular", "人気記事" @@ -187,14 +161,11 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "お帰りなさいませ、%s 様" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "Publify バージョン%s が稼働中です" l.store "Total posts : %d", "総投稿数" l.store "Your posts : %d", "あなたの投稿数" l.store "Total comments : %d", "総コメント数" l.store "Spam comments : %d", "スパムコメント数" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "チェックした行を削除" l.store "Delete all spam", "全てのスパムを削除する" l.store "Mark Checked Items as Spam", "チェックした行をスパムにする" @@ -203,38 +174,19 @@ l.store "Limit to ham", "有効コメント" l.store "Unapproved comments", "未承認コメント" l.store "Limit to spam", "スパムコメント" - - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "" - - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb - l.store "Comments for %s", "" - l.store "Comment Author", "" - l.store "Comment", "" - - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "〜へコメント" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "以下の語句を含むコメントおよびトラックバックを検索" l.store "Article", "記事" - # app/views/admin/pages/_form.html.erb l.store "Online", "オンライン" l.store "Page settings", "ページ設定" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages","ページ" l.store "Are you sure you want to delete the page", "本当にこのページを削除してよろしいですか?" l.store "Delete this page", "このページを削除" - - # app/views/admin/pages/index.html.erb - l.store "New Page", "" l.store "Manage pages", "ページの管理" # app/views/admin/profiles/index.html.erb @@ -242,8 +194,6 @@ # app/views/admin/resources/_mime_edit.html.erb l.store "Content Type", "コンテンツタイプ" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "前のページ" l.store "Next page", "次のページ" @@ -278,8 +228,6 @@ l.store "Do not index categories", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -309,31 +257,24 @@ l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "Help on title settings", "" - l.store "Replaced with the title of the article/page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the article categories (comma separated)", "" - l.store "Replaced with the article/page title", "" l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "デフォルトでコメントを有効にする" l.store "Enable Trackbacks by default", "デフォルトでトラックバックを許可する" l.store "Enable feedback moderation", "フィードバック承認機能を有効にする" @@ -357,7 +298,6 @@ l.store "Max Links", "最大のリンク数" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publifyは指定された数のリンクが含まれているコメントやトラックバックを自動的に拒否します" l.store "Set to 0 to never reject comments", "コメントを拒否しない場合は0を設定してください" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "あなたのブログ" @@ -434,14 +374,10 @@ l.store "Get more plugins", "他のプラグインの入手" l.store "Sidebar", "サイドバー" l.store "Publish changes", "変更を公開" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" - l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -519,21 +455,15 @@ l.store "Posted by", "投稿者" l.store "Continue reading", "" - # app/views/articles/_comment.html.erb l.store "said", "発言" l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "このコメントはモデレーターの確認が必要です。モデレーターが確認後にコメントが表示されます。" - # app/views/articles/_comment_box.html.erb l.store "Your name", "あなたの名前" l.store "Your email", "あなたのemail" l.store "Your message", "メッセージ" l.store "Comment Markup Help", "コメントのマークアップヘルプ" l.store "Preview comment", "前のコメント" l.store "leave url/email", "" - - # app/views/articles/_comment_failed.html.erb - l.store "Oops, something wrong happened, the comment could not be saved", "" - # app/views/articles/_trackback.html.erb l.store "From", "From" @@ -541,7 +471,6 @@ l.store "No articles found", "記事が見つかりませんでした" l.store "posted in", "" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "〜について言う" # app/views/articles/groupings.html.erb @@ -564,15 +493,6 @@ l.store "AIM:", "" l.store "Twitter:", "" l.store "About %s", "" - - # app/views/comments/show.html.erb - l.store "This comment has been flagged for moderator approval.", "" - - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - - # app/views/setup/index.html.erb l.store "Welcome", "" l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Publify will take care of everything else", "" @@ -598,14 +518,10 @@ l.store "You can leave a %s", "" l.store "or a %s from your own site", "" l.store "Read full article", "" - l.store "comment", "" l.store "trackback", "" - # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -614,9 +530,6 @@ l.store "Markdown enabled", "" l.store "required", "" - # test/mocks/themes/typographic/views/articles/_comment_list.html.erb - l.store "No comments", "" - # test/mocks/themes/typographic/views/shared/_search.html.erb l.store "Searching", "" @@ -632,12 +545,10 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "" l.store "Your website", "" @@ -697,7 +608,6 @@ l.store "Confirm Classification of Checked Items", "チェックした行の分類を認める" l.store "Confirm password", "パスワード再入力" l.store "Contact options", "連絡オプション" - l.store "Content", "コンテンツ" l.store "Copyright Information", "著作権情報" l.store "Create new Blacklist", "新しいブラックリスト作成" l.store "Create new category", "新規カテゴリ追加" diff --git a/lang/lt_LT.rb b/lang/lt_LT.rb index 83d7a11d51..fe21efe810 100644 --- a/lang/lt_LT.rb +++ b/lang/lt_LT.rb @@ -16,36 +16,23 @@ # app/controllers/admin/content_controller.rb l.store "Error, you are not allowed to perform this action", "" l.store "Preview", "" - l.store "Article was successfully created", "" - l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" - l.store "All spam have been deleted", "" - l.store "Comment was successfully created.", "" - l.store "Comment was successfully updated.", "" - - # app/controllers/admin/pages_controller.rb - l.store "Page was successfully created.", "" - l.store "Page was successfully updated.", "" # app/controllers/admin/profiles_controller.rb l.store "User was successfully updated.", "" # app/controllers/admin/resources_controller.rb - l.store "Error occurred while updating Content Type.", "" l.store "complete", "" l.store "File uploaded: ", "" l.store "Unable to upload", "" l.store "Metadata was successfully updated.", "" l.store "Not all metadata was defined correctly.", "" - l.store "Content Type was successfully updated.", "" # app/controllers/admin/settings_controller.rb l.store "Please review and save the settings before continuing", "" @@ -69,14 +56,11 @@ # app/controllers/application_controller.rb l.store "Localization.rtl", "" - # app/controllers/articles_controller.rb l.store "No posts found...", "" l.store "Archives for", "" l.store "Archives for ", "" - l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -100,24 +84,12 @@ l.store "Back to overview", "Atgal į peržiūrą" l.store "Tag", "" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "" - l.store "1 article", "" - l.store "%d articles", "" - - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "nėra komentarų" - l.store "1 comment", "" l.store "no trackbacks", "nėra dienoraščio nuorodų" l.store "1 trackback", "" l.store "%d trackbacks", "" @@ -128,24 +100,16 @@ l.store "1 post", "" l.store "%d posts", "" - # app/models/article.rb - l.store "Original article writen by", "" - l.store "direct link to this article", "" - l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" l.store "Reorder", "Rikiuoti" l.store "Sort alphabetically", "Rikiuoti pagal abėcėlę" @@ -167,11 +131,9 @@ # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Ar tikrai norite ištrinti šį straipsnį" l.store "Delete this article", "Trinti šį straipsnį" - l.store "Articles", "" # app/views/admin/content/index.html.erb l.store "Author", "Autorius" - l.store "Feedback", "Atsiliepimas" # app/views/admin/dashboard/_popular.html.erb l.store "Most popular", "" @@ -187,58 +149,28 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" - l.store "Total comments : %d", "" - l.store "Spam comments : %d", "" l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" - l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "Spamo limitas" - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Url adresas" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb - l.store "Comments for %s", "" - l.store "Comment Author", "" - l.store "Comment", "" - - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Komentarai" - # app/views/admin/pages/_form.html.erb l.store "Online", "Pasiekiamas" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages","Seiten" l.store "Are you sure you want to delete the page", "Sind Sie sicher, diese Seite zu löschen" l.store "Delete this page", "Diese Seite löschen" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" - # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Content Type" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Buvęs puslapis" # reikia kitaip kazkaip l.store "Next page", "Sekantis puslapis" @@ -273,8 +205,6 @@ l.store "Indexing", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -289,20 +219,13 @@ # app/views/admin/seo/permalinks.html.erb l.store "Publify offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links.", "" l.store "Here are some examples to get you started.", "" - l.store "your article slug. Using this slug is mandatory.", "" - l.store "your article year of publication.", "" - l.store "your article month of publication.", "" - l.store "your article day of publication.", "" l.store "Permalinks", "" l.store "Custom", "" # app/views/admin/seo/titles.html.erb l.store "Description template", "" - l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -311,18 +234,14 @@ l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Kommentare per default erlauben" l.store "Enable Trackbacks by default", "Trackbacks per default aktivieren" l.store "Enable feedback moderation", "Moderation von Kommentaren aktivieren" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.", "" l.store "Comments filter", "Komentarų filtras" l.store "Enable gravatars", "Gratavare aktivieren" l.store "Show your email address", "Ihre Email Adresse anzeigen" @@ -342,7 +261,6 @@ l.store "Max Links", "Maximale Anzahl Links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify kann automatisch Kommentare und Trackbacks abweisen, die mehr als eine bestimmte Anzahl von Links enthalten" l.store "Set to 0 to never reject comments", "Wert 0 bewirkt, dass Kommentare nie abgewiesen werden" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Tavo dienoraščio adresas" @@ -412,14 +330,10 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Änderungen veröffentlichen" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" - l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -475,7 +389,6 @@ # app/views/admin/users/index.html.erb l.store "New User", "Neuer Benutzer" - l.store "Comments", "" l.store "State", "" l.store "%s user", "" l.store "Manage users", "" @@ -483,15 +396,12 @@ # app/views/admin/users/new.html.erb l.store "Add User", "" - # app/views/articles/_article.html.erb l.store "Posted by", "Parašė" l.store "Continue reading", "" - # app/views/articles/_comment.html.erb l.store "said", "pasakė" l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Komentaras laukia moderatoriaus patvirtinimo" # sutrumpinua, man rodos logiskaiu - # app/views/articles/_comment_box.html.erb l.store "Your name", "Tavo vardas" l.store "Your email", "Tavo el. pašto adresas" l.store "Your message", "Tavo žinutė" @@ -499,23 +409,15 @@ l.store "Preview comment", "Peržiūrėti komentarą" l.store "leave url/email", "" - # app/views/articles/_comment_failed.html.erb - l.store "Oops, something wrong happened, the comment could not be saved", "" - - # app/views/articles/_trackback.html.erb l.store "From", "Nuo" - # app/views/articles/archives.html.erb l.store "No articles found", "Straipsnių nėra" l.store "posted in", "" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "pasakoja apie" - # app/views/articles/groupings.html.erb l.store "There are", "Čia yra" - # app/views/articles/read.html.erb l.store "Leave a response", "Palikti atsakymą" l.store "Trackbacks", "" l.store "Use the following link to trackback from your own site", "Dienoraščio nuoroda (trackback)" @@ -533,13 +435,6 @@ l.store "Twitter:", "" l.store "About %s", "" - # app/views/comments/show.html.erb - l.store "This comment has been flagged for moderator approval.", "" - - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "" @@ -553,7 +448,6 @@ l.store "Powered by %s", "" l.store "Designed by %s ", "" - # test/mocks/themes/typographic/views/articles/_article.html.erb l.store "Continue reading...", "" l.store "This entry was posted on %s", "" l.store "and %s", "" @@ -561,15 +455,8 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "Read full article", "" - l.store "comment", "" l.store "trackback", "" - - # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" - - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -577,10 +464,6 @@ l.store "Textile enabled", "" l.store "Markdown enabled", "" l.store "required", "" - - # test/mocks/themes/typographic/views/articles/_comment_list.html.erb - l.store "No comments", "" - # themes/dirtylicious/layouts/default.html.erb l.store "About", "" l.store "Designed by %s ported to publify by %s ", "" @@ -590,21 +473,14 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" - - # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "" l.store "Your website", "" - # themes/true-blue-3/views/articles/read.html.erb - l.store "If you liked this article you can %s", "" l.store "add me to Twitter", "" l.store "Trackbacks for", "Trackback für" - l.store "Read all articles in %s", "" l.store "Previous", "" l.store "Next", "" diff --git a/lang/nb_NO.rb b/lang/nb_NO.rb index abe46aaf1f..96092a9d2d 100644 --- a/lang/nb_NO.rb +++ b/lang/nb_NO.rb @@ -48,7 +48,6 @@ l.store "There's a new version of Publify available which may contain important bug fixes. Why don't you upgrade to %s ?", "Det finnes en ny versjon av Publify som kan inneholde viktige feilrettelser. Hva med å oppgradere til %s?" l.store "There's a new version of Publify available. Why don't you upgrade to %s ?", "Det finnes en ny versjon av Publify. Hva med å oppgradere til %s?" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "Slettet" l.store "Not found", "Ikke funnet" l.store "Deleted %d item(s)", "Slettet %d enheter" @@ -60,7 +59,6 @@ l.store "Comment was successfully created.", "Kommentar opprettet" l.store "Comment was successfully updated.", "Kommentar oppdatert" - # app/controllers/admin/pages_controller.rb l.store "Page was successfully created.", "Side opprettet" l.store "Page was successfully updated.", "Side oppdatert" @@ -132,17 +130,10 @@ l.store "Show help on Publify macros", "Vis hjelp i Publify makroer" l.store "Update settings", "Oppdater innstillinger" l.store "Back to list", "Tilbake til listen" - l.store "Tag", "Tag" - - # app/helpers/admin/categories_helper.rb - l.store "no articles", "ingen artikler" - l.store "1 article", "1 artikkel" - l.store "%d articles", "%d artikler" # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "Slett dette utkastet" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "Vis samtale" l.store "Flag as %s", "Flagg som %s" @@ -150,9 +141,6 @@ l.store "%%d. %%b", "" l.store "Are you sure you want to delete this %s?", "Er du sikker på at du vil slette denne %s?" l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" - l.store "%d comments", "%d kommentarer" - l.store "no comments", "ingen kommentarer" - l.store "1 comment", "1 kommentar" l.store "no trackbacks", "ingen trackbacks" l.store "1 trackback", "1 trackback" l.store "%d trackbacks", "%d trackbacks" @@ -161,7 +149,6 @@ l.store "You need a permalink format with an identifier : %%title%%", "Du må bruke et permalenkeformat med identifikator: %%title%%" l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Kan ikke slutte på .rss eller .atom. Disse er reserverte for feed-URLer" - # app/models/feedback/states.rb l.store "Unclassified", "Uklassifisert" l.store "Just Presumed Ham", "Kun antatt Ham" l.store "Ham?", "Ham?" @@ -205,12 +192,8 @@ l.store "Are you sure you want to delete this article", "Er du sikker på du vil slette denne artikkelen" l.store "Delete this article", "Slett denne artikkelen" l.store "Articles", "Artikler" - l.store "Author", "Forfatter" l.store "Date", "Dato" - l.store "Feedback", "Diskusjon" - - # app/views/admin/dashboard/_comments.html.erb l.store "Latest Comments", "Siste kommentarer" # app/views/admin/dashboard/_popular.html.erb @@ -227,16 +210,12 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Velkommen tilbake, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "%d artikler og %d kommentarer siden forrige besøk" - l.store "You're running Publify %s", "Du bruker Publify versjon %s" - l.store "Content", "Innhold" l.store "Total posts:", "Antall artikler:" l.store "Your posts:", "Dine artikler:" l.store "Total comments:", "Antall kommentarer:" l.store "Spam comments:", "Spam-kommentarer:" l.store "In your spam queue:", "I Spam-køen:" - # app/views/admin/feedback/_button.html.erb l.store "Select action", "Velg handling" l.store "Delete Checked Items", "Slett markerte enheter" l.store "Delete all spam", "Slett all Spam" @@ -250,39 +229,31 @@ l.store "Unapproved comments", "Kommentarer på vent" l.store "Limit to spam", "Begrens til Spam" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "Legg til kommentar" l.store "Url", "URL" - # app/views/admin/feedback/_spam.html.erb l.store "This comment by %s was flagged as spam, %s?", "Denne kommentaren av %s er flagget som Spam, %s?" - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "Kommentarer for %s" l.store "Comment Author", "Kommentarforfatter" l.store "Comment", "Kommentar" - # app/views/admin/feedback/destroy.html.erb l.store "Are you sure you want to delete this %s", "Er du sikker på at du vil slette denne %s?" l.store "Delete this feedback", "Slett feedback" l.store "%s", "" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "Søk etter kommentarer og Trackbacks som inneholder" l.store "Article", "Artikkel" l.store "Select all", "Velg alle" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" l.store "Page settings", "Sideinnstillinger" l.store "Permanent link", "Permanent lenke" - # app/views/admin/pages/destroy.html.erb l.store "Pages", "Sider" l.store "Are you sure you want to delete the page", "Er du sikker på du vil slette denne siden" l.store "Delete this page", "Slett denne side" - # app/views/admin/pages/index.html.erb l.store "New Page", "Ny side" l.store "Manage pages", "Administrer sider" @@ -303,7 +274,6 @@ # app/views/admin/redirects/new.html.erb l.store "%s Redirect", "%s omdirigering" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Forrige side" l.store "Next page", "Neste side" @@ -336,9 +306,7 @@ l.store "RSS description message", "Melding for RSS-beskrivelse" l.store "Indexing", "Indekserer" l.store "Do not index categories", "Ikke indekser kategorier" - l.store "Checking this box will add noindex, follow meta tags in every category page, removing them from search engines and preventing duplicate content issues", "" l.store "Do not index tags", "Ikke indekser tagger" - l.store "Checking this box will add noindex, follow meta tags in every tags page, removing them from search engines and preventing duplicate content issues", "" l.store "Robots.txt", "Robots.txt" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "Din robots.txt er ikke skrivbar. Publify vil ikke kunne skrive til den" l.store "Use dofollow in comments", "Bruk dofollow i kommentarer" @@ -386,8 +354,6 @@ l.store "Replaced by the archive date", "Erstattet av arkivdato" l.store "Titles", "Titler" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Aktiver kommentarer som standard" l.store "Enable Trackbacks by default", "Aktiver Trackbacks som standard" l.store "Enable feedback moderation", "Aktiver feedback-moderering" @@ -472,14 +438,11 @@ l.store "Get more plugins", "Hent flere plugins" l.store "Sidebar", "" l.store "Publish changes", "Publiser endringer" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -558,10 +521,8 @@ # app/views/articles/_article_excerpt.html.erb l.store "Continue reading", "Fortsett å lese" - # app/views/articles/_comment_failed.html.erb l.store "Oops, something wrong happened, the comment could not be saved", "Ojsann, noe galt skjedde. Kommentaren ble ikke lagret" - # app/views/articles/_comment_form.html.erb l.store "Your name", "Ditt navn" l.store "Your email", "Din epost" l.store "Your message", "Din beskjed" @@ -569,14 +530,12 @@ l.store "Preview comment", "Vis eksempel på kommentar" l.store "leave url/email", "legg igjen URL/epost" - # app/views/articles/_comment_list.html.erb l.store "No comments", "Ingen kommentarer" # app/views/articles/archives.html.erb l.store "No articles found", "Fant ingen artikler" l.store "posted in", "postet i" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "vil snart si" # app/views/articles/groupings.html.erb @@ -601,17 +560,11 @@ l.store "About %s", "Om %s" l.store "This author has not published any article yet", "Forfatteren har ikke publisert noen artikler enda" - # app/views/comments/_comment.html.erb l.store "said", "sa" l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Denne kommentaren har blitt flagget for godkjenning av moderator. Den vil ikke bli vist på bloggen før moderatoren godkjenner den." - # app/views/comments/show.html.erb l.store "This comment has been flagged for moderator approval.", "Denne kommentaren har blitt flagget for godkjenning av moderator." - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "Velkommen" l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Publify will take care of everything else", "Velkommen til din %s bloggoppsett. Bare fyll inn bloggtittel og epostadressen din, så vil Publify ta seg av resten" @@ -642,7 +595,6 @@ l.store "comment", "kommentar" l.store "trackback", "" - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb l.store "Leave a comment", "Skriv en kommentar" l.store "Name %s", "Navn %s" l.store "enabled", "aktivert" @@ -670,7 +622,6 @@ l.store "Published on", "Publisert den" l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "Epostadresse" l.store "Your website", "Din hjemmeside" diff --git a/lang/nl_NL.rb b/lang/nl_NL.rb index 91b8d3794d..fdc271f3f8 100644 --- a/lang/nl_NL.rb +++ b/lang/nl_NL.rb @@ -20,7 +20,6 @@ l.store "Article was successfully created", "Artikel is succesvol gemaakt" l.store "Article was successfully updated.", "Artikel is succesvol bijgewerkt." - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "Verwijderd" l.store "Not found", "Niet gevonden" l.store "Deleted %d item(s)", "%d items verwijderd" @@ -32,7 +31,6 @@ l.store "Comment was successfully created.", "Commentaar is succesvol aangemaakt." l.store "Comment was successfully updated.", "Commentaar is succesvol bijgewerkt." - # app/controllers/admin/pages_controller.rb l.store "Page was successfully created.", "Pagina is succesvol aangemaakt." l.store "Page was successfully updated.", "Pagina is succesvol bijgewerkt." @@ -100,23 +98,15 @@ l.store "Back to overview", "Terug naar overzicht" l.store "Tag", "Tag" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "geen artikelen" - l.store "1 article", "1 artikel" - l.store "%d articles", "%d artikelen" - # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "Verwijder dit concept" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "Toon conversatie" l.store "Flag as %s", "Markeer als %s" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "%%a, %%d %%b %%Y %%H:%%M:%%S GMT" l.store "%%d. %%b", "%%d. %%b" - l.store "%d comments", "%d reacties" - l.store "no comments", "geen reacties" l.store "1 comment", "één reactie" l.store "no trackbacks", "geen trackbacks" l.store "1 trackback", "één trackback" @@ -139,7 +129,6 @@ l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Je hebt een permalink formaat nodig met een identifier: %%month%%, %%year%%, %%day%%, %%title%%" l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Mag niet eindigen met .rss of .atom. Die zijn gereserveerd voor feed URLs" - # app/models/feedback/states.rb l.store "Unclassified", "Niet geclassificeerd" l.store "Just Presumed Ham", "Zojuist aangenomen dat dit Ham is" l.store "Ham?", "Ham?" @@ -170,7 +159,6 @@ l.store "Really delete attachment", "Bijlage echt verwijderen" l.store "Add another attachment", "Voeg een andere bijlage toe" - # app/views/admin/content/_drafts.html.erb l.store "Drafts", "Concepten" # app/views/admin/content/_form.html.erb @@ -187,9 +175,7 @@ l.store "Search articles that contain ...", "Zoek artikelen met ..." l.store "Author", "Auteur" l.store "Date", "Datum" - l.store "Feedback", "Feedback" - # app/views/admin/dashboard/_comments.html.erb l.store "Error: can't generate secret token. Security is at risk. Please, change %s content", "" l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "" l.store "Latest Comments", "Laatste reacties" @@ -209,14 +195,11 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Welkom terug, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "%d artikels en %d commentaren zijn geplaatst sinds je laatste bezoek" - l.store "You're running Publify %s", "Je gebruikt Publify %s" l.store "Total posts : %d", "Aantal berichten : %d" l.store "Your posts : %d", "Jouw berichten : %d" l.store "Total comments : %d", "Aantal reacties : %d" l.store "Spam comments : %d", "Spam reacties : %d" - # app/views/admin/feedback/_button.html.erb l.store "Select action", "Kies actie" l.store "Delete Checked Items", "Verwijder aangevinkte reacties" l.store "Delete all spam", "Verwijder alle spam" @@ -227,36 +210,28 @@ l.store "Unapproved comments", "Niet goedgekeurde" l.store "Limit to spam", "Alleen spam" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "Voeg een commentaar toe" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb l.store "This comment by %s was flagged as spam, %s?", "Dit commentaar van %s was gemarkeerd als spam, %s?" - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "Commentaren voor %s" l.store "Comment Author", "Auteur commentaar" l.store "Comment", "Reactie" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Commentaren voor" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "Zoek commentaren en trackbacks die bevatten" l.store "Article", "Artikel" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" l.store "Page settings", "Pagina instellingen" l.store "Permanent link", "Permanente link" - # app/views/admin/pages/destroy.html.erb l.store "Pages", "Pagina's" l.store "Are you sure you want to delete the page", "Weet je zeker dat je deze pagina wilt verwijderen" l.store "Delete this page", "Verwijder deze pagina" - # app/views/admin/pages/index.html.erb l.store "New Page", "Nieuwe pagina" l.store "Manage pages", "Beheer pagina's" @@ -266,7 +241,6 @@ # app/views/admin/resources/_mime_edit.html.erb l.store "Content Type", "Content Type" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Vorige pagina" l.store "Next page", "Volgende pagina" @@ -302,8 +276,6 @@ l.store "Do not index categories", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -329,14 +301,11 @@ l.store "Home", "" l.store "Description template", "" l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" - l.store "Replaced with the post/page excerpt", "" l.store "Replaced with the article categories (comma separated)", "" l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" @@ -344,14 +313,11 @@ l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "Werk instellingen bij" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Commentaren standaard toestaan" l.store "Enable Trackbacks by default", "Trackbacks standaard toestaan" l.store "Enable feedback moderation", "Feedback controle aanzetten" @@ -375,7 +341,6 @@ l.store "Max Links", "Max links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify zal automatisch commentaren en trackbacks verwijderen die meer dan een bepaald aantal links bevatten" l.store "Set to 0 to never reject comments", "Zet op 0 om commentaren nooit te weigeren" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Je blog" @@ -449,14 +414,11 @@ l.store "Get more plugins", "Haal meer thema's op" l.store "Sidebar", "Zijbalk" l.store "Publish changes", "Publiceer wijzigingen" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -582,13 +544,8 @@ l.store "About %s", "Over %s" l.store "This author has not published any article yet", "Deze auteur heeft nog geen artikelen gepubliceerd" - # app/views/comments/show.html.erb l.store "This comment has been flagged for moderator approval.", "Deze reactie is aangemerkt voor goedkeuring." - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "Welkom" l.store "Welcome to your %s blog setup. Just fill in your blog title and your email, and Publify will take care of everything else", "Welkom bij je %s blog setup. Vul een titel voor je blog in, en een e-mailadres, en Publify zorgt voor de rest" @@ -691,7 +648,6 @@ l.store "Blacklist Patterns", "Blacklist patronen" l.store "Choose password", "Kies wachtwoord" l.store "Confirm Classification of Checked Items", "Bevestig classificatie van aangevinkte reacties" - l.store "Content", "Inhoud" l.store "Editing pattern", "Wijzig patroon" l.store "Pattern", "Patroon" l.store "Posts", "Berichten" diff --git a/lang/pl_PL.rb b/lang/pl_PL.rb index b38a86305f..3e7e3a58c1 100644 --- a/lang/pl_PL.rb +++ b/lang/pl_PL.rb @@ -22,21 +22,12 @@ l.store "Article was successfully created", "" l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" - l.store "All spam have been deleted", "" - l.store "Comment was successfully created.", "" - l.store "Comment was successfully updated.", "" - - # app/controllers/admin/pages_controller.rb - l.store "Page was successfully created.", "" - l.store "Page was successfully updated.", "" # app/controllers/admin/profiles_controller.rb l.store "User was successfully updated.", "" @@ -77,8 +68,6 @@ l.store "Archives for ", "" l.store ", Articles for ", "" - # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -102,24 +91,12 @@ l.store "Back to overview", "Wróć do podglądu" l.store "Tag", "" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "brak artykułów" - l.store "1 article", "1 artykuł" - l.store "%d articles", "%d artykuły" - - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "%d komentarze" - l.store "no comments", "brak komentarzy" - l.store "1 comment", "1 komentarz" l.store "no trackbacks", "brak trackbacków" l.store "1 trackback", "1 trackback" l.store "%d trackbacks", "%d trackbacki" @@ -138,16 +115,11 @@ # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" - l.store "Reorder", "Zmień porządek" l.store "Sort alphabetically", "Sortuj alfabetycznie" @@ -172,9 +144,7 @@ l.store "Author", "Autor" l.store "Date", "Data" - l.store "Feedback", "Komentarze" - # app/views/admin/dashboard/_comments.html.erb l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "" l.store "Latest Comments", "Ostatnie komentarze" l.store "By %s on %s", "Przez %s odnośnie %s" @@ -193,63 +163,34 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Witamy spowrotem, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "%d artykułów i %d komentarzy zostało opublikowanych od twojego ostaniego połączenia" - l.store "You're running Publify %s", "Działasz na Publify %s" l.store "Total posts : %d", "Liczba wszystkich wpisów: %d" l.store "Your posts : %d", "Twoje wpisy: %d" l.store "Total comments : %d", "Liczba wszystkich komentarzy: %d" l.store "Spam comments : %d", "Niechciane komentarze (spam): %d" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" - l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" - l.store "Limit to spam", "Pokaż spam" - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Strona web" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb - l.store "Comments for %s", "" - l.store "Comment Author", "" - l.store "Comment", "" - - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Komentarze do" - # app/views/admin/feedback/index.html.erb - l.store "Search Comments and Trackbacks that contain", "" l.store "Article", "" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages", "Strony" l.store "Are you sure you want to delete the page", "Czy na pewno chcesz usunąć tą stronę" l.store "Delete this page", "Usuń tą stronę" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" # app/views/admin/resources/_mime_edit.html.erb l.store "Content Type", "Typ treści" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Poprzednia strona" l.store "Next page", "Następna strona" @@ -284,8 +225,6 @@ l.store "Indexing", "" l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" - l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Google", "" l.store "Google Analytics", "" @@ -309,10 +248,8 @@ # app/views/admin/seo/titles.html.erb l.store "Description template", "" l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" @@ -322,14 +259,11 @@ l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced with the current page number", "" l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Komentarze domyślnie włączone" l.store "Enable Trackbacks by default", "Trackbacki domyślnie włączone" l.store "Enable feedback moderation", "Włącz moderację komentarzy" @@ -353,7 +287,6 @@ l.store "Max Links", "Max. liczba łączy" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify automatycznie odrzuca komentarze i trackbacki, które zawierają większą, niż podana, liczbę łączy" l.store "Set to 0 to never reject comments", "Ustaw 0 by komentarze były zawsze akceptowane" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Twój blog" @@ -425,14 +358,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Publikuj zmiany" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" - l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" l.store "Static content, like links to other sites, advertisements, or blog meta-information", "" @@ -488,7 +418,6 @@ # app/views/admin/users/index.html.erb l.store "New User", "Nowy użytkownik" - l.store "Comments", "" l.store "State", "" l.store "%s user", "" l.store "Manage users", "" @@ -500,11 +429,9 @@ l.store "Posted by", "Opublikowane przez" l.store "Continue reading", "Czytaj dalej" - # app/views/articles/_comment.html.erb l.store "said", "powiedział" l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Ten komentarz oczekuje na akceptację. Nie ukaże się do czasu zaakceptowania przez autora." - # app/views/articles/_comment_box.html.erb l.store "Your name", "Twoja nazwa" l.store "Your email", "Twój email" l.store "Your message", "Treść" @@ -512,9 +439,6 @@ l.store "Preview comment", "Obejrzyj komentarz" l.store "leave url/email", "" - # app/views/articles/_comment_failed.html.erb - l.store "Oops, something wrong happened, the comment could not be saved", "" - # app/views/articles/_trackback.html.erb l.store "From", "Z" @@ -522,7 +446,6 @@ l.store "No articles found", "Brak artykułów" l.store "posted in", "" - # app/views/articles/comment_preview.html.erb l.store "is about to say", "zaraz powie" # app/views/articles/groupings.html.erb @@ -545,13 +468,6 @@ l.store "Twitter:", "" l.store "About %s", "" - # app/views/comments/show.html.erb - l.store "This comment has been flagged for moderator approval.", "" - - # app/views/errors/404.html.erb - l.store "Page not found", "" - l.store "The page you are looking for has moved or does not exist.", "" - # app/views/setup/index.html.erb l.store "Welcome", "" @@ -575,14 +491,8 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "comment", "" l.store "trackback", "" - - # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" - - # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -591,9 +501,6 @@ l.store "Markdown enabled", "" l.store "required", "" - # test/mocks/themes/typographic/views/articles/_comment_list.html.erb - l.store "No comments", "" - # test/mocks/themes/typographic/views/shared/_search.html.erb l.store "Searching", "" @@ -609,12 +516,10 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" - # themes/true-blue-3/views/articles/_comment_form.html.erb l.store "Email address", "" l.store "Your website", "" diff --git a/lang/pt_BR.rb b/lang/pt_BR.rb index 51da46b881..12a4a27e32 100644 --- a/lang/pt_BR.rb +++ b/lang/pt_BR.rb @@ -23,7 +23,6 @@ l.store "Article was successfully created", "Artigo criado com sucesso" l.store "Article was successfully updated.", "Artigo atualizado com sucesso" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "Deletado" l.store "Not found", "Não encontrado" l.store "Deleted %d item(s)", "%d iten(s) deletados" @@ -104,24 +103,15 @@ l.store "Back to overview", "Voltar para o overview" l.store "Tag", "Tag" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "sem artigos" - l.store "1 article", "1 artigo" - l.store "%d articles", "%d artigos" - # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "Excluir esse rascunho" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "Exibir conversa" l.store "Flag as %s", "Marcar como %s" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "%d comentários" - l.store "no comments", "sem comentários" - l.store "1 comment", "1 comentário" l.store "no trackbacks", "sem trackbacks" l.store "1 trackback", "" l.store "%d trackbacks", "%d trackbacks" @@ -143,15 +133,12 @@ l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Você precisa de um permalink com um identificador : %%day%%, %%month%%, %%year%%, %%title%%" l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Não pode terminar em .rss ou .atom. Esses formatos são reservados para URLs de feed" - # app/models/feedback/states.rb l.store "Unclassified", "Não classificado" l.store "Just Presumed Ham", "Ham apenas presumido" l.store "Ham?", "" l.store "Just Marked As Ham", "Apenas marcado como Ham" l.store "Ham", "" - l.store "Spam?", "" l.store "Just Marked As Spam", "Apenas marcado como Spam" - l.store "Spam", "" # app/views/accounts/login.html.erb l.store "Submit", "Enviar" @@ -173,7 +160,6 @@ l.store "Really delete attachment", "Realmente deletar attachment" l.store "Add another attachment", "Adicionar outro attachment" - # app/views/admin/content/_drafts.html.erb l.store "Publish at", "Publicado el" # app/views/admin/content/destroy.html.erb @@ -197,55 +183,32 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" l.store "Total comments : %d", "" - l.store "Spam comments : %d", "" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "Limitar a spam" - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" - l.store "Comment", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Comentarios para" - # app/views/admin/feedback/index.html.erb l.store "Article", "" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages","Páginas" l.store "Are you sure you want to delete the page", "¿Estás seguro que deseas eliminar esta página?" l.store "Delete this page", "Eliminar esta página" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" @@ -288,7 +251,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Google", "" l.store "Google Analytics", "" @@ -315,7 +277,6 @@ l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -330,12 +291,9 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Habilitar comentarios por default" l.store "Enable Trackbacks by default", "Habilitar Trackbacks por default" l.store "Enable feedback moderation", "Habilitar moderación de comentarios y trackbacks" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.", "" l.store "Comments filter", "Filtro de comentarios" l.store "Enable gravatars", "Habilitar gravatars" l.store "Show your email address", "Mostrar tu dirección de email" @@ -355,7 +313,6 @@ l.store "Max Links", "Máximo número de links" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify rechazará automáticamente los comentarios y trackbacks que contengan más de un cierto número de links en ellos" l.store "Set to 0 to never reject comments", "Introducir 0 para nunca rechazar comentarios" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Tu sitio" @@ -424,13 +381,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "Publicar cambios" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" @@ -572,14 +527,12 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "comment", "" l.store "trackback", "" # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -603,7 +556,6 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" diff --git a/lang/ro_RO.rb b/lang/ro_RO.rb index f8818dde81..f260e7f38a 100644 --- a/lang/ro_RO.rb +++ b/lang/ro_RO.rb @@ -19,15 +19,12 @@ l.store "Article was successfully created", "" l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" - l.store "All spam have been deleted", "" l.store "Comment was successfully created.", "" l.store "Comment was successfully updated.", "" @@ -39,13 +36,11 @@ l.store "User was successfully updated.", "" # app/controllers/admin/resources_controller.rb - l.store "Error occurred while updating Content Type.", "" l.store "complete", "" l.store "File uploaded: ", "" l.store "Unable to upload", "" l.store "Metadata was successfully updated.", "" l.store "Not all metadata was defined correctly.", "" - l.store "Content Type was successfully updated.", "" # app/controllers/admin/settings_controller.rb l.store "Please review and save the settings before continuing", "" @@ -76,7 +71,6 @@ l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -94,16 +88,7 @@ l.store "or", "sau" l.store "Save", "Salvează" l.store "Edit", "Editare" - - # app/helpers/application_helper.rb - l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" - l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "fără comentarii" - l.store "1 comment", "" l.store "no trackbacks", "fără retrolegături" - l.store "1 trackback", "" - l.store "%d trackbacks", "" # app/helpers/content_helper.rb l.store "Posted in", "" @@ -112,23 +97,17 @@ l.store "%d posts", "" # app/models/article.rb - l.store "Original article writen by", "" - l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" l.store "Reorder", "Ordonează" l.store "Sort alphabetically", "Ordonează alfabetic" @@ -165,53 +144,28 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "" l.store "Total posts : %d", "" l.store "Your posts : %d", "" l.store "Total comments : %d", "" - l.store "Spam comments : %d", "" - # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" l.store "Unapproved comments", "" l.store "Limit to spam", "Doar spam" - - # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Adresa" - - # app/views/admin/feedback/_spam.html.erb - l.store "This comment by %s was flagged as spam, %s?", "" - - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" - l.store "Comment", "" - - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "Comentariile la" - - # app/views/admin/feedback/index.html.erb - l.store "Article", "" - - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" - l.store "Page settings", "" l.store "Permanent link", "" - # app/views/admin/pages/destroy.html.erb l.store "Pages","Pagini" l.store "Are you sure you want to delete the page", "Ești sigur că dorești să ștergi această pagină" l.store "Delete this page", "Șterge această pagină" # app/views/admin/pages/index.html.erb - l.store "New Page", "" l.store "Manage pages", "" # app/views/admin/profiles/index.html.erb @@ -241,13 +195,11 @@ # app/views/admin/resources/index.html.erb l.store "Filename", "Nume de fișier" l.store "Browse", "" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" @@ -269,7 +221,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -297,7 +248,6 @@ l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -311,13 +261,9 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - - # app/views/admin/settings/feedback.html.erb - l.store "Spam protection", "" l.store "Enable comments by default", "Implicit comentariile să fie active" l.store "Enable Trackbacks by default", "Implicit retrolegăturile să fie active" l.store "Enable feedback moderation", "Activează moderarea comentariilor" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.", "" l.store "Comments filter", "Filtru pentru comentarii" l.store "Enable gravatars", "Activează gravataruri" l.store "Show your email address", "Arată adresa ta de email" @@ -337,7 +283,6 @@ l.store "Max Links", "Număr maxim de legături" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify va respinge automat comentarii și retrolegături care conțin mai mult decît un anumit număr de legături" l.store "Set to 0 to never reject comments", "Comentariile nu vor fi respinse niciodată dacă alegi valoarea 0" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "Site" @@ -543,15 +488,12 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "Read full article", "" - l.store "comment", "" l.store "trackback", "" # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -572,7 +514,6 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", "" @@ -753,7 +694,6 @@ l.store "Write an Article", "Scrie un articol" l.store "You are now logged out of the system", "Ați ieșit din aplicație" l.store "You can add it to the following categories", "Îl puteți adăuga următoarelor categorii" - l.store "You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "" l.store "You can optionally disable non-Ajax comments. Publify will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Opțional, puteți dezactiva comentariile non-AJAX. Publify va folosi întotdeauna AJAX pentru trimiterea comentariilor dacă funcționează Javascript la utilizator, astfel că orice comentariu care nu vine prin AJAX trebuie să vină fie de la spammeri, fie de la vizitatori fără Javascript." l.store "by", "de" l.store "on", "la" diff --git a/lang/ru_RU.rb b/lang/ru_RU.rb index 6af6cf9842..7bfc11b08a 100644 --- a/lang/ru_RU.rb +++ b/lang/ru_RU.rb @@ -37,21 +37,9 @@ l.store "Back to list", "Назад к списку" l.store "Tag", "Тег" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "нет постов" - l.store "1 article", "1 пост" - l.store "%d articles", "постов: %d" - # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "Удалить этот черновик" - - # app/helpers/application_helper.rb - l.store "%%d. %%b", "" l.store "Are you sure you want to delete this %s?", "Вы уверены, что хотите удалить %s?" - l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" - l.store "%d comments", "комментариев: %d" - l.store "no comments", "нет комментариев" - l.store "1 comment", "1 комментарий" # app/models/article.rb l.store "Original article writen by", "Автор оригинальной статьи —" @@ -83,7 +71,6 @@ l.store "Author", "Автор" l.store "Date", "Дата" - l.store "Feedback", "Комментарии" # app/views/admin/dashboard/_comments.html.erb l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "По соображениям безопасности вам следует перезапустить ваше Publify-приложение. Приятного блогерства!" @@ -95,8 +82,6 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "Добро пожаловать снова, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "%d постов и %d комментариев получено с вашего последнего посещения" # XXX: connexion? - l.store "You're running Publify %s", "Работает Publify %s" l.store "Total posts : %d", "Всего постов: %d" l.store "Your posts : %d", "Ваших постов: %d" l.store "Total comments : %d", "Всего комментариев: %d" diff --git a/lang/zh_CN.rb b/lang/zh_CN.rb index 35548b8861..06700a1cf1 100644 --- a/lang/zh_CN.rb +++ b/lang/zh_CN.rb @@ -21,7 +21,6 @@ l.store "Article was successfully created", "文章创建成功" l.store "Article was successfully updated.", "文章更新成功" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "删除" l.store "Not found", "不存在" l.store "Deleted %d item(s)", "删除%d项" @@ -102,24 +101,15 @@ l.store "Back to overview", "回到概览" l.store "Tag", "" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "没有文章" - l.store "1 article", "一篇文章" - l.store "%d articles", "%d篇文章" - # app/helpers/admin/content_helper.rb l.store "Destroy this draft", "删除草稿" - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "显示对话" l.store "Flag as %s", "标记为%s" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "%d条评论" - l.store "no comments", "没有评论" - l.store "1 comment", "一条评论" l.store "no trackbacks", "没有引用" l.store "1 trackback", "一条引用" l.store "%d trackbacks", "%d条引用" @@ -131,7 +121,6 @@ l.store "%d posts", "%d篇文章" # app/models/article.rb - l.store "Original article writen by", "" l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" @@ -139,15 +128,12 @@ # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" # app/views/accounts/login.html.erb l.store "Submit", "提交" @@ -188,7 +174,6 @@ l.store "Search articles that contain ...", "搜索包含内容的文章 ..." l.store "Author", "作者" l.store "Date", "日期" - l.store "Feedback", "回应" # app/views/admin/dashboard/_comments.html.erb l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "" @@ -209,8 +194,6 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "欢迎回來, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "在你上次离开后,新增%d篇文章和%d个评价" - l.store "You're running Publify %s", "你正在使用的是Publify %s" l.store "Total posts : %d", "博文总计:%d" l.store "Your posts : %d", "你的文章:%d" l.store "Total comments : %d", "评论总计:%d" @@ -218,30 +201,22 @@ # app/views/admin/feedback/_button.html.erb l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "限制垃圾郵件" - # app/views/admin/feedback/_form.html.erb l.store "Add a comment", "" l.store "Url", "Url" - # app/views/admin/feedback/_spam.html.erb l.store "This comment by %s was flagged as spam, %s?", "" - # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" l.store "Comment", "" - # app/views/admin/feedback/edit.html.erb l.store "Comments for", "做出评论" - # app/views/admin/feedback/index.html.erb l.store "Search Comments and Trackbacks that contain", "" l.store "Article", "" @@ -303,7 +278,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -327,10 +301,8 @@ l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "Search results", "" l.store "Help on title settings", "" - l.store "Replaced with the title of the article/page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the post/page excerpt", "" @@ -347,7 +319,6 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb l.store "Spam protection", "" l.store "Enable comments by default", "預設為可以回應" l.store "Enable Trackbacks by default", "預設為可以引用" @@ -372,7 +343,6 @@ l.store "Max Links", "最大的連結值" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify會自動回絕评论和引用,包含某些可靠的連結總數" l.store "Set to 0 to never reject comments", "設定0回絕不回絕的评论" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "你的博客" @@ -444,13 +414,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "公開變更" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" diff --git a/lang/zh_TW.rb b/lang/zh_TW.rb index 45cc520374..d3b1c9711f 100644 --- a/lang/zh_TW.rb +++ b/lang/zh_TW.rb @@ -19,12 +19,10 @@ l.store "Article was successfully created", "" l.store "Article was successfully updated.", "" - # app/controllers/admin/feedback_controller.rb l.store "Deleted", "" l.store "Not found", "" l.store "Deleted %d item(s)", "" l.store "Marked %d item(s) as Ham", "" - l.store "Marked %d item(s) as Spam", "" l.store "Confirmed classification of %s item(s)", "" l.store "Not implemented", "" l.store "All spam have been deleted", "" @@ -76,7 +74,6 @@ l.store ", Articles for ", "" # app/controllers/grouping_controller.rb - l.store "page", "" l.store "everything about", "" # app/helpers/admin/base_helper.rb @@ -98,24 +95,12 @@ l.store "Back to overview", "回到概覽" l.store "Tag", "" - # app/helpers/admin/categories_helper.rb - l.store "no articles", "" - l.store "1 article", "" - l.store "%d articles", "" - - # app/helpers/admin/content_helper.rb - l.store "Destroy this draft", "" - - # app/helpers/admin/feedback_helper.rb l.store "Show conversation", "" l.store "Flag as %s", "" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" l.store "%%d. %%b", "" - l.store "%d comments", "" - l.store "no comments", "沒有評論" - l.store "1 comment", "" l.store "no trackbacks", "沒有引用" l.store "1 trackback", "" l.store "%d trackbacks", "" @@ -127,23 +112,17 @@ l.store "%d posts", "" # app/models/article.rb - l.store "Original article writen by", "" - l.store "direct link to this article", "" l.store "If you are reading this article elsewhere than", "" l.store "it has been illegally reproduced and without proper authorization", "" # app/models/blog.rb l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "" - # app/models/feedback/states.rb l.store "Unclassified", "" l.store "Just Presumed Ham", "" l.store "Ham?", "" l.store "Just Marked As Ham", "" l.store "Ham", "" - l.store "Spam?", "" - l.store "Just Marked As Spam", "" - l.store "Spam", "" l.store "Reorder", "重新排序" @@ -172,7 +151,6 @@ # app/views/admin/content/index.html.erb l.store "Author", "作者" - l.store "Feedback", "回應" # app/views/admin/dashboard/_comments.html.erb l.store "For security reasons, you should restart your Publify application. Enjoy your blogging experience.", "" @@ -193,8 +171,6 @@ # app/views/admin/dashboard/_welcome.html.erb l.store "Welcome back, %s!", "歡迎回來, %s!" - l.store "%d articles and %d comments were posted since your last connexion", "" - l.store "You're running Publify %s", "你現在是使用Publify %s" l.store "Total posts : %d", "發文總計:%d" l.store "Your posts : %d", "你的發文:%d" l.store "Total comments : %d", "評論總計:%d" @@ -203,16 +179,12 @@ # app/views/admin/feedback/_button.html.erb l.store "Select action", "" l.store "Delete Checked Items", "" - l.store "Delete all spam", "" - l.store "Mark Checked Items as Spam", "" l.store "Mark Checked Items as Ham", "" l.store "All comments", "" l.store "Limit to ham", "" - l.store "Unapproved comments", "" l.store "Limit to spam", "限制垃圾郵件" # app/views/admin/feedback/_form.html.erb - l.store "Add a comment", "" l.store "Url", "Url" # app/views/admin/feedback/_spam.html.erb @@ -221,7 +193,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" l.store "Comment Author", "" - l.store "Comment", "" # app/views/admin/feedback/edit.html.erb l.store "Comments for", "做出評論" @@ -236,10 +207,6 @@ l.store "Are you sure you want to delete the page", "你確定要刪除此頁?" l.store "Delete this page", "刪除此頁" - # app/views/admin/pages/index.html.erb - l.store "New Page", "" - l.store "Manage pages", "" - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" @@ -282,7 +249,6 @@ l.store "Robots.txt", "" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "" l.store "Use dofollow in comments", "" - l.store "You may want to moderate feedback when turning this on", "" l.store "Use canonical URL", "" l.store "Read more about %s", "" l.store "Google", "" @@ -307,10 +273,8 @@ # app/views/admin/seo/titles.html.erb l.store "Description template", "" l.store "Articles", "" - l.store "Pages", "" l.store "Paginated archives", "" l.store "Dated archives", "" - l.store "Author page", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" @@ -325,7 +289,6 @@ # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" - # app/views/admin/settings/feedback.html.erb l.store "Spam protection", "" l.store "Enable comments by default", "預設為可以回應" l.store "Enable Trackbacks by default", "預設為可以引用" @@ -350,7 +313,6 @@ l.store "Max Links", "最大的連結值" l.store "Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Publify會自動回絕評論和引用,包含某些可靠的連結總數" l.store "Set to 0 to never reject comments", "設定0回絕不回絕的評論" - l.store "Feedback settings", "" # app/views/admin/settings/index.html.erb l.store "Your blog", "你的部落格" @@ -421,13 +383,11 @@ l.store "Get more plugins", "" l.store "Sidebar", "" l.store "Publish changes", "公開變更" - l.store "Adds sidebar links to any Amazon.com books linked in the body of the page", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" l.store "Livesearch", "" l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" - l.store "Page", "" l.store "Show pages for this blog", "" l.store "Adds basic search sidebar in your Publify blog", "" l.store "Static", "" @@ -570,15 +530,12 @@ l.store "Atom feed", "" l.store "You can leave a %s", "" l.store "or a %s from your own site", "" - l.store "Read full article", "" - l.store "comment", "" l.store "trackback", "" # test/mocks/themes/typographic/views/articles/_comment.html.erb l.store "later", "" # test/mocks/themes/typographic/views/articles/_comment_form.html.erb - l.store "Leave a comment", "" l.store "Name %s", "" l.store "enabled", "" l.store "never displayed", "" @@ -602,7 +559,6 @@ # themes/true-blue-3/helpers/theme_helper.rb l.store "You are here: ", "" - l.store "%d comment", "" # themes/true-blue-3/views/articles/_article.html.erb l.store "%%a, %%d %%b %%Y %%H:%%M", ""