diff --git a/app/views/admin/resources/_pages.html.erb b/app/views/admin/resources/_pages.html.erb deleted file mode 100644 index b65baa642a..0000000000 --- a/app/views/admin/resources/_pages.html.erb +++ /dev/null @@ -1,3 +0,0 @@ - <%= link_to <%= _("Previous page"), { :id => pages.current.previous } if pages.current.previous -%> - <%= pagination_links pages, :name => 'id' -%> - <%= link_to _("Next page"), { :id => pages.current.next } if pages.current.next -%> diff --git a/app/views/admin/resources/_resource_list.html.erb b/app/views/admin/resources/_resource_list.html.erb deleted file mode 100644 index d2d56426f7..0000000000 --- a/app/views/admin/resources/_resource_list.html.erb +++ /dev/null @@ -1,20 +0,0 @@ -<%= render_void_table(@resources.size, 6) %> -<% for upload in @resources -%> - - - <% if upload.mime =~ /image/ %> - <%= link_to upload.upload_url, rel: 'lightbox' do %> - <%= image_tag(upload.upload.thumb.url) %> - <% end %> - <% else %> - <%= link_to(upload.upload_url, upload.upload_url) -%> - <% end %> -

<%= resource_action_links(upload) %>

- - - <%= upload.mime %> - - <%=h upload.size rescue 0 -%> bytes - <%= format_date upload.created_at -%> - -<% end -%> diff --git a/app/views/admin/resources/_upload.html.erb b/app/views/admin/resources/_upload.html.erb deleted file mode 100644 index 9e879f7718..0000000000 --- a/app/views/admin/resources/_upload.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -<%= form_tag({:action => 'upload'}, {:enctype => "multipart/form-data"}) %> - -
-

<%= _('Upload a File to your Site') %>

- <%= file_field('upload', 'filename', {:class => 'input-file'}) -%> - <%= submit_tag(_('Upload'), {:class => 'btn'}) -%> -
\ No newline at end of file diff --git a/app/views/admin/resources/index.html.erb b/app/views/admin/resources/index.html.erb index a3c4e40cc4..0728609789 100644 --- a/app/views/admin/resources/index.html.erb +++ b/app/views/admin/resources/index.html.erb @@ -1,18 +1,44 @@ <%- content_for :page_heading do %> -

<%= _("Media library") %>

+ +

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

<% end %> -<%= render 'upload' -%> +<%= form_tag({action: 'upload'}, {enctype: "multipart/form-data"}) do %> +
+

<%= t('.upload_a_file_to_your_site') %>

+ <%= file_field('upload', 'filename', {class: 'input-file'}) -%> + <%= submit_tag(t('.upload'), {class: 'btn'}) -%> +
+<%- end %> - - - - + + + + - <%= render 'resource_list', { :resources => @resources } %> + <%= render_void_table(@resources.size, 6) %> + <% for upload in @resources -%> + + + + + + + <% end -%> <%= display_pagination(@resources, 6)%>
<%= _("Filename")%> (<%= _('right-click for link')%>)<%= _("Content Type")%><%= _("File Size")%><%= _("Date")%><%= t(".filename")%> (<%= t('.right_click_for_link')%>)<%= t(".content_type")%><%= t(".file_size")%><%= t(".date")%>
+ <% if upload.mime =~ /image/ %> + <%= link_to upload.upload_url, rel: 'lightbox' do %> + <%= image_tag(upload.upload.thumb.url) %> + <% end %> + <% else %> + <%= link_to(upload.upload_url, upload.upload_url) -%> + <% end %> +

<%= resource_action_links(upload) %>

+
+ <%= upload.mime %> + <%=h upload.size rescue 0 -%> bytes<%= format_date upload.created_at -%>
diff --git a/config/locales/da.yml b/config/locales/da.yml index b7087ae6d7..fb49df38b7 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -5,6 +5,16 @@ da: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Upload en fil til din side" + upload: "Upload" + filename: "Filnavn" + right_click_for_link: "højreklik for link" + content_type: "Indholdstype (Content Type)" + file_size: "Filstørrelse" + date: "Dato" post_types: new: post_types: "Post Types" diff --git a/config/locales/de.yml b/config/locales/de.yml index cb68950e50..a43076ee6c 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -5,6 +5,16 @@ de: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Legen Sie einen Dateianhang an ihrer Site an" + upload: "Upload" + filename: "Dateiname" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "Dateigröße" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/en.yml b/config/locales/en.yml index 6802851bc2..72beed0f39 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -5,6 +5,16 @@ en: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Upload a File to your Site" + upload: "Upload" + filename: "Filename" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "File Size" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/es-MX.yml b/config/locales/es-MX.yml index f6da1e6168..49a26553d4 100644 --- a/config/locales/es-MX.yml +++ b/config/locales/es-MX.yml @@ -5,6 +5,16 @@ es-MX: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Sube un Archivo a tu sitio" + upload: "Subir" + filename: "Nombre del archivo" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "Tamaño del Archivo" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/fr.yml b/config/locales/fr.yml index c2c1672e24..59247f506b 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -5,6 +5,16 @@ fr: next: "Suivant" last: "Last" admin: + resources: + index: + media_library: "Bibliothèque de média" + upload_a_file_to_your_site: "Envoyer un fichier sur votre site" + upload: "Ajouter un fichier joint" + filename: "Fichier" + right_click_for_link: "clic droit pour le lien" + content_type: "Type de contenu" + file_size: "Taille du fichier" + date: "Date" post_types: new: post_types: "Modèles d'articles" diff --git a/config/locales/he-IL.yml b/config/locales/he-IL.yml index 376431580a..159357da17 100644 --- a/config/locales/he-IL.yml +++ b/config/locales/he-IL.yml @@ -5,6 +5,16 @@ he-IL: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "העלה קובץ לאתר שלך" + upload: "העלה" + filename: "שם הקובץ" + right_click_for_link: "לחיצה ימנית לקישור" + content_type: "סוג התוכן" + file_size: "גודל הקובץ" + date: "תאריך" post_types: new: post_types: "Post Types" diff --git a/config/locales/it.yml b/config/locales/it.yml index d0f157d1b1..bccc63e1d3 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -5,6 +5,16 @@ it: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Invia un file al tuo sito" + upload: "Invia" + filename: "Nome del file" + right_click_for_link: "clicca col destro per il link" + content_type: "Tipo di contenuto" + file_size: "Dimensione" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 97afc65c4b..1c4907c0f5 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -5,6 +5,16 @@ ja: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "サイトにファイルをアップロード" + upload: "アップロード" + filename: "ファイル名" + right_click_for_link: "右クリックでリンク" + content_type: "コンテンツタイプ" + file_size: "ファイルサイズ" + date: "日付" post_types: new: post_types: "Post Types" diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 1bfa6360b3..18341dd9d8 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -5,6 +5,232 @@ lt: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Legen Sie einen Dateianhang an ihrer Site an" + upload: "Upload" + filename: "Dateiname" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "Dateigröße" + date: "Date" + post_types: + new: + post_types: "Post Types" + name: "Name" + description: "Description" + template_name: "Template name" + default: "Default" + publify_default_post_type: "Publify default post type" + explain: "The template name is the filename Publify will look for when calling an article of that type. It should be in your theme under views/articles/template name.html.erb" + pages: + index: + manage_pages: "Manage pages" + new_page: "New Page" + title: "Title" + permalink: "Permalink" + author: "Author" + date: "Date" + form: + publish: "Publish" + title: "Title" + images: "Images" + publish_settings: "Publish settings" + status: "Status" + online: "Online" + article_filter: "Article filter" + permanent_link: "Permanent link" + page_with_action_name: "%{action} page" + feedback: + index: + feedback: "Feedback" + all: "All" + unapproved_comments: "Unapproved comments" + ham: "Ham" + spam: "Spam" + presumed_ham: "Presumed ham" + presumed_spam: "Presumed spam" + search: "Search" + status: "Status" + comment_author: "Comment Author" + comment: "Comment" + article: "Article" + select_all: "Select all" + article: + comments_for: "Comments for %{title}" + status: "Status" + comment_author: "Comment Author" + comment: "Comment" + add_a_comment: "Add a comment" + author: "Author" + email: "Email" + url: "Url" + your_comment: "Your comment" + action_or_other: "%{first_action} or %{second_action}" + cancel: "Cancel" + save: "Save" + button: + select_action: "Select action" + delete_checked_items: "Delete Checked Items" + delete_all_spam: "Delete all spam" + mark_checked_items_as_spam: "Mark Checked Items as Spam" + mark_checked_items_as_ham: "Mark Checked Items as Ham" + submit: "Submit" + feedback: + this_comment_by_was_flagged_as_spam: "This comment by %{author} was flagged as spam, %{cancel_link}?" + cancel: "Cancel" + dashboard: + drafts: + your_drafts: "Your drafts" + no_drafts_yet: "No drafts yet, why don't you start and write one" + welcome: + today: "Today" + articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion" + running_publify: "You're running Publify %{version}" + content: "Content" + articles_count: + zero: "no article" + one: "1 article" + other: "%{count} articles" + your_articles_count: + zero: "no article writen by you" + one: "1 article writen by you" + other: "%{count} articles writen by you" + drafts_count: + zero: "no draft" + one: "1 draft" + other: "%{count} drafts" + pages_count: + zero: "no page" + one: "1 page" + other: "%{count} pages" + notes_count: + zero: "no note" + one: "1 note" + other: "%{count} notes" + feedback: "Feedback" + comments_count: + zero: "no comment" + one: "1 comment" + other: "%{count} comments" + approved_count: + zero: "no approved" + other: "%{count} approved" + unconfirmed_count: + zero: "no unconfirmed" + other: "%{count} unconfirmed" + spam_count: + zero: "no spam" + other: "%{count} spam" + overview: + dashboard_explain: "This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}" + write_a_post: "write a post" + write_a_page: "write a page" + update_your_profile_or_change_your_password: "update your profile or change your password" + customization_explain: "You can also do a bit of design, %{theme_link} or %{sidebar_link}." + change_your_blog_presentation: "change your blog presentation" + enable_plugins: "enable plugins" + help_explain: "If you need help, %{doc_link}." + read_our_documentation: "read our documentation" + inbound: + inbound_links: "Inbound links" + you_have_no_internet_connection: "You have no internet connection" + no_one_made_link_to_you_yet: "No one made a link to you yet" + made_a_link_to_you_on: "made a link to you on" + at_an_unknown_date: "at an unknown date" + at: "at" + comment: + no_comments_yet: "No comments yet" + by: "By" + content: + index: + published: "Published" + new_article: "New article" + all_articles: "All articles" + manage_articles: "Manage articles" + withdrawn: "Withdrawn" + drafts: "Drafts" + publication_pending: "Publication pending" + search: "Search" + title: "Title" + select_a_category: "Select a category" + select_an_author: "Select an author" + publication_date: "Publication date" + filter: "Filter" + 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: + new: + categories: "Categories" + name: "Name" + keywords: "Keywords" + permalink: "Permalink" + explaination: "Your category slug. Leave empty if you don't know what to put here" + description: "Description" + title: "Title" + menu: + help: "Help" + documentation: "Documentation" + report_a_bug: "Report a bug" + in_page_plugins: "In page plugins" + sidebar_plugins: "Sidebar plugins" + logged_in_as: "Logged in as %{login}" + new_article: "New Article" + profile: "Profile" + logout: "Log out »" + home: "Home" + dashboard: "Dashboard" + powered_by: "is proudly powered by" + cache: + index: + stats: "There are currently %{files_count} files in cache for a total amount of %{size} Kb" + sweep_cache: "Sweep cache" + cache: "Cache" + explanations: "To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself." + accounts: + back_to: "← Back to %{place}" + back_to_login: "Back to login" + create_account: "Create an account" + lost_my_password: "I've lost my password" + login: + login: "Login" + password: "Password" + remember_me: "Remember me" + sign_in: "Sign in" + confirm: + proceed_to: "Proceed to %{link}" + admin: "admin" + recover_password: + username_or_email: "Username or email" + reset_my_password: "Reset my password" + signup: + username: "Username" + email: "Email" + signup: "Signup" post_types: new: post_types: "Post Types" diff --git a/config/locales/nb-NO.yml b/config/locales/nb-NO.yml index decc3c4d17..e1be6b8e01 100644 --- a/config/locales/nb-NO.yml +++ b/config/locales/nb-NO.yml @@ -5,6 +5,16 @@ nb-NO: next: "Neste" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Last opp en fil til siden din" + upload: "Last opp" + filename: "Filnavn" + right_click_for_link: "høyreklikk for lenke" + content_type: "Innholdstype (Content Type)" + file_size: "Filstørrelse" + date: "Dato" post_types: new: post_types: "Post Types" diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 1c37713794..22e3350772 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -5,6 +5,16 @@ nl: next: "Volgende" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Upload een bestand naar je site" + upload: "Upload" + filename: "Bestandsnaam" + right_click_for_link: "rechts-klikken voor link" + content_type: "Content Type" + file_size: "Bestandsgrootte" + date: "Datum" post_types: new: post_types: "Post Types" diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 2392d6ec8d..b5b30f56db 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -5,6 +5,16 @@ pl: next: "Następne" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Wyślij plik na swój blog" + upload: "Wyślij" + filename: "Nazwa pliku" + right_click_for_link: "Kliknij PPM by uzyskać łącze" + content_type: "Typ treści" + file_size: "Rozmiar pliku" + date: "Data" post_types: new: post_types: "Post Types" diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index a60c494d27..5ae4d47546 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -5,6 +5,16 @@ pt-BR: next: "Próximo" last: "Anterior" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Sube un Archivo a tu sitio" + upload: "Subir" + filename: "Nombre del archivo" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "Tamaño del Archivo" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/ro.yml b/config/locales/ro.yml index fff60d34dc..6bde7b5d7d 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -5,6 +5,16 @@ ro: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Încarcă un fișier în site" + upload: "Încarcă" + filename: "Nume de fișier" + right_click_for_link: "right-click for link" + content_type: "Tip de conținut (content type)" + file_size: "Dimensiunea fișierului" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 7df154704a..1793066414 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -5,6 +5,16 @@ ru: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "Upload a File to your Site" + upload: "Upload" + filename: "Filename" + right_click_for_link: "right-click for link" + content_type: "Content Type" + file_size: "File Size" + date: "Дата" post_types: new: post_types: "Post Types" diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index 7cb3a640b0..cd02fdb075 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -5,6 +5,16 @@ zh-CN: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "上傳一個檔案到你的網點" + upload: "上傳" + filename: "檔案名稱" + right_click_for_link: "右鍵連結" + content_type: "內容類型" + file_size: "檔案大小" + date: "日期" post_types: new: post_types: "Post Types" diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 80e35434fc..758858db96 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -5,6 +5,16 @@ zh-TW: next: "Next" last: "Last" admin: + resources: + index: + media_library: "Media Library" + upload_a_file_to_your_site: "上傳一個檔案到你的網點" + upload: "上傳" + filename: "檔案名稱" + right_click_for_link: "右鍵連結" + content_type: "內容類型" + file_size: "檔案大小" + date: "Date" post_types: new: post_types: "Post Types" diff --git a/lang/da_DK.rb b/lang/da_DK.rb index 7b63968e3b..157da6e40f 100644 --- a/lang/da_DK.rb +++ b/lang/da_DK.rb @@ -106,30 +106,11 @@ l.store "Your profile", "Din profil" # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Indholdstype (Content Type)" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Forrige side" l.store "Next page", "Næste side" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Upload en fil til din side" - l.store "File", "" - l.store "Upload", "Upload" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Er du sikker på du vil slette denne fil" l.store "Delete this file from the webserver?", "Slet denne fil fra webserveren?" l.store "File Uploads", "Fil Uploads" - - l.store "Thumbnail", "" - l.store "File Size", "Filstørrelse" - l.store "right-click for link", "højreklik for link" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Filnavn" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" diff --git a/lang/de_DE.rb b/lang/de_DE.rb index 102daeb485..f90fc42da6 100644 --- a/lang/de_DE.rb +++ b/lang/de_DE.rb @@ -107,30 +107,14 @@ l.store "Pages","Seiten" l.store "Are you sure you want to delete the page", "Sind Sie sicher, diese Seite zu löschen" l.store "Delete this page", "Diese Seite löschen" - l.store "Content Type", "Content Type" - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Vorherige Seite" l.store "Next page", "Nächste Seite" - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Legen Sie einen Dateianhang an ihrer Site an" - l.store "File", "" - l.store "Upload", "Upload" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Sind Sie sicher, diese Datei zu löschen" l.store "Delete this file from the webserver?", "Diese Datei vom Webserver löschen?" l.store "File Uploads", "Dateianhänge" - l.store "Thumbnail", "" - l.store "File Size", "Dateigröße" - l.store "right-click for link", "" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Dateiname" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" diff --git a/lang/es_MX.rb b/lang/es_MX.rb index 7a097d7945..623ebb8aac 100644 --- a/lang/es_MX.rb +++ b/lang/es_MX.rb @@ -103,54 +103,10 @@ l.store "Previous page", "Página anterior" l.store "Next page", "Página siguiente" - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Sube un Archivo a tu sitio" - l.store "File", "" - l.store "Upload", "Subir" - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "¿Estás seguro que deseas eliminar este archivo?" 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 "right-click for link", "" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Nombre del archivo" - l.store "Browse", "" - - # app/views/admin/seo/index.html.erb - l.store "SEO", "" - l.store "Global SEO settings", "" - l.store "Titles", "" - l.store "General settings", "" - l.store "Use meta keywords", "" - l.store "Meta description", "" - l.store "Meta keywords", "" - 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", "" - l.store "Use canonical URL", "" - l.store "Read more about %s", "" - l.store "Google", "" - l.store "Google Analytics", "" - l.store "Google Webmaster Tools validation link", "" - l.store "Custom tracking code", "" - l.store "Global settings", "" - l.store "This will display", "" - 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/titles.html.erb l.store "The blog's name", "" l.store "The blog's tagline / description", "" diff --git a/lang/fr_FR.rb b/lang/fr_FR.rb index 94a860f518..63126f8c62 100644 --- a/lang/fr_FR.rb +++ b/lang/fr_FR.rb @@ -165,25 +165,14 @@ l.store "Previous page", "Page précédente" l.store "Next page", "Page suivante" - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Envoyer un fichier sur votre site" - l.store "Upload", "Ajouter un fichier joint" - l.store "Media Library", "Bibliothèque de média" - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Êtes-vous certain de vouloir supprimer ce fichier" l.store "Delete this file from the webserver?", "Supprimer complètement ce fichier du site ?" l.store "File Uploads", "Ajout de fichiers" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Fichier" - l.store "Content Type", "Type de contenu" - l.store "File Size", "Taille du fichier" l.store "Thumbnail", "Miniatures" l.store "Medium size", "Taille moyenne" l.store "Original size", "Fichier original" l.store "Files", "Fichiers" - l.store "right-click for link", "clic droit pour le lien" l.store "Browse", "Parcourir" # app/views/admin/seo/index.html.erb diff --git a/lang/he_IL.rb b/lang/he_IL.rb index bfe1b00b10..559e6a395f 100644 --- a/lang/he_IL.rb +++ b/lang/he_IL.rb @@ -160,25 +160,12 @@ l.store "Pages", "דפים" l.store "Are you sure you want to delete the page", "האם אתה בטוח שברצונך למחוק דף זה ?" l.store "Delete this page", "מחק דף זה" - l.store "Content Type", "סוג התוכן" l.store "Previous page", "הדף הקודם" l.store "Next page", "הדף הבא" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "העלה קובץ לאתר שלך" l.store "File", "קובץ" - l.store "Upload", "העלה" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "האם אתה בטוח שברצונך למחוק קובץ זה ?" l.store "Delete this file from the webserver?", "למחוק קובץ זה מהשרת" l.store "File Uploads", "העלאות קבצים" - l.store "File Size", "גודל הקובץ" - l.store "right-click for link", "לחיצה ימנית לקישור" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "שם הקובץ" - l.store "Browse", "" # app/views/admin/seo/index.html.erb l.store "SEO", "" @@ -210,7 +197,6 @@ 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:", "" @@ -231,10 +217,8 @@ l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" - l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" diff --git a/lang/it_IT.rb b/lang/it_IT.rb index bb468a4bcd..fb6942110a 100644 --- a/lang/it_IT.rb +++ b/lang/it_IT.rb @@ -131,30 +131,14 @@ l.store "Delete this page", "Elimina questa pagina" # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Tipo di contenuto" l.store "Previous page", "Pagina precedente" l.store "Next page", "Pagina successiva" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Invia un file al tuo sito" l.store "File", "File" - l.store "Upload", "Invia" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Sei sicuro di voler eliminare questo file" l.store "Delete this file from the webserver?", "Eliminare questo file dal webserver ?" l.store "File Uploads", "Invia file" - # app/views/admin/resources/images.html.erb - l.store "Thumbnail", "" - l.store "File Size", "Dimensione" - l.store "right-click for link", "clicca col destro per il link" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Nome del file" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" @@ -185,7 +169,6 @@ l.store "Description template", "" l.store "Paginated archives", "" - l.store "Dated archives", "" l.store "The blog's name", "" l.store "The blog's tagline / description", "" l.store "Replaced with the category/tag name", "" diff --git a/lang/ja_JP.rb b/lang/ja_JP.rb index 191db5494a..acc11082e7 100644 --- a/lang/ja_JP.rb +++ b/lang/ja_JP.rb @@ -117,32 +117,14 @@ l.store "Pages","ページ" l.store "Are you sure you want to delete the page", "本当にこのページを削除してよろしいですか?" l.store "Delete this page", "このページを削除" - - # app/views/admin/profiles/index.html.erb l.store "Your profile", "あなたのプロフィール" - - # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "コンテンツタイプ" l.store "Previous page", "前のページ" l.store "Next page", "次のページ" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "サイトにファイルをアップロード" l.store "File", "ファイル" - l.store "Upload", "アップロード" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "本当にこのファイルを削除してよろしいですか?" l.store "Delete this file from the webserver?", "webサーバーからこのファイルを削除しますか?" l.store "File Uploads", "ファイルアップロード" - l.store "File Size", "ファイルサイズ" - l.store "right-click for link", "右クリックでリンク" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "ファイル名" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" @@ -169,7 +151,6 @@ # app/views/admin/seo/permalinks.html.erb l.store "Here are some examples to get you started.", "" - l.store "Date and title", "" l.store "Month and title", "" l.store "Title only", "" l.store "your article slug. Using this slug is mandatory.", "" @@ -185,7 +166,6 @@ l.store "Description template", "" l.store "Articles", "" l.store "Paginated archives", "" - l.store "Dated archives", "" l.store "Search results", "" l.store "Help on title settings", "" l.store "The blog's tagline / description", "" diff --git a/lang/lt_LT.rb b/lang/lt_LT.rb index 7ad043f268..871ef6179e 100644 --- a/lang/lt_LT.rb +++ b/lang/lt_LT.rb @@ -80,31 +80,13 @@ l.store "Pages","Seiten" l.store "Are you sure you want to delete the page", "Sind Sie sicher, diese Seite zu löschen" l.store "Delete this page", "Diese Seite löschen" - - # app/views/admin/profiles/index.html.erb l.store "Your profile", "" - l.store "Previous page", "Buvęs puslapis" # reikia kitaip kazkaip l.store "Next page", "Sekantis puslapis" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Legen Sie einen Dateianhang an ihrer Site an" - l.store "File", "" - l.store "Upload", "Upload" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Sind Sie sicher, diese Datei zu löschen" l.store "Delete this file from the webserver?", "Diese Datei vom Webserver löschen?" l.store "File Uploads", "Dateianhänge" - l.store "Thumbnail", "" - l.store "File Size", "Dateigröße" - l.store "right-click for link", "" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Dateiname" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" diff --git a/lang/nb_NO.rb b/lang/nb_NO.rb index a8024f79f1..473e0d8f9e 100644 --- a/lang/nb_NO.rb +++ b/lang/nb_NO.rb @@ -222,32 +222,16 @@ l.store "New Redirect", "Ny omdirigering" l.store "From", "Fra" l.store "To", "Til" - - # app/views/admin/redirects/new.html.erb l.store "%s Redirect", "%s omdirigering" - l.store "Previous page", "Forrige side" l.store "Next page", "Neste side" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Last opp en fil til siden din" l.store "File", "Fil" - l.store "Upload", "Last opp" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Er du sikker på du vil slette denne filen" l.store "Delete this file from the webserver?", "Slett denne filen fra webtjeneren?" l.store "File Uploads", "Opplastede filer" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Filnavn" - l.store "Content Type", "Innholdstype (Content Type)" - l.store "File Size", "Filstørrelse" l.store "Thumbnail", "Thumbnail" l.store "Medium size", "Mellomstor" l.store "Original size", "Opprinnelig størrelse" - l.store "right-click for link", "høyreklikk for lenke" - l.store "Browse", "" # app/views/admin/seo/index.html.erb l.store "General settings", "Generelle innstillinger" @@ -371,7 +355,6 @@ l.store "Latitude, Longitude", "Breddegrad, lengdegrad" l.store "your latitude and longitude", "din breddegrad og lengdegrad" l.store "example", "for eksempel" - l.store "Media", "" l.store "Image thumbnail size", "Liten bildestørrelse" l.store "Image medium size", "Mellomstor bildestørrelse" l.store "Write", "Skriv" diff --git a/lang/nl_NL.rb b/lang/nl_NL.rb index da37418b9e..f963ddc2cf 100644 --- a/lang/nl_NL.rb +++ b/lang/nl_NL.rb @@ -202,30 +202,14 @@ l.store "Are you sure you want to delete the page", "Weet je zeker dat je deze pagina wilt verwijderen" l.store "Delete this page", "Verwijder deze pagina" l.store "Your profile", "Je profiel" - l.store "Content Type", "Content Type" l.store "Previous page", "Vorige pagina" l.store "Next page", "Volgende pagina" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Upload een bestand naar je site" l.store "File", "Bestand" - l.store "Upload", "Upload" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Weet je zeker dat je dit bestand wilt verwijderen?" l.store "Delete this file from the webserver?", "Verwijder dit bestand van de webserver?" l.store "File Uploads", "Bestand Uploads" - l.store "Thumbnail", "Voorafbeelding" - l.store "File Size", "Bestandsgrootte" - l.store "right-click for link", "rechts-klikken voor link" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Bestandsnaam" - l.store "Browse", "" - - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" l.store "Titles", "" diff --git a/lang/pl_PL.rb b/lang/pl_PL.rb index c256d9d998..6ea4f1e6f4 100644 --- a/lang/pl_PL.rb +++ b/lang/pl_PL.rb @@ -137,29 +137,16 @@ l.store "Your profile", "" # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Typ treści" l.store "Previous page", "Poprzednia strona" l.store "Next page", "Następna strona" # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Wyślij plik na swój blog" l.store "File", "Plik" - l.store "Upload", "Wyślij" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Czy na pewno chcesz skasować ten plik" l.store "Delete this file from the webserver?", "Skasować ten plik z serwera?" l.store "File Uploads", "Wysłane pliki" - l.store "Thumbnail", "" - l.store "File Size", "Rozmiar pliku" - l.store "right-click for link", "Kliknij PPM by uzyskać łącze" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Nazwa pliku" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" @@ -199,10 +186,8 @@ l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" - l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" - l.store "Replaced by the archive date", "" # app/views/admin/settings/_submit.html.erb l.store "Update settings", "" diff --git a/lang/pt_BR.rb b/lang/pt_BR.rb index 04518ec9a9..995412fd06 100644 --- a/lang/pt_BR.rb +++ b/lang/pt_BR.rb @@ -171,32 +171,12 @@ # app/views/admin/profiles/index.html.erb l.store "Your profile", "" - - # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "Content Type" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "Página anterior" l.store "Next page", "Página siguiente" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "Sube un Archivo a tu sitio" - l.store "File", "" - l.store "Upload", "Subir" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "¿Estás seguro que deseas eliminar este archivo?" l.store "Delete this file from the webserver?", "¿Eliminar este archivo del servidor?" l.store "File Uploads", "Archivos subidos" - l.store "Thumbnail", "" - l.store "File Size", "Tamaño del Archivo" - l.store "right-click for link", "" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Nombre del archivo" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" diff --git a/lang/ro_RO.rb b/lang/ro_RO.rb index 2ff645f8f1..5960cb0cb9 100644 --- a/lang/ro_RO.rb +++ b/lang/ro_RO.rb @@ -61,28 +61,14 @@ l.store "Pages","Pagini" l.store "Are you sure you want to delete the page", "Ești sigur că dorești să ștergi această pagină" l.store "Delete this page", "Șterge această pagină" - l.store "Content Type", "Tip de conținut (content type)" l.store "Previous page", "Pagina anterioară" l.store "Next page", "Pagina următoare" - l.store "Upload a File to your Site", "Încarcă un fișier în site" - l.store "Upload", "Încarcă" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "Ești sigur că dorești să ștergi acest fișier" 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" - - l.store "Thumbnail", "" - l.store "File Size", "Dimensiunea fișierului" - l.store "right-click for link", "" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "Nume de fișier" l.store "Browse", "" l.store "Displays links to monthly archives", "" l.store "Displays a list of authors ordered by name with links to their articles and profile", "" - l.store "Livesearch", "" - l.store "Adds livesearch to your Publify blog", "" l.store "This widget just displays links to Publify main site, this blog's admin and RSS.", "" l.store "Show pages for this blog", "" l.store "Static", "" diff --git a/lang/zh_CN.rb b/lang/zh_CN.rb index af5e63f67b..f15814210c 100644 --- a/lang/zh_CN.rb +++ b/lang/zh_CN.rb @@ -178,32 +178,13 @@ l.store "Pages","页数" l.store "Are you sure you want to delete the page", "你確定要刪除此頁?" l.store "Delete this page", "刪除此頁" - l.store "Content Type", "內容類型" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "前一頁" l.store "Next page", "下一頁" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "上傳一個檔案到你的網點" l.store "File", "檔案" - l.store "Upload", "上傳" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "你確定要刪除此檔案?" 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 - l.store "Filename", "檔案名稱" - l.store "Browse", "" - # app/views/admin/seo/index.html.erb l.store "SEO", "" l.store "Global SEO settings", "" @@ -236,11 +217,9 @@ l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" - l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" l.store "Replaced with the current page number", "" - l.store "Replaced by the archive date", "" l.store "Enable comments by default", "預設為可以回應" l.store "Enable Trackbacks by default", "預設為可以引用" l.store "Enable feedback moderation", "適度可以反饋" diff --git a/lang/zh_TW.rb b/lang/zh_TW.rb index 48d5d90474..a7e3222acd 100644 --- a/lang/zh_TW.rb +++ b/lang/zh_TW.rb @@ -103,29 +103,12 @@ # app/views/admin/profiles/index.html.erb l.store "Your profile", "" - # app/views/admin/resources/_mime_edit.html.erb - l.store "Content Type", "內容類型" - - # app/views/admin/resources/_pages.html.erb l.store "Previous page", "前一頁" l.store "Next page", "下一頁" - - # app/views/admin/resources/_upload.html.erb - l.store "Upload a File to your Site", "上傳一個檔案到你的網點" l.store "File", "檔案" - l.store "Upload", "上傳" - - # app/views/admin/resources/destroy.html.erb l.store "Are you sure you want to delete this file", "你確定要刪除此檔案?" l.store "Delete this file from the webserver?", "從網路伺服器刪除此檔案?" l.store "File Uploads", "檔案上載" - - l.store "Thumbnail", "" - l.store "File Size", "檔案大小" - l.store "right-click for link", "右鍵連結" - - # app/views/admin/resources/index.html.erb - l.store "Filename", "檔案名稱" l.store "Browse", "" # app/views/admin/seo/index.html.erb @@ -171,11 +154,9 @@ l.store "Replaced with the category/tag name", "" l.store "Replaced with the current search phrase", "" l.store "Replaced with the current time", "" - l.store "Replaced with the current date", "" l.store "Replaced with the current month", "" l.store "Replaced with the current year", "" l.store "Replaced with the current page number", "" - l.store "Replaced by the archive date", "" l.store "Enable comments by default", "預設為可以回應" l.store "Enable Trackbacks by default", "預設為可以引用" l.store "Enable feedback moderation", "適度可以反饋"