diff --git a/app/views/admin/content/_form.html.erb b/app/views/admin/content/_form.html.erb index 14a2c1a031..aa5d5286fd 100644 --- a/app/views/admin/content/_form.html.erb +++ b/app/views/admin/content/_form.html.erb @@ -8,10 +8,10 @@ <%= _("#{controller.action_name.to_s.capitalize} article") %> - <%= link_to(_("Preview"), {controller: '/articles', action: 'preview', id: @article.id}, {target: 'new', class: 'btn'}) if @article.id %> + <%= link_to(t(".preview"), {controller: '/articles', action: 'preview', id: @article.id}, {target: 'new', class: 'btn'}) if @article.id %> - - <%= save( _("Publish")) %> + + <%= submit_tag(t(".publish"), :class => 'btn btn-primary') %> @@ -21,13 +21,13 @@
- <%= text_field 'article', 'title', :class => 'input-block-level', :placeholder => _('Title') %> + <%= text_field 'article', 'title', :class => 'input-block-level', :placeholder => t('.title') %>
<%= render('images', { :images => @images}) unless @images.empty? %>
- <%= _('Images')%> + <%= t('.images')%>
@@ -40,22 +40,22 @@
-

<%= _("Excerpt") %>

+

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

<%= text_area 'article', 'excerpt', {:height => '150', :class => 'input-block-level', :rows => '5'} %> - <%=_("Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself") %> + <%=t(".excerpt_explaination") %>
- <%= _("Publish settings") %> + <%= t(".publish_settings") %>
-

<%= _("Status") %>: <%= _(@article.state.to_s.downcase) %> - <%= _('Change')%> +

<%= t(".status") %>: <%= _(@article.state.to_s.downcase) %> + <%= t('.change')%>

-

<%= _("Comments are %s and trackbacks are %s", content_tag(:strong, get_feedback_status(@article.allow_comments)), content_tag(:strong, get_feedback_status(@article.allow_pings))) %> - <%= _('Change')%> +

<%= t(".allowed_comments_and_trackbacks", allow_comment: content_tag(:strong, get_feedback_status(@article.allow_comments)), allow_trackback: content_tag(:strong, get_feedback_status(@article.allow_pings))) %> + <%= t('.change')%>

-

<%= _("Published") %> <%= publish_now_or_already_published @article %> - <%= _('Change')%> +

<%= t(".published") %> <%= publish_now_or_already_published @article %> + <%= t('.change')%>

-

<%= _("Visibility") %>: <%= @article.password.nil? || @article.password.empty? ? _("public") : _("protected") %> - <%= _('Change')%> +

<%= t(".visibility") %>: <%= @article.password.nil? || @article.password.empty? ? t(".public") : t(".protected") %> + <%= t('.change')%>

- <%= _("Permalink") %>: - <%= _('Change')%> + <%= t(".permalink") %>: + <%= t('.change')%>
- <%= _("Article filter") %>: <%= _("#{@article.text_filter.description}") %> - <%= _('Change')%> + <%= t(".article_filter") %>: <%= _("#{@article.text_filter.description}") %> + <%= t('.change')%>
@@ -133,12 +133,12 @@
<%- if @article.id.present? && @article.state.to_s.downcase != 'draft' %> <%- if current_user.admin? || current_user.id == @article.user_id %> - <%= link_to(_("delete"), { action: 'destroy', id: @article.id }, data: {confirm: _("Are you sure?")}, method: :post, class: 'btn danger', title: _("Delete content")) %> + <%= link_to(t(".delete"), { action: 'destroy', id: @article.id }, data: {confirm: t(".are_you_sure")}, method: :post, class: 'btn danger', title: t(".delete_content")) %> <%- end %> <%- end %> <%= link_to_destroy_draft @article %> - - <%= submit_tag(_("Publish"), :class => 'btn btn-primary') %> + + <%= submit_tag(t(".publish"), :class => 'btn btn-primary') %>
@@ -147,14 +147,14 @@
-

<%= _("Categories") %>

+

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

<%= render 'categories' %>
-

<%= _("Tags") %>

+

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

<%= text_field 'article', 'keywords', {:autocomplete => 'off', :class => 'input-block-level'} %> -

<%=_("Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".") %>

+

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

<%= auto_complete_field 'article_keywords', { :url => { :action => "auto_complete_for_article_keywords"}, :method => 'get', :tokens => ','}%>
diff --git a/config/locales/da.yml b/config/locales/da.yml index 01b619b7c9..aae40f25eb 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -1,6 +1,29 @@ da: admin: content: + form: + public: "Public" + publish: "Udgiv" + title: "Titel" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Status" + published: "Offentliggjort" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Tillad Trackbacks" + allow_comments: "Tillad kommentarer" + ok: "OK" + visibility: "Visibility" + password: "Kodeord" + permalink: "Permanent link" + article_filter: "Artikelfilter" + save_as_draft: "Save as draft" + categories: "Kategorier" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/de.yml b/config/locales/de.yml index 0d6a63f60a..95b5eda16a 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1,6 +1,29 @@ de: admin: content: + form: + public: "Public" + publish: "Veröffentlichen" + title: "Titel" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Status" + published: "Veröffentlicht" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Trackbacks erlauben" + allow_comments: "Kommentare erlauben" + ok: "OK" + visibility: "Visibility" + password: "Passwort" + permalink: "Permanenter Link" + article_filter: "Textfilter für Artikel" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/en.yml b/config/locales/en.yml index 22fc6214fd..70329b6ffd 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1,6 +1,29 @@ en: admin: content: + form: + public: "Public" + publish: "Publish" + title: "Title" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Status:" + published: "Published" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Allow trackbacks" + allow_comments: "Allow comments" + ok: "OK" + visibility: "Visibility" + password: "Password" + permalink: "Permalink" + article_filter: "Article filter" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/es-MX.yml b/config/locales/es-MX.yml index 1b8e06663e..ada668fa68 100644 --- a/config/locales/es-MX.yml +++ b/config/locales/es-MX.yml @@ -1,6 +1,29 @@ es-MX: admin: content: + form: + public: "Public" + publish: "Publicar" + title: "Título" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Estado" + published: "Publicado" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Se permiten trackbacks" + allow_comments: "Se permiten comentarios" + ok: "OK" + visibility: "Visibility" + password: "Contraseña" + permalink: "Link permanente" + article_filter: "Filtro de artículo" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index bfc054bb30..d17efd1c58 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1,6 +1,29 @@ fr: admin: content: + form: + public: "Public" + publish: "Publier" + title: "Titre" + images: "Images" + excerpt: "Extrait" + excerpt_explaination: "Les résumés vous permettent d'afficher un texte descriptif de votre article à la place de ce dernier sur la page d'accueil de votre blog" + publish_settings: "Paramètres de publication" + status: "État" + published: "Publié" + allowed_comments_and_trackbacks: "Les commentaires sont %{allow_comment} et les rétroliens %{allow_trackback}" + change: "Modifier" + allow_trackbacks: "Autoriser les rétroliens" + allow_comments: "Autoriser les commentaires" + ok: "OK" + visibility: "Visibilité" + password: "Mot de passe" + permalink: "Lien permanent" + article_filter: "Mise en forme des billets" + save_as_draft: "Sauver comme brouillon" + categories: "Catégories" + tags: "Labels" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "Nouvelle catégorie" categories: diff --git a/config/locales/he-IL.yml b/config/locales/he-IL.yml index 341ca9d1af..0ceda50a73 100644 --- a/config/locales/he-IL.yml +++ b/config/locales/he-IL.yml @@ -1,6 +1,29 @@ he-IL: admin: content: + form: + public: "Public" + publish: "פרסם" + title: "כותרת" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "מצב" + published: "פורסם" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "אפשר עוקבים חזרה" + allow_comments: "אפשר תגובות" + ok: "OK" + visibility: "Visibility" + password: "Password" + permalink: "קישור קבוע" + article_filter: "מסנן הכתבה" + save_as_draft: "שמור טיוטה" + categories: "קטגוריות" + tags: "תוויות" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/it.yml b/config/locales/it.yml index 00bf3c0d22..9384992321 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1,6 +1,29 @@ it: admin: content: + form: + public: "Public" + publish: "Pubblica" + title: "Titolo" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Stato" + published: "Pubblicato" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Permetti trackbacks" + allow_comments: "Permetti commenti" + ok: "OK" + visibility: "Visibility" + password: "Password" + permalink: "Permalink" + article_filter: "Filtra articolo" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index b0de144b93..6729de732a 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -1,6 +1,29 @@ ja: admin: content: + form: + public: "Public" + publish: "公開" + title: "タイトル" + images: "Images" + excerpt: "要約" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "ステータス" + published: "公開済み" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "トラックバックを許可" + allow_comments: "コメントを許可" + ok: "OK" + visibility: "Visibility" + password: "パスワード" + permalink: "パーマリンク" + article_filter: "記事フィルター" + save_as_draft: "下書きとして保存" + categories: "カテゴリ" + tags: "タグ" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 3089174bfa..14fa6579ff 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1,6 +1,29 @@ lt: admin: content: + form: + public: "Public" + publish: "Publikuoti" + title: "Pavadinimas" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Statusas" + published: "Publikuotas" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Leisti dienoraščių nuorodas" + allow_comments: "Leisti komentarus" + ok: "OK" + visibility: "Visibility" + password: "slaptažodis" + permalink: "Nuoroda" + article_filter: "Straipsnių filtras" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Žymės" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/nb-NO.yml b/config/locales/nb-NO.yml index b3d714e491..314fecb095 100644 --- a/config/locales/nb-NO.yml +++ b/config/locales/nb-NO.yml @@ -1,6 +1,29 @@ nb-NO: admin: content: + form: + public: "Public" + publish: "Publiser" + title: "Tittel" + images: "Bilder" + excerpt: "Utdrag" + excerpt_explaination: "Utdrag er oppsummeringer som vises på bloggsiden, men ikke i artikkelen" + publish_settings: "Publiseringsinnstillinger" + status: "Status" + published: "Publisert" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Tillat Trackbacks" + allow_comments: "Tillat kommentarer" + ok: "OK" + visibility: "Visibility" + password: "Passord" + permalink: "permalenke" + article_filter: "artikkelfilter" + save_as_draft: "Lagre som utkast" + categories: "Kategorier" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "Ny kategori" categories: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index a4746b6f33..30e9614b27 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -1,6 +1,29 @@ nl: admin: content: + form: + public: "Public" + publish: "Publiceer" + title: "Title" + images: "Afbeeldingen" + excerpt: "Uittreksel" + excerpt_explaination: "Uittreksels zijn een samenvatting van een post die alleen op de homepage staat, maar niet in de post zelf staan" + publish_settings: "Publicatie instellingen" + status: "Status" + published: "Gepubliceerd" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Sta trackbacks toe" + allow_comments: "Sta reacties toe" + ok: "OK" + visibility: "Visibility" + password: "Wachtwoord" + permalink: "Permalink" + article_filter: "Artikel filter" + save_as_draft: "Opslaan als concept" + categories: "Categoriën" + tags: "Trefwoorden" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "Nieuwe categorie" categories: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index ffc7a28621..320420671b 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -1,6 +1,29 @@ pl: admin: content: + form: + public: "Public" + publish: "Publikuj" + title: "Tytuł" + images: "Grafika" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Stan" + published: "Opublikowane" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Zezwól na podawanie trackbacków" + allow_comments: "Zezwól na dodawanie komentarzy" + ok: "OK" + visibility: "Visibility" + password: "Hasło" + permalink: "Permalink" + article_filter: "Filtr artykułów" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tagi" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "Utwórz nową kategorię" categories: diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index fd9e344728..e0e50d647d 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -15,6 +15,29 @@ pt-BR: admin: content: + form: + public: "Public" + publish: "Publicar" + title: "Título" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Configurações de publicação" + status: "Estado" + published: "Publicado" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Permitir trackbacks" + allow_comments: "Permitir comentários" + ok: "OK" + visibility: "Visibility" + password: "Senha" + permalink: "Link permanente" + article_filter: "Filtro de artículo" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separe as tags com vírgulas. Use áspas duplas (") em palavras compostas, ex: opera-house." categories: new_category: "Nova Categoria" categories: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 2aa806bf61..0dbdc542bf 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -1,6 +1,29 @@ ro: admin: content: + form: + public: "Public" + publish: "Publică" + title: "Titlu" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "Status" + published: "Publicat" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Se permit retrolegături" + allow_comments: "Se permit comentarii" + ok: "OK" + visibility: "Visibility" + password: "Parola" + permalink: "Legătură permanentă" + article_filter: "Filtru pentru articole" + save_as_draft: "Save as draft" + categories: "Categories" + tags: "Tags" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index a39284326e..77817ddbba 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1,6 +1,29 @@ ru: admin: content: + form: + public: "Public" + publish: "Опубликовать" + title: "Заголовок" + images: "Images" + excerpt: "Выдержка" + excerpt_explaination: "Выдержка — это анонс поста, который будет отображаться только на главной странице, и не будет присутствовать при просмотре полного поста" + publish_settings: "Настройки публикации" + status: "Status:" + published: "Опубликован" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "Allow trackbacks" + allow_comments: "Allow comments" + ok: "OK" + visibility: "Visibility" + password: "Пароль" + permalink: "Постоянная ссылка" + article_filter: "Article filter" + save_as_draft: "Сохранить как черновик" + categories: "Категории" + tags: "Теги" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "Новая категория" categories: diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index f63738a1c2..b4ecca2292 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -1,6 +1,29 @@ zh-CN: admin: content: + form: + public: "Public" + publish: "发布" + title: "Title" + images: "Images" + excerpt: "摘要" + excerpt_explaination: "摘要对文章的总结,只会显示在首页,不会出现在文章正文。" + publish_settings: "发布设定" + status: "状态" + published: "已发表" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "允许引用" + allow_comments: "允许评论" + ok: "OK" + visibility: "Visibility" + password: "密码" + permalink: "固定链接" + article_filter: "Article filter" + save_as_draft: "保存为草稿" + categories: "分类" + tags: "标签" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "创建分类" categories: diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 992e117b58..f7348cbe50 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1,6 +1,29 @@ zh-TW: admin: content: + form: + public: "Public" + publish: "公開" + title: "標題" + images: "Images" + excerpt: "Excerpt" + excerpt_explaination: "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself" + publish_settings: "Publish settings" + status: "身分" + published: "已公開的" + allowed_comments_and_trackbacks: "Comments are %{allow_comment} and trackbacks are %{allow_trackback}" + change: "Change" + allow_trackbacks: "允許引用" + allow_comments: "允許評論" + ok: "OK" + visibility: "Visibility" + password: "密碼" + permalink: "固定連接" + article_filter: "篩選文章" + save_as_draft: "Save as draft" + categories: "分類" + tags: "標示標籤" + tags_explaination: "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house"." categories: new_category: "New Category" categories: diff --git a/lang/da_DK.rb b/lang/da_DK.rb index c2cba5792b..e842154885 100644 --- a/lang/da_DK.rb +++ b/lang/da_DK.rb @@ -97,7 +97,6 @@ l.store "Save", "Gem" l.store "Edit", "Rediger" l.store "Show", "" - l.store "Published", "Offentliggjort" l.store "Unpublished", "Ikke offentliggjort" l.store "Show help on Publify macros", "" l.store "Back to overview", "Tilbage til oversigten" @@ -127,20 +126,17 @@ # app/helpers/content_helper.rb l.store "Posted in", "Offentliggjort i" - l.store "Tags", "Tags" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" # 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 @@ -153,15 +149,12 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Arranger" l.store "Sort alphabetically", "Sortér alfabetisk" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Er du sikker på du vil slette kategorien: " l.store "Delete this category", "Slet denne kategori" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Færdig)" # app/views/admin/content/_attachment.html.erb @@ -174,22 +167,8 @@ # app/views/admin/content/_drafts.html.erb l.store "Drafts", "Kladder" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Tillad kommentarer" - l.store "Allow trackbacks", "Tillad Trackbacks" - l.store "Password:", "Kodeord" - l.store "Publish", "Udgiv" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" l.store "Uploads", "Filer" - l.store "Post settings", "" l.store "Publish at", "Offentliggjort den" - l.store "Article filter", "Artikelfilter" - l.store "Save as draft", "" - l.store "New article", "" # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Er du sikker på du vil slette denne artikel" @@ -239,7 +218,6 @@ l.store "write a page", "skrive en side" # app/views/admin/dashboard/_popular.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 "Most popular", "Mest populære" l.store "Nothing to show yet", "Intet at vise endnu" @@ -281,7 +259,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Status" l.store "Comment Author", "" l.store "Comment", "" @@ -326,10 +303,8 @@ l.store "Delete this file from the webserver?", "Slet denne fil fra webserveren?" l.store "File Uploads", "Fil Uploads" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Filstørrelse" - l.store "Images", "" l.store "right-click for link", "højreklik for link" # app/views/admin/resources/index.html.erb @@ -347,10 +322,6 @@ l.store "Use RSS description", "" 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", "" @@ -369,11 +340,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -382,8 +348,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -391,14 +355,8 @@ 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", "" @@ -407,7 +365,6 @@ 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", "" @@ -459,16 +416,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -525,24 +477,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Vis navn" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -557,7 +503,6 @@ l.store "Account settings", "" l.store "Password confirmation", "Gentag kodeord" l.store "Profile", "Profil" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -650,7 +595,6 @@ 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.", "" @@ -661,7 +605,6 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" @@ -716,7 +659,6 @@ # 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: ", "" @@ -741,10 +683,8 @@ # 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", "" l.store "Next", "" @@ -933,7 +873,6 @@ l.store "add new", "tilføj ny" l.store "by", "af" l.store "on", "på" - l.store "published", "udgivet" l.store "seperate with spaces", "Adskil med mellemrum" l.store "via email", "via e-mail" l.store "with %s Famfamfam iconset %s", "med %s Famfamfam ikoner %s" diff --git a/lang/de_DE.rb b/lang/de_DE.rb index c9d66b9c34..8997934343 100644 --- a/lang/de_DE.rb +++ b/lang/de_DE.rb @@ -4,12 +4,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "" l.store "Login unsuccessful", "" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "" l.store "login", "" l.store "signup", "" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -97,7 +95,6 @@ l.store "Save", "Speichern" l.store "Edit", "Bearbeiten" l.store "Show", "" - l.store "Published", "Veröffentlicht" l.store "Unpublished", "" l.store "Show help on Publify macros", "" l.store "Back to overview", "Zurück zur Übersicht" @@ -127,7 +124,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "" - l.store "Tags", "Tags" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" @@ -140,7 +136,6 @@ 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 @@ -153,15 +148,12 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Sortieren" l.store "Sort alphabetically", "Alphabetisch sortieren" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Sind Sie sicher, die Kategorie zu löschen: " l.store "Delete this category", "Kategorie löschen" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Fertig)" # app/views/admin/content/_attachment.html.erb @@ -171,37 +163,12 @@ l.store "Really delete attachment", "Anhang wirklich löschen" l.store "Add another attachment", "Einen weiteren Anhang hinzufügen" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Kommentare erlauben" - l.store "Allow trackbacks", "Trackbacks erlauben" - l.store "Password:", "" - l.store "Publish", "Veröffentlichen" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "" - l.store "Post settings", "" l.store "Publish at", "Veröffentlicht am" - l.store "Article filter", "Textfilter für Artikel" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Sind Sie sicher, diesen Artikel zu löschen" l.store "Delete this article", "Diesen Artikel löschen" - l.store "Articles", "" # app/views/admin/content/index.html.erb l.store "New Article", "" @@ -217,7 +184,6 @@ l.store "Publication date", "" # 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", "" l.store "No comments yet", "" @@ -232,9 +198,7 @@ # app/views/admin/dashboard/_overview.html.erb l.store "Getting started", "" l.store "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %s, %s or %s.", "" - l.store "update your profile or change your password", "" l.store "You can also do a bit of design, %s or %s.", "" - l.store "change your blog presentation", "" l.store "enable plugins", "" l.store "write a post", "" l.store "write a page", "" @@ -280,7 +244,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Status" l.store "Comment Author", "" l.store "Comment", "" @@ -325,10 +288,8 @@ l.store "Delete this file from the webserver?", "Diese Datei vom Webserver löschen?" l.store "File Uploads", "Dateianhänge" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Dateigröße" - l.store "Images", "" l.store "right-click for link", "" # app/views/admin/resources/index.html.erb @@ -346,10 +307,6 @@ l.store "Use RSS description", "" 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", "" @@ -368,11 +325,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -381,8 +333,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -390,14 +340,8 @@ 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", "" @@ -406,7 +350,6 @@ 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", "" @@ -447,7 +390,6 @@ l.store "Allow users to register", "" l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", "" l.store "Items to display in admin lists", "" - l.store "Publishing options", "" l.store "Display", "Zeige" l.store "articles on my homepage by default", "Artikel auf einmal auf meiner Homepage" l.store "articles in my news feed by default", "Artikel auf einmal in meinen RSS News Feeds" @@ -458,16 +400,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -524,25 +461,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Anzeigename" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -555,8 +485,6 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "" - l.store "Password confirmation", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -568,17 +496,11 @@ l.store "Send notification messages when comments are posted", "Benachrichtigung schicken, wenn neue Kommentare eintreffen" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -659,13 +581,11 @@ # 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", "" # app/views/shared/_confirm.html.erb # l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -715,7 +635,6 @@ # 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: ", "" @@ -740,10 +659,8 @@ # 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", "" l.store "Next", "" diff --git a/lang/es_MX.rb b/lang/es_MX.rb index 252757b246..37a3648d4e 100644 --- a/lang/es_MX.rb +++ b/lang/es_MX.rb @@ -98,17 +98,6 @@ l.store "or", "o" l.store "Save", "Guardar" l.store "Edit", "Editar" - l.store "Show", "" - l.store "Published", "Publicado" - l.store "Unpublished", "" - l.store "Show help on Publify macros", "" - 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", "" @@ -127,13 +116,6 @@ l.store "1 trackback", "" l.store "%d trackbacks", "" - # app/helpers/content_helper.rb - l.store "Posted in", "" - l.store "Tags", "Tags" - l.store "no posts", "" - l.store "1 post", "" - l.store "%d posts", "" - # app/models/article.rb l.store "Original article writen by", "" l.store "and published on", "" @@ -176,38 +158,12 @@ l.store "Really delete attachment", "¿Realmente deseas borrar este archivo?" l.store "Add another attachment", "Agregar Otro Archivo" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Se permiten comentarios" - l.store "Allow trackbacks", "Se permiten trackbacks" - l.store "Password:", "" - l.store "Publish", "Publicar" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "" - l.store "Post settings", "" l.store "Publish at", "Publicado el" - l.store "Article filter", "Filtro de artículo" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "¿Estás seguro que deseas borrar este artículo?" l.store "Delete this article", "Eliminar este artículo" - l.store "Articles", "" # app/views/admin/content/index.html.erb l.store "New Article", "" @@ -284,19 +240,9 @@ # 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 "Status", "Estado" - 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 "Search Comments and Trackbacks that contain", "" - l.store "Article", "" - # app/views/admin/pages/_form.html.erb l.store "Online", "Online" l.store "Page settings", "" @@ -334,7 +280,6 @@ # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Tamaño del Archivo" - l.store "Images", "" l.store "right-click for link", "" # app/views/admin/resources/index.html.erb @@ -371,29 +316,7 @@ l.store "at the bottom of each post in the RSS feed", "" 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/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 "Permalink format", "" - l.store "Date and title", "" - 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", "" - # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - 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", "" diff --git a/lang/fr_FR.rb b/lang/fr_FR.rb index fb55022246..e11bd2cee8 100644 --- a/lang/fr_FR.rb +++ b/lang/fr_FR.rb @@ -114,7 +114,6 @@ l.store "Edit", "Éditer" l.store "Delete", "Supprimer" l.store "Show", "Affichage" - l.store "Published", "Publié" l.store "Draft", "" l.store "Withdrawn", "Supprimé" l.store "Publication pending", "À publier" @@ -156,33 +155,12 @@ # app/models/post_type.rb l.store "This article type already exists", "" - # app/views/admin/content/_attachment.html.erb - l.store "Remove", "Supprimer" - l.store "Currently this article has the following resources", "Les fichiers suivants sont actuellement liés à ce billet" - l.store "You can associate the following resources", "Vous pouvez y lier les fichiers suivants" - l.store "Really delete attachment", "Voulez-vous vraiment supprimer la pièce jointe" - l.store "Add another attachment", "Ajouter une autre pièce jointe" - # app/views/admin/content/_form.html.erb - l.store "Change", "Modifier" - l.store "Comments are %s and trackbacks are %s", "Les commentaires sont %s et les rétroliens %s" - l.store "Publish settings", "Paramètres de publication" - l.store "Status:", "État" - l.store "Allow trackbacks", "Autoriser les rétroliens" - l.store "Allow comments", "Autoriser les commentaires" - l.store "Visibility", "Visibilité" l.store "public", "publique" l.store "protected", "protégée" l.store "Password:", "Mot de passe" - l.store "Article filter", "Mise en forme des billets" l.store "now", "maintenant" - l.store "Publish", "Publier" - l.store "Tags", "Labels" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "Extrait" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "Les résumés vous permettent d'afficher un texte descriptif de votre article à la place de ce dernier sur la page d'accueil de votre blog" l.store "Uploads", "Pièces jointes" - l.store "Save as draft", "Sauver comme brouillon" l.store "New article", "Nouvel article" l.store "disabled", "désactivés" l.store "Markdown with SmartyPants", "Mardown et SmartyPants" @@ -549,7 +527,6 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "Paramètres du compte" - l.store "Password", "Mot de passe" l.store "Password confirmation", "Confirmation du mot de passe" l.store "User's status", "Statut de l'utilisateur" l.store "Active", "Actif" @@ -839,7 +816,6 @@ l.store "IP", "Adresse IP" l.store "If you are reading this article elsewhere than", "Si vous lisez cet article ailleurs que sur" l.store "If you need help, %s. You can also %s to customize your Publify blog.", "Si vous avez besoin d'aide, n'hésitez pas à %s. Vous pouvez aussi %s afin de personnaliser votre blog sous Publify" - l.store "Images", "Images" l.store "Jan", "jan" l.store "January", "janvier" l.store "Jul", "juil" diff --git a/lang/he_IL.rb b/lang/he_IL.rb index 4b7b66e320..be8157c0e8 100644 --- a/lang/he_IL.rb +++ b/lang/he_IL.rb @@ -97,7 +97,6 @@ l.store "Save", "שמור" l.store "Edit", "ערוך" l.store "Show", "" - l.store "Published", "פורסם" l.store "Unpublished", "לא פורסם" l.store "Show help on Publify macros", "" l.store "Back to overview", "עבור לסקירה" @@ -127,7 +126,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "פורסם ב-" - l.store "Tags", "תוויות" l.store "no posts", "אין כתבות" l.store "1 post", "כתבה 1" l.store "%d posts", "%d כתבות" @@ -174,33 +172,10 @@ l.store "Really delete attachment", "האם אתה בטוח שברצונך למחוק את הקובץ הצורף" l.store "Add another attachment", "הוסף קובץ-מצורף" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "אפשר תגובות" - l.store "Allow trackbacks", "אפשר עוקבים חזרה" - l.store "Password:", "" - l.store "Publish", "פרסם" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" l.store "Uploads", "העלאות" l.store "Post settings", "הגדרות כתבה" l.store "Publish at", "פורסם בתאריך" - l.store "Article filter", "מסנן הכתבה" - l.store "Save as draft", "שמור טיוטה" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "האם אתה בטוח שברצונך למחוק כתבה זו" @@ -284,7 +259,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "תגובות עבור %s" - l.store "Status", "מצב" l.store "Comment Author", "" l.store "Comment", "" @@ -332,7 +306,6 @@ # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "גודל הקובץ" - l.store "Images", "" l.store "right-click for link", "לחיצה ימנית לקישור" # app/views/admin/resources/index.html.erb diff --git a/lang/it_IT.rb b/lang/it_IT.rb index cf96ea4f95..3adf95ad5c 100644 --- a/lang/it_IT.rb +++ b/lang/it_IT.rb @@ -97,7 +97,6 @@ l.store "Save", "Salva" l.store "Edit", "Modifica" l.store "Show", "" - l.store "Published", "Pubblicato" l.store "Unpublished", "" l.store "Show help on Publify macros", "" l.store "Back to overview", "Torna al sommario" @@ -125,13 +124,6 @@ l.store "1 trackback", "" l.store "%d trackbacks", "" - # app/helpers/content_helper.rb - l.store "Posted in", "" - l.store "Tags", "Tags" - l.store "no posts", "" - l.store "1 post", "" - l.store "%d posts", "" - # app/models/article.rb l.store "Original article writen by", "" l.store "and published on", "" @@ -140,7 +132,6 @@ 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 @@ -153,18 +144,14 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Riordina" l.store "Sort alphabetically", "Ordina alfabeticamente" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Sei sicuro di voler eliminare questa categoria " l.store "Delete this category", "Elimina questa categoria" - # app/views/admin/categories/new.html.erb l.store "%s Category", "" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Termina)" # app/views/admin/content/_attachment.html.erb @@ -174,33 +161,8 @@ l.store "Really delete attachment", "Vuoi realmente eliminare l'allegato" l.store "Add another attachment", "Aggiungi un'altro allegato" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Permetti commenti" - l.store "Allow trackbacks", "Permetti trackbacks" - l.store "Password:", "" - l.store "Publish", "Pubblica" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "Uploads" - l.store "Post settings", "" l.store "Publish at", "Pubblicato il" - l.store "Article filter", "Filtra articolo" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Sei sicuro di voler eliminare questo articolo" @@ -284,7 +246,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Stato" l.store "Comment Author", "" l.store "Comment", "" @@ -332,7 +293,6 @@ # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Dimensione" - l.store "Images", "" l.store "right-click for link", "clicca col destro per il link" # app/views/admin/resources/index.html.erb @@ -350,7 +310,6 @@ l.store "Use RSS description", "" 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", "" @@ -372,7 +331,6 @@ # 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 "Permalink format", "" l.store "Date and title", "" l.store "Month and title", "" l.store "Title only", "" @@ -400,7 +358,6 @@ 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", "" @@ -462,13 +419,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "Ottimizzazione motori di ricerca" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -720,7 +675,6 @@ # 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: ", "" @@ -745,10 +699,8 @@ # 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", "" l.store "Next", "" diff --git a/lang/ja_JP.rb b/lang/ja_JP.rb index c883b07256..2312a7bb35 100644 --- a/lang/ja_JP.rb +++ b/lang/ja_JP.rb @@ -4,12 +4,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "ログインしました" l.store "Login unsuccessful", "ログインに失敗しました" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "ログアウトしました" l.store "login", "ログイン" l.store "signup", "サインアップ" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -127,7 +125,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "カテゴリ" - l.store "Tags", "タグ" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" @@ -140,7 +137,6 @@ 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 @@ -171,32 +167,9 @@ l.store "Really delete attachment", "本当に添付ファイルを削除してもよろしいですか?" l.store "Add another attachment", "添付ファイルを追加" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "コメントを許可" - l.store "Allow trackbacks", "トラックバックを許可" - l.store "Password:", "" - l.store "Publish", "公開" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "要約" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" l.store "Uploads", "アップロード" l.store "Post settings", "投稿設定" l.store "Publish at", "公開日" - l.store "Article filter", "記事フィルター" - l.store "Save as draft", "下書きとして保存" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "本当にこの記事を削除してよろしいですか?" @@ -280,7 +253,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "ステータス" l.store "Comment Author", "" l.store "Comment", "" @@ -325,10 +297,7 @@ l.store "Delete this file from the webserver?", "webサーバーからこのファイルを削除しますか?" l.store "File Uploads", "ファイルアップロード" - # app/views/admin/resources/images.html.erb - l.store "Thumbnail", "" l.store "File Size", "ファイルサイズ" - l.store "Images", "" l.store "right-click for link", "右クリックでリンク" # app/views/admin/resources/index.html.erb @@ -347,9 +316,6 @@ 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", "" @@ -368,11 +334,9 @@ # 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 "Permalink format", "" l.store "Date and title", "" 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.", "" @@ -394,8 +358,6 @@ 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", "" @@ -406,7 +368,6 @@ 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", "" @@ -524,23 +485,17 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "表示名" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "表示名" l.store "Manage tags", "タグの管理" @@ -666,7 +621,6 @@ l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -716,7 +670,6 @@ # 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: ", "" @@ -948,7 +901,6 @@ l.store "by", "by" l.store "no ", "no " l.store "on", "の" - l.store "published", "公開済み" l.store "save", "保存" l.store "seperate with spaces", "スペースで分ける" l.store "unpublished", "未公開" diff --git a/lang/lt_LT.rb b/lang/lt_LT.rb index 9b5aa4cc74..64ae0edb8c 100644 --- a/lang/lt_LT.rb +++ b/lang/lt_LT.rb @@ -4,12 +4,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "" l.store "Login unsuccessful", "" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "" l.store "login", "" l.store "signup", "" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -97,7 +95,6 @@ l.store "Save", "Saugoti" l.store "Edit", "Redaguoti" l.store "Show", "" - l.store "Published", "Publikuotas" l.store "Unpublished", "" l.store "Show help on Publify macros", "" l.store "Back to overview", "Atgal į peržiūrą" @@ -127,7 +124,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "" - l.store "Tags", "Žymės" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" @@ -140,7 +136,6 @@ 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 @@ -153,15 +148,12 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Rikiuoti" l.store "Sort alphabetically", "Rikiuoti pagal abėcėlę" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Ar tikrai nori ištrinti šią kategoriją : " l.store "Delete this category", "Trinti šią kategoriją" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Baigta)" # app/views/admin/content/_attachment.html.erb @@ -171,33 +163,7 @@ l.store "Really delete attachment", "Ištrinti prikabintus failus" l.store "Add another attachment", "Prikabinti kitą failą" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Leisti komentarus" - l.store "Allow trackbacks", "Leisti dienoraščių nuorodas" - l.store "Password:", "" - l.store "Publish", "Publikuoti" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "" - l.store "Post settings", "" l.store "Publish at", "Publikuotas" - l.store "Article filter", "Straipsnių filtras" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Ar tikrai norite ištrinti šį straipsnį" @@ -218,7 +184,6 @@ l.store "Publication date", "" # 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", "" l.store "No comments yet", "" @@ -233,9 +198,7 @@ # app/views/admin/dashboard/_overview.html.erb l.store "Getting started", "" l.store "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %s, %s or %s.", "" - l.store "update your profile or change your password", "" l.store "You can also do a bit of design, %s or %s.", "" - l.store "change your blog presentation", "" l.store "enable plugins", "" l.store "write a post", "" l.store "write a page", "" @@ -281,7 +244,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Statusas" l.store "Comment Author", "" l.store "Comment", "" @@ -326,10 +288,8 @@ l.store "Delete this file from the webserver?", "Diese Datei vom Webserver löschen?" l.store "File Uploads", "Dateianhänge" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Dateigröße" - l.store "Images", "" l.store "right-click for link", "" # app/views/admin/resources/index.html.erb @@ -347,10 +307,6 @@ l.store "Use RSS description", "" 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", "" @@ -369,11 +325,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -382,8 +333,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -391,14 +340,8 @@ 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", "" @@ -407,7 +350,6 @@ 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", "" @@ -459,16 +401,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -525,25 +462,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Rodomas vardas" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -556,8 +486,6 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "" - l.store "Password confirmation", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -570,17 +498,11 @@ l.store "Send notification messages when comments are posted", "Benachrichtigung schicken, wenn neue Kommentare eintreffen" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -661,13 +583,11 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -715,10 +635,6 @@ # themes/scribbish/layouts/default.html.erb l.store "styled with %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", "" @@ -742,10 +658,8 @@ # 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", "" l.store "Next", "" @@ -768,7 +682,6 @@ l.store "%d Trackbacks", ["dienoraščio nuoroda", "%d dienoraščių nuorodos"] l.store "%d Users", ["Vartotojas", "%d Vartotojai"] l.store "AIM Presence", "AIM Anwesenheit" - l.store "AIM Status", "AIM Status" l.store "Action", "Aktion" l.store "Activate", "Aktivieren" l.store "Add MetaData", "Metadaten hinzufügen" diff --git a/lang/nb_NO.rb b/lang/nb_NO.rb index a327e62cd7..f459bb16c7 100644 --- a/lang/nb_NO.rb +++ b/lang/nb_NO.rb @@ -42,7 +42,6 @@ l.store "Article was successfully updated.", "Artikkel oppdatert" # app/controllers/admin/dashboard_controller.rb - 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 "You are late from at least one major version of Publify. You should upgrade immediately. Download and install %s", "Du bruker en gammel versjon av Publify. Du bør oppgradere snarest. Last ned og installer %s" l.store "the latest Publify version", "den siste versjonan av Publify" @@ -129,7 +128,6 @@ l.store "Short url:", "Kort URL:" l.store "Edit", "Rediger" l.store "Show", "Vis" - l.store "Published", "Publisert" l.store "Unpublished", "Ikke publisert" l.store "Show help on Publify macros", "Vis hjelp i Publify makroer" l.store "Update settings", "Oppdater innstillinger" @@ -174,18 +172,14 @@ l.store "Just Marked As Spam", "Kun markert som Spam" l.store "Spam", "Spam" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Arranger" l.store "Sort alphabetically", "Sorter alfabetisk" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Er du sikker på du vil slette kategorien: " l.store "Delete this category", "Slett denne kategorien" - # app/views/admin/categories/new.html.erb l.store "%s Category", "%s kategori" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Ferdig)" # app/views/admin/content/_attachment.html.erb @@ -199,20 +193,9 @@ l.store "Drafts", "Utkast" # app/views/admin/content/_form.html.erb - l.store "Publish settings", "Publiseringsinnstillinger" - l.store "Allow comments", "Tillat kommentarer" - l.store "Allow trackbacks", "Tillat Trackbacks" - l.store "Password:", "Passord" - l.store "Publish", "Publiser" - l.store "Tags", "Tags" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "Utdrag" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "Utdrag er oppsummeringer som vises på bloggsiden, men ikke i artikkelen" l.store "Uploads", "Opplastede filer" l.store "Post settings", "Postinnstillinger" l.store "Publish at", "Offentliggjort den" - l.store "Article filter", "artikkelfilter" - l.store "Save as draft", "Lagre som utkast" l.store "disabled", "" l.store "Markdown with SmartyPants", "" l.store "Markdown", "" @@ -283,7 +266,6 @@ l.store "Content", "Innhold" l.store "Total posts:", "Antall artikler:" l.store "Your posts:", "Dine artikler:" - l.store "Categories:", "Kategorier:" l.store "Total comments:", "Antall kommentarer:" l.store "Spam comments:", "Spam-kommentarer:" l.store "In your spam queue:", "I Spam-køen:" @@ -311,7 +293,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "Kommentarer for %s" - l.store "Status", "Status" l.store "Comment Author", "Kommentarforfatter" l.store "Comment", "Kommentar" @@ -536,19 +517,15 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "Er du sikker på at du vil slette denne taggen" l.store "Delete this tag", "Slett denne taggen" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "Redigerer" - # app/views/admin/tags/index.html.erb l.store "Display Name", "Visningsnavn" l.store "Manage tags", "Behandle tags" @@ -716,10 +693,6 @@ l.store "About", "Om" l.store "Designed by %s ported to publify by %s ", "Utformet av %s portert til Publify av %s " - # themes/scribbish/views/articles/_article.html.erb - l.store "Meta", "" - l.store "permalink", "permalenke" - # themes/scribbish/views/layouts/default.html.erb l.store "styled with %s", "utformed med %s" @@ -743,10 +716,8 @@ # themes/true-blue-3/views/articles/search.html.erb l.store "Search results for:", "Søkeresultater for:" - # themes/true-blue-3/views/categories/index.html.erb l.store "Read all articles in %s", "Les alle artikler i %s" - # themes/true-blue-3/views/categories/show.html.erb l.store "Previous", "Forrige" l.store "Next", "Neste" @@ -775,7 +746,6 @@ l.store ", Articles for ", ", Artikler for " l.store "1 post", "1 post" l.store "AIM Presence", "AIM Presence" - l.store "AIM Status", "AIM Status" l.store "Action", "Handling" l.store "Activate", "Aktiver" l.store "Add MetaData", "Legg til metadata" @@ -851,7 +821,6 @@ l.store "Google verification link", "Verifiseringslenke for Google" l.store "IP", "IP-adresse" l.store "If you are reading this article elsewhere than", "Dersom du leser denne artikkelen et annet sted enn" - l.store "Images", "Bilder" l.store "Index categories", "Indekskategorier" l.store "Index tags", "Indekstagger" l.store "Jabber", "Jabber" @@ -977,7 +946,6 @@ l.store "it has been illegally reproduced and without proper authorization", "så har den blitt reprodusert uten tillatelse" l.store "no posts", "ingen poster" l.store "on", "på" - l.store "published", "utgitt" l.store "seperate with spaces", "Adskill med mellomrom" l.store "via email", "via e-mail" l.store "with %s Famfamfam iconset %s", "med %s Famfamfam-ikoner %s" diff --git a/lang/nl_NL.rb b/lang/nl_NL.rb index c5a77525b3..c443eb8432 100644 --- a/lang/nl_NL.rb +++ b/lang/nl_NL.rb @@ -90,13 +90,11 @@ l.store "Please select", "Selecteren alstublieft" l.store "All categories", "" l.store "All authors", "" - l.store "All published dates", "" l.store "There are no %s yet. Why don't you start and create one?", "Er zijn nog geen %s. Waarom begin je er niet een te maken?" l.store "or", "of" l.store "Save", "Bewaar" l.store "Edit", "Bewerken" l.store "Show", "Tonen" - l.store "Published", "Gepubliceerd" l.store "Unpublished", "Niet gepubliceerd" l.store "Show help on Publify macros", "Toon help voor Publify macro's" l.store "Back to overview", "Terug naar overzicht" @@ -126,7 +124,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "Geplaatst in" - l.store "Tags", "Trefwoorden" l.store "no posts", "geen berichten" l.store "1 post", "één bericht" l.store "%d posts", "%d berichten" @@ -177,29 +174,9 @@ l.store "Drafts", "Concepten" # app/views/admin/content/_form.html.erb - l.store "Publish settings", "Publicatie instellingen" - l.store "Allow comments", "Sta reacties toe" - l.store "Allow trackbacks", "Sta trackbacks toe" - l.store "Password:", "Wachtwoord:" - l.store "Publish", "Publiceer" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "Uittreksel" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "Uittreksels zijn een samenvatting van een post die alleen op de homepage staat, maar niet in de post zelf staan" l.store "Uploads", "Uploads" l.store "Post settings", "Post instellingen" l.store "Publish at", "Publiceren op" - l.store "Permalink", "Permalink" - l.store "Article filter", "Artikel filter" - l.store "Save as draft", "Opslaan als concept" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Weet je zeker dat je dit artikel wilt verwijderen?" @@ -283,7 +260,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "Commentaren voor %s" - l.store "Status", "Status" l.store "Comment Author", "Auteur commentaar" l.store "Comment", "Reactie" @@ -328,10 +304,8 @@ l.store "Delete this file from the webserver?", "Verwijder dit bestand van de webserver?" l.store "File Uploads", "Bestand Uploads" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "Voorafbeelding" l.store "File Size", "Bestandsgrootte" - l.store "Images", "Afbeeldingen" l.store "right-click for link", "rechts-klikken voor link" # app/views/admin/resources/index.html.erb @@ -350,9 +324,6 @@ 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", "" @@ -371,11 +342,9 @@ # 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 "Permalink format", "" l.store "Date and title", "" 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.", "" @@ -399,7 +368,6 @@ 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", "" @@ -410,7 +378,6 @@ 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", "Werk instellingen bij" @@ -470,7 +437,6 @@ l.store "Use RSS description", "Gebruik RSS beschrijving" 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", "Het uitzetten van dit vinkje zal de meta-tags noindex, follow toevoegen aan elke categorie pagina, zodat die niet door zoekmachines geïndexeerd wordt; dit voorkomt dubbele hits" - 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", "Het uitzetten van dit vinkje zal de meta-tags noindex, follow toevoegen aan elke tag pagina, zodat die niet door zoekmachines geïndexeerd wordt; dit voorkomt dubbele hits" l.store "Robots.txt", "Robots.txt" l.store "You robots.txt file is not writeable. Publify won't be able to write it", "Je robots.txt bestand is niet schrijfbaar. Publify kan het niet wijzigen" @@ -526,23 +492,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Schermnaam" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "Weet je zeker dat je deze tag wilt verwijderen?" l.store "Delete this tag", "Verwijder deze tag" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "Wijzigen" l.store "Back to tags list", "Terug naar de lijst van tags" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" l.store "Manage tags", "Beheer tags" @@ -718,7 +679,6 @@ # 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: ", "Je bent hier: " diff --git a/lang/pl_PL.rb b/lang/pl_PL.rb index 58013278c0..eda5693dff 100644 --- a/lang/pl_PL.rb +++ b/lang/pl_PL.rb @@ -7,12 +7,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "" l.store "Login unsuccessful", "" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "" l.store "login", "" l.store "signup", "" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -59,7 +57,6 @@ # app/controllers/admin/sidebar_controller.rb l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", "" - # app/controllers/admin/tags_controller.rb l.store "Tag was successfully updated.", "" # app/controllers/admin/themes_controller.rb @@ -100,7 +97,6 @@ l.store "Save", "Zapisz" l.store "Edit", "Zmień" l.store "Show", "" - l.store "Published", "Opublikowane" l.store "Unpublished", "" l.store "Show help on Publify macros", "" l.store "Back to overview", "Wróć do podglądu" @@ -130,20 +126,17 @@ # app/helpers/content_helper.rb l.store "Posted in", "" - l.store "Tags", "Tagi" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" # 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 @@ -156,15 +149,12 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Zmień porządek" l.store "Sort alphabetically", "Sortuj alfabetycznie" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Czy na pewno chcesz skasować kategorię " l.store "Delete this category", "Usuń tą kategorię" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Zakończono)" # app/views/admin/content/_attachment.html.erb @@ -174,33 +164,8 @@ l.store "Really delete attachment", "Na pewno skasować?" l.store "Add another attachment", "Dodaj kolejny załącznik" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Zezwól na dodawanie komentarzy" - l.store "Allow trackbacks", "Zezwól na podawanie trackbacków" - l.store "Password:", "" - l.store "Publish", "Publikuj" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" l.store "Uploads", "Załadowane zasoby" - l.store "Post settings", "" l.store "Publish at", "Opublikowane dnia" - l.store "Article filter", "Filtr artykułów" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Czy na pewno chcesz usunąć ten artykuł" @@ -221,7 +186,6 @@ l.store "Publication date", "" # 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", "Ostatnie komentarze" l.store "No comments yet", "Brak komentarzy" @@ -284,7 +248,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Stan" l.store "Comment Author", "" l.store "Comment", "" @@ -329,10 +292,8 @@ l.store "Delete this file from the webserver?", "Skasować ten plik z serwera?" l.store "File Uploads", "Wysłane pliki" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Rozmiar pliku" - l.store "Images", "Grafika" l.store "right-click for link", "Kliknij PPM by uzyskać łącze" # app/views/admin/resources/index.html.erb @@ -350,10 +311,6 @@ l.store "Use RSS description", "" 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", "" @@ -372,11 +329,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -385,8 +337,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -394,14 +344,8 @@ 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", "" @@ -410,7 +354,6 @@ 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", "" @@ -462,16 +405,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "Optymalizacja silnika wyszukiwania" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -528,25 +466,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Wyświetlana nazwa" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -559,8 +490,6 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "" - l.store "Password confirmation", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -573,17 +502,11 @@ l.store "Send notification messages when comments are posted", "Wysyłaj powiadomienia o nowych komentarzach" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -653,7 +576,6 @@ 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.", "" @@ -664,13 +586,11 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -720,7 +640,6 @@ # 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: ", "" @@ -745,10 +664,8 @@ # 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", "Poprzednie" l.store "Next", "Następne" diff --git a/lang/pt_BR.rb b/lang/pt_BR.rb index 23eec1f8eb..feffa7bf0e 100644 --- a/lang/pt_BR.rb +++ b/lang/pt_BR.rb @@ -99,7 +99,6 @@ l.store "Save", "Salvar" l.store "Edit", "Editar" l.store "Show", "Exibir" - l.store "Published", "Publicado" l.store "Unpublished", "Despublicado" l.store "Show help on Publify macros", "Exibir ajuda no Publify macros" l.store "Back to overview", "Voltar para o overview" @@ -129,7 +128,6 @@ # app/helpers/content_helper.rb l.store "Posted in", "Postado em" - l.store "Tags", "" l.store "no posts", "Sem posts" l.store "1 post", "" l.store "%d posts", "" @@ -158,18 +156,14 @@ # app/views/accounts/login.html.erb l.store "Submit", "Enviar" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Reorganizar" l.store "Sort alphabetically", "Ordenar alfabéticamente" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category", "Tem certeza que deseja deletar essa categoria?" l.store "Delete this category", "Eliminar esta categoria" - # app/views/admin/categories/new.html.erb l.store "%s Category", "%s Categoria" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Feito)" # app/views/admin/content/_attachment.html.erb @@ -181,31 +175,7 @@ # app/views/admin/content/_drafts.html.erb l.store "Drafts", "Rascunhos" - - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "Configurações de publicação" - l.store "Allow comments", "Permitir comentários" - l.store "Allow trackbacks", "Permitir trackbacks" - l.store "Password:", "Senha" - l.store "Publish", "Publicar" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "Separe as tags com vírgulas. Use áspas duplas (") em palavras compostas, ex: opera-house." - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "" - l.store "Post settings", "" l.store "Publish at", "Publicado el" - l.store "Article filter", "Filtro de artículo" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "¿Estás seguro que deseas borrar este artículo?" @@ -226,7 +196,6 @@ l.store "Publication date", "" # 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", "" l.store "No comments yet", "" @@ -241,9 +210,7 @@ # app/views/admin/dashboard/_overview.html.erb l.store "Getting started", "" l.store "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %s, %s or %s.", "" - l.store "update your profile or change your password", "" l.store "You can also do a bit of design, %s or %s.", "" - l.store "change your blog presentation", "" l.store "enable plugins", "" l.store "write a post", "" l.store "write a page", "" @@ -289,7 +256,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Estado" l.store "Comment Author", "" l.store "Comment", "" @@ -334,10 +300,8 @@ l.store "Delete this file from the webserver?", "¿Eliminar este archivo del servidor?" l.store "File Uploads", "Archivos subidos" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Tamaño del Archivo" - l.store "Images", "" l.store "right-click for link", "" # app/views/admin/resources/index.html.erb @@ -355,10 +319,6 @@ l.store "Use RSS description", "" 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", "" @@ -377,11 +337,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -390,8 +345,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -399,14 +352,8 @@ 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", "" @@ -415,7 +362,6 @@ 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", "" @@ -467,16 +413,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -516,7 +457,6 @@ l.store "Drag some plugins here to fill your sidebar", "Arrastra algunos plugins aquí para llenar tu barra lateral" # app/views/admin/sidebar/index.html.erb - l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click 'remove'. Changes are saved immediately, but not activated until you click the 'Publish changes' button", "" l.store "Available Items", "Items disponibles" l.store "Active Sidebar items", "Items activos de la barra lateral" l.store "Get more plugins", "" @@ -533,25 +473,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Nombre para mostrar" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -578,17 +511,11 @@ l.store "Send notification messages when comments are posted", "Enviar notificaciones cuando un nuevo comentario sea publicado" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -658,7 +585,6 @@ 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.", "" @@ -669,7 +595,6 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" @@ -724,7 +649,6 @@ # 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: ", "" @@ -749,10 +673,8 @@ # 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", "" l.store "Next", "" diff --git a/lang/ro_RO.rb b/lang/ro_RO.rb index 422c465abe..f587a5749d 100644 --- a/lang/ro_RO.rb +++ b/lang/ro_RO.rb @@ -4,12 +4,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "" l.store "Login unsuccessful", "" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "" l.store "login", "" l.store "signup", "" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -96,7 +94,6 @@ l.store "or", "sau" l.store "Save", "Salvează" l.store "Edit", "Editare" - l.store "Published", "Publicat" # app/helpers/application_helper.rb l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", "" @@ -110,20 +107,17 @@ # app/helpers/content_helper.rb l.store "Posted in", "" - l.store "Tags", "" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" # 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 @@ -136,15 +130,12 @@ l.store "Just Marked As Spam", "" l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "Ordonează" l.store "Sort alphabetically", "Ordonează alfabetic" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Ești sigur că dorești să ștergi această categorie" l.store "Delete this category", "Șterge această categorie" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(Gata)" # app/views/admin/content/_attachment.html.erb @@ -154,33 +145,8 @@ l.store "Really delete attachment", "Ești sigur că dorești să ștergi atașamentul" l.store "Add another attachment", "Adaugă un nou atașament" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "Se permit comentarii" - l.store "Allow trackbacks", "Se permit retrolegături" - l.store "Password:", "" - l.store "Publish", "Publică" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "" - l.store "Uploads", "" - l.store "Post settings", "" l.store "Publish at", "Publică la" - l.store "Article filter", "Filtru pentru articole" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" - # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "Ești sigur că dorești ștergerea acestui articol" @@ -201,7 +167,6 @@ l.store "Publication date", "" # 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", "" l.store "No comments yet", "" @@ -216,9 +181,7 @@ # app/views/admin/dashboard/_overview.html.erb l.store "Getting started", "" l.store "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %s, %s or %s.", "" - l.store "update your profile or change your password", "" l.store "You can also do a bit of design, %s or %s.", "" - l.store "change your blog presentation", "" l.store "enable plugins", "" l.store "write a post", "" l.store "write a page", "" @@ -264,7 +227,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "Status" l.store "Comment Author", "" l.store "Comment", "" @@ -309,10 +271,8 @@ l.store "Delete this file from the webserver?", "Ștergi acest fișier de pe server?" l.store "File Uploads", "Încărcări de fișiere" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "Dimensiunea fișierului" - l.store "Images", "" l.store "right-click for link", "" # app/views/admin/resources/index.html.erb @@ -329,7 +289,6 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" @@ -345,10 +304,6 @@ l.store "Use RSS description", "" 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", "" @@ -367,11 +322,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -380,8 +330,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -389,14 +337,8 @@ 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", "" @@ -405,7 +347,6 @@ 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", "" @@ -457,16 +398,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -513,20 +449,14 @@ l.store "Sidebar", "" l.store "Publish changes", "Publică modificările" - # app/views/admin/tags/_form.html.erb l.store "Display name", "Numele real" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -541,7 +471,6 @@ l.store "Account settings", "" l.store "Password confirmation", "Confirmă parola" l.store "Profile", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -554,17 +483,11 @@ l.store "Send notification messages when comments are posted", "Alerte la publicarea de comentarii noi" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -634,7 +557,6 @@ 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.", "" @@ -645,13 +567,11 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -698,10 +618,6 @@ # themes/scribbish/layouts/default.html.erb l.store "styled with %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", "" @@ -725,10 +641,8 @@ # 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", "" l.store "Next", "" diff --git a/lang/ru_RU.rb b/lang/ru_RU.rb index 3bd97dbbd2..d62d431035 100644 --- a/lang/ru_RU.rb +++ b/lang/ru_RU.rb @@ -24,7 +24,6 @@ l.store "Save", "Сохранить" l.store "Short url:", "Короткий URL:" l.store "Edit", "Редактировать" - l.store "Published", "Опубликован" l.store "Unpublished", "Не опубликован" l.store "There are no %s yet. Why don't you start and create one?", "Ничего нет. Почему бы не начать и не добавить?" # XXX l.store "or", "или" @@ -68,30 +67,17 @@ l.store "password", "пароль" l.store "Submit", "Войти" - # app/views/admin/categories/_categories.html.erb l.store "Sort alphabetically", "Сортировать по алфавиту" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "Вы уверены, что хотите удалитьэту категорию?" l.store "Delete this category", "Удалить эту категорию" - # app/views/admin/categories/index.html.erb - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "Настройки публикации" - l.store "Password:", "Пароль" - l.store "Publish", "Опубликовать" - l.store "Tags", "Теги" - l.store "Excerpt", "Выдержка" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "Выдержка — это анонс поста, который будет отображаться только на главной странице, и не будет присутствовать при просмотре полного поста" l.store "Uploads", "Загрузки" l.store "Post settings", "Настройки поста" l.store "Publish at", "Опубликован" - l.store "Save as draft", "Сохранить как черновик" l.store "disabled", "выключены" l.store "Markdown with SmartyPants", "Markdown со SmartyPants" - l.store "Markdown", "Markdown" - l.store "Texttile", "Textile" # XXX: ttile? l.store "None", "Нет" l.store "SmartyPants", "SmartyPants" l.store "Visual", "Визуально" diff --git a/lang/zh_CN.rb b/lang/zh_CN.rb index 8c73855d10..2646bc55a3 100644 --- a/lang/zh_CN.rb +++ b/lang/zh_CN.rb @@ -97,7 +97,6 @@ l.store "Save", "保存" l.store "Edit", "修改" l.store "Show", "显示" - l.store "Published", "已发表" l.store "Unpublished", "未发表" l.store "Show help on Publify macros", "显示Publify宏的帮助" l.store "Back to overview", "回到概览" @@ -127,20 +126,17 @@ # app/helpers/content_helper.rb l.store "Posted in", "发表在" - l.store "Tags", "标签" l.store "no posts", "没有文章" l.store "1 post", "一篇文章" 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 @@ -156,20 +152,15 @@ # app/views/accounts/login.html.erb l.store "Submit", "提交" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "重新排序" l.store "Sort alphabetically", "依字母顺序排序" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "确认删除此分类?" l.store "Delete this category", "删除分类" - # app/views/admin/categories/index.html.erb - # app/views/admin/categories/new.html.erb l.store "%s Category", "分类%s" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(完成)" # app/views/admin/content/_attachment.html.erb @@ -183,28 +174,9 @@ l.store "Drafts", "草稿" # app/views/admin/content/_form.html.erb - l.store "Publish settings", "发布设定" - l.store "Allow comments", "允许评论" - l.store "Allow trackbacks", "允许引用" - l.store "Password:", "密码" - l.store "Publish", "发布" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "摘要" - l.store "Excerpts are post summaries that show only on your blog homepage and won’t appear on the post itself", "摘要对文章的总结,只会显示在首页,不会出现在文章正文。" l.store "Uploads", "上传" l.store "Post settings", "发布设定" l.store "Publish at", "公开" - l.store "Article filter", "" - l.store "Save as draft", "保存为草稿" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" # app/views/admin/content/destroy.html.erb @@ -229,7 +201,6 @@ l.store "Publication date", "" # 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", "最近评论" l.store "No comments yet", "没有任何评论" @@ -295,7 +266,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "状态" l.store "Comment Author", "" l.store "Comment", "" @@ -361,10 +331,6 @@ l.store "Use RSS description", "" 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", "" @@ -399,8 +365,6 @@ 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", "" @@ -410,7 +374,6 @@ 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", "" @@ -462,16 +425,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "SEO" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -528,25 +486,17 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "暱稱" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -560,7 +510,6 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "" l.store "Password confirmation", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -573,17 +522,11 @@ l.store "Send notification messages when comments are posted", "新的評錀貼上時發出通知訊息" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -653,7 +596,6 @@ 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.", "" @@ -719,7 +661,6 @@ # 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: ", "" @@ -744,10 +685,8 @@ # 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", "" l.store "Next", "" diff --git a/lang/zh_TW.rb b/lang/zh_TW.rb index 0d36075326..63ca9e8ae7 100644 --- a/lang/zh_TW.rb +++ b/lang/zh_TW.rb @@ -4,12 +4,10 @@ # app/controllers/accounts_controller.rb l.store "Login successful", "" l.store "Login unsuccessful", "" - l.store "An email has been successfully sent to your address with your new password", "" l.store "Oops, something wrong just happened", "" l.store "Successfully logged out", "" l.store "login", "" l.store "signup", "" - l.store "Recover your password", "" # app/controllers/admin/categories_controller.rb l.store "Category was successfully saved.", "" @@ -89,15 +87,12 @@ l.store "Delete content", "" l.store "Are you sure?", "" l.store "Please select", "" - l.store "All categories", "" l.store "All authors", "" - l.store "All published dates", "" l.store "There are no %s yet. Why don't you start and create one?", "" l.store "or", "或" l.store "Save", "存檔" l.store "Edit", "修改" l.store "Show", "" - l.store "Published", "已公開的" l.store "Unpublished", "" l.store "Show help on Publify macros", "" l.store "Back to overview", "回到概覽" @@ -127,20 +122,17 @@ # app/helpers/content_helper.rb l.store "Posted in", "" - l.store "Tags", "標示標籤" l.store "no posts", "" l.store "1 post", "" l.store "%d posts", "" # 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 @@ -154,15 +146,12 @@ l.store "Spam", "" - # app/views/admin/categories/_categories.html.erb l.store "Reorder", "重新排序" l.store "Sort alphabetically", "依字母順序排序" - # app/views/admin/categories/destroy.html.erb l.store "Are you sure you want to delete the category ", "確認刪除此分類? " l.store "Delete this category", "刪除分類" - # app/views/admin/categories/reorder.html.erb l.store "(Done)", "(完成)" # app/views/admin/content/_attachment.html.erb @@ -172,32 +161,9 @@ l.store "Really delete attachment", "確定刪除附件?" l.store "Add another attachment", "新增其他附件" - # app/views/admin/content/_drafts.html.erb - l.store "Drafts", "" - # app/views/admin/content/_form.html.erb - l.store "Publish settings", "" - l.store "Allow comments", "允許評論" - l.store "Allow trackbacks", "允許引用" - l.store "Password:", "" - l.store "Publish", "公開" - l.store "Tags", "" - l.store "Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".", "" - l.store "Excerpt", "" - l.store "Excerpts are post summaries that show only on your blog homepage but won’t appear on the post itself", "" l.store "Uploads", "上載" - l.store "Post settings", "" l.store "Publish at", "公開" - l.store "Article filter", "篩選文章" - l.store "Save as draft", "" - l.store "disabled", "" - l.store "Markdown with SmartyPants", "" - l.store "Markdown", "" - l.store "Texttile", "" - l.store "None", "" - l.store "SmartyPants", "" - l.store "Visual", "" - l.store "Edit article", "" # app/views/admin/content/destroy.html.erb l.store "Are you sure you want to delete this article", "確定刪除本篇文章?" @@ -218,7 +184,6 @@ l.store "Publication date", "" # 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", "最近評論" l.store "No comments yet", "沒有任何評論" @@ -281,7 +246,6 @@ # app/views/admin/feedback/article.html.erb l.store "Comments for %s", "" - l.store "Status", "身分" l.store "Comment Author", "" l.store "Comment", "" @@ -326,10 +290,8 @@ l.store "Delete this file from the webserver?", "從網路伺服器刪除此檔案?" l.store "File Uploads", "檔案上載" - # app/views/admin/resources/images.html.erb l.store "Thumbnail", "" l.store "File Size", "檔案大小" - l.store "Images", "" l.store "right-click for link", "右鍵連結" # app/views/admin/resources/index.html.erb @@ -347,10 +309,6 @@ l.store "Use RSS description", "" 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", "" @@ -369,11 +327,6 @@ # 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 "Permalink format", "" - l.store "Date and title", "" - 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.", "" @@ -382,8 +335,6 @@ l.store "Custom", "" # app/views/admin/seo/titles.html.erb - l.store "Title settings", "" - l.store "Title template", "" l.store "Description template", "" l.store "Articles", "" l.store "Pages", "" @@ -391,14 +342,8 @@ 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", "" @@ -407,7 +352,6 @@ 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", "" @@ -459,16 +403,11 @@ # app/views/admin/settings/seo.html.erb l.store "Search Engine Optimisation", "SEO" - l.store "Format of permalink", "" l.store "Google Analytics", "" l.store "Google verification link", "" l.store "Meta description", "" 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", "" @@ -525,25 +464,18 @@ 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", "" - l.store "Show most popular tags for this blog", "" l.store "RSS and Atom feeds", "" l.store "XML Syndication", "" l.store "remove", "supprimer" - # app/views/admin/tags/_form.html.erb l.store "Display name", "暱稱" - # app/views/admin/tags/destroy.html.erb l.store "Are you sure you want to delete the tag", "" l.store "Delete this tag", "" - # app/views/admin/tags/edit.html.erb l.store "Editing ", "" - l.store "Back to tags list", "" - # app/views/admin/tags/index.html.erb l.store "Display Name", "" - l.store "Manage tags", "" # app/views/admin/themes/catalogue.html.erb l.store "Sorry the theme catalogue is not available", "" @@ -556,9 +488,7 @@ # app/views/admin/users/_form.html.erb l.store "Account settings", "" - l.store "Password confirmation", "" l.store "Profile", "" - l.store "User's status", "" l.store "Active", "" l.store "Inactive", "" l.store "Profile settings", "" @@ -571,17 +501,11 @@ l.store "Send notification messages when comments are posted", "新的評錀貼上時發出通知訊息" l.store "Contact options", "" l.store "Your site", "" - l.store "display URL on public profile", "" l.store "Your MSN", "" - l.store "display MSN ID on public profile", "" l.store "Your Yahoo ID", "" - l.store "display Yahoo! ID on public profile", "" l.store "Your Jabber ID", "" - l.store "display Jabber ID on public profile", "" l.store "Your AIM id", "" - l.store "display AIM ID on public profile", "" l.store "Your Twitter username", "" - l.store "display Twitter on public profile", "" l.store "Tell us more about you", "" # app/views/admin/users/destroy.html.erb @@ -651,7 +575,6 @@ 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.", "" @@ -662,13 +585,11 @@ # 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", "" # app/views/shared/_confirm.html.erb l.store "Congratulations!", "" l.store "You have successfully signed up", "" l.store "Login: %s", "" - l.store "Password: %s", "" l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "" # app/views/shared/_search.html.erb @@ -717,7 +638,6 @@ # 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: ", "" @@ -742,10 +662,8 @@ # 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", "" l.store "Next", ""