Finished translating .slim files

This commit is contained in:
Vasil Kolev 2014-08-31 22:11:46 +03:00
parent 1f599b8596
commit c91715ebdf
12 changed files with 65 additions and 23 deletions

View File

@ -1,4 +1,4 @@
h2 Изпрати отново инструкции за отключване h2 =t :resend_unlock_instructions_title
= simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| = simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
= f.error_notification = f.error_notification
@ -8,6 +8,6 @@ h2 Изпрати отново инструкции за отключване
= f.input :email, required: true, autofocus: true, hint: false = f.input :email, required: true, autofocus: true, hint: false
.form-actions .form-actions
= f.button :submit, 'Изпрати отново инструкциите' = f.button :submit, t(:resend_instructions_btn)
== render 'devise/shared/links' == render 'devise/shared/links'

View File

@ -1,2 +1,2 @@
h1.entry-title Редакция на лекция h1.entry-title = t :edit_talk
= render 'form' = render 'form'

View File

@ -1,9 +1,9 @@
h1.entry-title Моите предложения за лекции h1.entry-title = t :my_talks
- unless @lectures.empty? - unless @lectures.empty?
ul ul
= render @lectures = render @lectures
- else - else
p Все още не Сте предложили лекция p = t :no_talks_submitted
= link_to 'Предложи лекция', new_lecture_path, class: 'btn-link' = link_to t(:submit_lecture), new_lecture_path, class: 'btn-link'

View File

@ -1,2 +1,2 @@
h1.entry-title Предложи нова лекция h1.entry-title = t :submit_talk_header
= render 'form' = render 'form'

View File

@ -3,16 +3,15 @@ h2.lecture-title
span.subtitle = @lecture.subtitle span.subtitle = @lecture.subtitle
.entry-meta .entry-meta
| |
поток: „#{@lecture.track.name}“, =t :edit_title, track: @lecture.track.name, len: @lecture.length
продължителност: #{@lecture.length} мин.
section.abstract section.abstract
h3 Резюме h3 = t :abstract
= simple_format @lecture.abstract = simple_format @lecture.abstract
section.description section.description
h3 Описание h3 = t :description
= simple_format @lecture.description = simple_format @lecture.description
- if current_user == @lecture.user - if current_user == @lecture.user
= link_to 'Редактирай', edit_lecture_path(@lecture), class: 'btn-link' = link_to t(:edit), edit_lecture_path(@lecture), class: 'btn-link'

View File

@ -1,3 +1,3 @@
h1.entry-title Редакция на лекторски профил h1.entry-title =t :edit_speaker_profile
== render 'form' == render 'form'

View File

@ -1,2 +1,2 @@
h1.entry-title Редакция на уъркшоп h1.entry-title = t :edit_workshop
= render 'form' = render 'form'

View File

@ -1,9 +1,9 @@
h1.entry-title Моите предложения за уъркшопи h1.entry-title = t :my_workshops
- unless @workshops.empty? - unless @workshops.empty?
ul ul
= render @workshops = render @workshops
- else - else
p Все още не Сте предложили уъркшоп p = t :no_workshops_submitted
= link_to 'Предложи уъркшоп', new_workshop_path, class: 'btn-link' = link_to t(:submit_workshop), new_workshop_path, class: 'btn-link'

View File

@ -1,2 +1,2 @@
h1.entry-title Предложи нов уъркшоп h1.entry-title = t :new_workshop_title
= render 'form' = render 'form'

View File

@ -3,16 +3,15 @@ h2.workshop-title
span.subtitle = @workshop.subtitle span.subtitle = @workshop.subtitle
.entry-meta .entry-meta
| |
поток: „#{@workshop.track.name}“, = t :edit_title, track: @workshop.track.name, len: @workshop.length
продължителност: #{@workshop.length} мин.
section.abstract section.abstract
h3 Резюме h3 = t :abstract
= simple_format @workshop.abstract = simple_format @workshop.abstract
section.description section.description
h3 Описание h3 = t :description
= simple_format @workshop.description = simple_format @workshop.description
- if current_user == @workshop.user - if current_user == @workshop.user
= link_to 'Редактирай', edit_workshop_path(@workshop), class: 'btn-link' = link_to t(:edit), edit_workshop_path(@workshop), class: 'btn-link'

View File

@ -103,4 +103,25 @@ bg:
pass_update_hint2: Попълнете, ако искате да промените паролата или имейл адреса си. pass_update_hint2: Попълнете, ако искате да промените паролата или имейл адреса си.
update: Обнови update: Обнови
resend_unlock_instructions_title: Изпрати отново инструкции за отключване
edit_speaker_profile: Редакция на лекторски профил
edit_workshop: Редакция на уъркшоп
edit_title: поток: „%{track}“, продължителност: %{len} мин.
abstract: Резюме
description: Описание
edit: Редактирай
new_workshop_title: Предложи нов уъркшоп
my_workshops: Моите предложения за уъркшопи
no_workshops_submitted: Все още не сте предложили уъркшоп
edit_talk: Редакция на лекция
submit_talk_header: Предложи нова лекция
my_talks: Моите предложения за лекции
no_talks_submitted: Все още не сте предложили лекция

View File

@ -111,3 +111,26 @@ en:
pass_update_hint2: Fill this if you want to change your password or email. pass_update_hint2: Fill this if you want to change your password or email.
update: Обнови update: Обнови
resend_unlock_instructions_title: Re-send unlocking instructions
edit_speaker_profile: Edit speaker's profile
edit_workshop: Edit workshop
edit_title: track: „%{track}“, duration: %{len} min.
abstract: Abstract
description: Description
edit: Edit
new_workshop_title: Submit new workshop
my_workshops: My submitted workshops
no_workshops_submitted: You have no submissions for workshops
edit_talk: Edit talk
submit_talk_header: Submit new talk
my_talks: My submitted talks
no_talks_submitted: You have no submissions for talks