From e8225ca7eea958d0f27fd75c70ea0a5f59337e0f Mon Sep 17 00:00:00 2001 From: Martin Markech Date: Wed, 26 Sep 2012 22:55:32 +0200 Subject: add slovak locale --- config/locales/sk.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 config/locales/sk.yml diff --git a/config/locales/sk.yml b/config/locales/sk.yml new file mode 100644 index 0000000..7025d43 --- /dev/null +++ b/config/locales/sk.yml @@ -0,0 +1,35 @@ +sk: + refinery: + plugins: + banners: + title: Banery + banners: + admin: + banners: + actions: + create_new: Pridať novú stránku + reorder: Zmeniť usporiadanie banerov + reorder_done: Uložiť usporiadanie + records: + title: Banery + sorry_no_results: Žiadne záznamy sa nenašli + no_items_yet: Zatiaľ neboli pridané žiadne záznamy. Klikni "Pridať nový banner" pre pridanie prvého. + banner: + view_live_html: Zobraziť baner
(otvorí sa v novom okne) + edit: Upraviť tento album + delete: Zmazať tento baner + banners: + show: + other: Ďalšie banery + activerecord: + attributes: + 'refinery/banners/banner': + name: Názov + title: Nadpis + description: Popis + image: Obrázok + url: Url + is_active: Je aktívny + start_date: Dátum publikovania + expiry_date: Dátum expirácie + position: Pozícia \ No newline at end of file -- cgit v1.2.3 From f496be56148c733b492f9dd78a7183c979471b0a Mon Sep 17 00:00:00 2001 From: Martin Markech Date: Wed, 26 Sep 2012 23:25:29 +0200 Subject: fix :what{} in in image_picker --- app/views/refinery/banners/admin/banners/_form.html.erb | 4 +++- config/locales/sk.yml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/views/refinery/banners/admin/banners/_form.html.erb b/app/views/refinery/banners/admin/banners/_form.html.erb index 2cd827f..1403fc4 100644 --- a/app/views/refinery/banners/admin/banners/_form.html.erb +++ b/app/views/refinery/banners/admin/banners/_form.html.erb @@ -29,7 +29,9 @@ :f => f, :field => :image_id, :image => @banner.image, - :toggle_image_display => false %> + :toggle_image_display => false, + :description => t('refinery.banners.admin.banner') + %> diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 7025d43..5988132 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -5,6 +5,7 @@ sk: title: Banery banners: admin: + banner: baner banners: actions: create_new: Pridať novú stránku -- cgit v1.2.3 From 0a2c50a79f6e74674b8c6e167bb321a29d90bc58 Mon Sep 17 00:00:00 2001 From: Martin Markech Date: Thu, 27 Sep 2012 14:21:47 +0200 Subject: translate Pages --- config/locales/en.yml | 3 ++- config/locales/es.yml | 3 ++- config/locales/fr.yml | 3 ++- config/locales/nb.yml | 3 ++- config/locales/nl.yml | 3 ++- config/locales/sk.yml | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/config/locales/en.yml b/config/locales/en.yml index 519a5dd..6018eeb 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -32,4 +32,5 @@ en: is_active: Is Active start_date: Start Date expiry_date: Expiry Date - position: Position \ No newline at end of file + position: Position + pages: Pages \ No newline at end of file diff --git a/config/locales/es.yml b/config/locales/es.yml index 567da7f..dbb3003 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -33,4 +33,5 @@ es: is_active: Is Active start_date: Start Date expiry_date: Expiry Date - position: Position \ No newline at end of file + position: Position + pages: Páginas \ No newline at end of file diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 3a2b0ba..eaaed7e 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -32,4 +32,5 @@ fr: is_active: Is Active start_date: Start Date expiry_date: Expiry Date - position: Position \ No newline at end of file + position: Position + pages: Pages \ No newline at end of file diff --git a/config/locales/nb.yml b/config/locales/nb.yml index 04debc5..fd80d9d 100644 --- a/config/locales/nb.yml +++ b/config/locales/nb.yml @@ -32,4 +32,5 @@ nb: is_active: Is Active start_date: Start Date expiry_date: Expiry Date - position: Position \ No newline at end of file + position: Position + pages: Sider \ No newline at end of file diff --git a/config/locales/nl.yml b/config/locales/nl.yml index c637b8a..d05bf5a 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -32,4 +32,5 @@ nl: is_active: Is Active start_date: Start Date expiry_date: Expiry Date - position: Position \ No newline at end of file + position: Position + pages: "Pagina's" \ No newline at end of file diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 5988132..05876fd 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -33,4 +33,5 @@ sk: is_active: Je aktívny start_date: Dátum publikovania expiry_date: Dátum expirácie - position: Pozícia \ No newline at end of file + position: Pozícia + pages: Stránky \ No newline at end of file -- cgit v1.2.3