en: # = Alchemy Translations # All translations used in Alchemy CMS are inside this alchemy namespace. alchemy: # == Translations for page_layout names # Just use the page_layouts name like defined inside the config/alchemy/page_layouts.yml file and translate it. # # Example: # de: # alchemy: # page_layout_names: # contact: Kontakt # search: Suche # page_layout_names: layout_header: 'Header Part' layout_footer: 'Footer Part' # == Translations for element names # Just use the elements name like defined inside the config/alchemy/elements.yml file and translate it. # # Example: # de: # alchemy: # element_names: # article: Artikel # intro_image_text: Intro Artikel # element_names: article: Article intro_image_text: Intro Article text: Text bild: Image(s) bild_text: Text (Image) headline: Headline image_mosaic: Image Mosaic footnote: Footnote sitename: Website Name claim: Claim header: Header-Image intro: Intro subheadline: Subheadline news: News searchresult: Searchresults contactform: Contactform # == Translated names for contents in elements. # Used for the content editor label inside the element editor view (The elements window) # # Tip: You can translate content names globally for all contents of this name, or specificly for an element. # To do so, just place the content_name under the element name content_names: text: 'Text' date: 'Date' body: 'Content' image: 'Image(s)' mail_from: 'Sender (E-Mail)' mail_to: 'Receiver (E-Mail)' caption: "Caption" subject: 'Subject' intro: "Intro" headline: "Headline" subheadline: "Subheadline" news_headline: "News Headline" image_mosaic: caption: "Mosaic Caption" # == Translations for the build in full text search. search: no_results: 'No results found' result_heading: 'Your search for %{query} has %{count} results' # == Contactform translations contactform: labels: salutation: 'Salutation' choose: 'Please choose' mr: 'Mr.' mrs: 'Mrs.' firstname: 'Firstname' lastname: 'Lastname' address: 'Street / No.' zip: 'Zipcode / City' phone: 'Telephone' email: 'Email' message: 'Message' send: 'Send Message' mandatory_fields: 'Mandatory fields.' success_page: 'Followup page' # Translations for the contactform validations. # Validations are set in the config/alchemy/config.yml mailer section. validations: enter_name: 'Please enter your name' enter_mail: 'Please enter your email' wrong_email_format: 'Email has wrong format.' # The flash message shown after succesfully sending the message. messages: success: 'Your message was delivered succesfully.' # == Translations for the mailer templates mailer: # The mail the user gets after registering for alchemy new_user_mail: subject: 'Your credentials for my site' welcome: 'Welcome to my site' login_url_explanation: 'To login just click this link' username: 'Your username' password: 'Your password' greeting: 'Have a nice day' # Uncomment this and copy it into your locale file if you want to use your own language names. # == Translated language names # languages: # cn: # name: 'Chinese' # title: 'Chinese' # de: # name: 'German' # title: 'German' # en: # name: 'English' # title: 'English' # es: # name: 'Spanish' # title: 'Spanish' # fi: # name: 'Finnish' # title: 'Finnish' # fr: # name: 'French' # title: 'French' # it: # name: 'Italian' # title: 'Italian' # jp: # name: 'Japanese' # title: 'Japanese' # nl: # name: 'Dutch' # title: 'Dutch' # no: # name: 'Norwegian' # title: 'Norwegian' # pl: # name: 'Polish' # title: 'Polish' # pt: # name: 'Portuguese' # title: 'Portuguese' # ru: # name: 'Russian' # title: 'Russian' # se: # name: 'Swedish' # title: 'Swedish' # == User roles translations user_roles: registered: "Registered" author: "Author" editor: "Editor" admin: "Administrator" # == Mime Types translations # These are human readable mime types used for the document-type row in archive files. mime_types: audio/mp4: 'MP4-Audio' application/msword: 'Word-Document' application/rtf: 'RTF-Document' audio/mpeg: 'MP3-Audio' text/plain: 'Text-Document' video/mp4: 'MP4-Video' video/mpeg: 'MPEG-Video' application/pdf: 'PDF-Document' application/x-flash-video: 'Flash-Video' video/x-flv: 'Flash-Video' application/x-shockwave-flash: 'Flash-Movie' application/zip: 'ZIP-Archive' application/x-rar: 'RAR-Archive' application/vnd: ms-excel: 'Excel-Document' video/quicktime: 'Quicktime-Video' image/x-psd: 'Photoshop-File' image/gif: 'GIF-Image' image/png: 'PNG-Image' image/jpeg: 'JPG-Image' video/x-msvideo: 'AVI-Video' image/tiff: 'TIFF-Image' link_target_options: default: Same Window blank: New Window/Tab overlay: Overlay # END of Alchemy translation # == Rails translations # Below are Rails specific translations for date, time, number, currency, error messages and so on. date: formats: # Use the strftime parameters for formats. # When no format has been given, it uses default. # You can provide other formats here if you like! default: "%Y-%m-%d" short: "%b %d" long: "%B %d, %Y" day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] # Don't forget the nil at the beginning; there's no such thing as a 0th month month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] # Used in date_select and datime_select. order: [ :year, :month, :day ] time: formats: default: "%a, %d %b %Y %H:%M:%S %z" short: "%d %b %H:%M" long: "%B %d, %Y %H:%M" am: "am" pm: "pm" support: array: sentence_connector: "and" number: # Used in number_with_delimiter() # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' format: # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) separator: "." # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) delimiter: "," # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00) precision: 3 # Used in number_to_currency() currency: format: # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) format: "%u%n" unit: "$" # These three are to override number.format and are optional separator: "." delimiter: "," precision: 2 # Used in number_to_percentage() percentage: format: # These three are to override number.format and are optional # separator: delimiter: "" # precision: # Used in number_to_precision() precision: format: # These three are to override number.format and are optional # separator: delimiter: "" # precision: # Used in number_to_human_size() human: format: # These three are to override number.format and are optional # separator: delimiter: "" precision: 1 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() datetime: distance_in_words: half_a_minute: "half a minute" less_than_x_seconds: one: "less than 1 second" many: "less than %{count} seconds" x_seconds: one: "1 second" many: "%{count} seconds" less_than_x_minutes: one: "less than a minute" many: "less than %{count} minutes" x_minutes: one: "1 minute" many: "%{count} minutes" about_x_hours: one: "about 1 hour" many: "about %{count} hours" x_days: one: "1 day" many: "%{count} days" about_x_months: one: "about 1 month" many: "about %{count} months" x_months: one: "1 month" many: "%{count} months" about_x_years: one: "about 1 year" many: "about %{count} years" over_x_years: one: "over 1 year" many: "over %{count} years" # Translations for active record database models and error messages. activerecord: errors: template: header: one: "1 error prohibited this %{model} from being saved" other: "%{count} errors prohibited this %{model} from being saved" body: "There were problems with the following fields:" messages: inclusion: "is not included in the list" exclusion: "is reserved" invalid: "is invalid" confirmation: "doesn't match confirmation" accepted: "must be accepted" empty: "can't be empty" blank: "can't be blank" too_long: "is too long (maximum is %{count} characters)" too_short: "is too short (minimum is %{count} characters)" wrong_length: "is the wrong length (should be %{count} characters)" taken: "has already been taken" not_a_number: "is not a number" greater_than: "must be greater than %{count}" greater_than_or_equal_to: "must be greater than or equal to %{count}" equal_to: "must be equal to %{count}" less_than: "must be less than %{count}" less_than_or_equal_to: "must be less than or equal to %{count}" odd: "must be odd" even: "must be even" models: language: attributes: code: invalid: 'Format of languagecode is not valid. Please use exactly two lowercase characters.' # Translations for the authentication system used in alchemy. authlogic: authlogic: error_messages: login_blank: 'can not be blank' login_not_found: 'is not valid' login_invalid: 'should use only letters, numbers, spaces, and .-_@ please.' consecutive_failed_logins_limit_exceeded: 'Consecutive failed logins limit exceeded, account is disabled.' email_invalid: 'should look like an email address.' password_blank: 'can not be blank' password_invalid: 'is not valid' not_active: 'Your account is not active' not_confirmed: 'Your account is not confirmed' not_approved: 'Your account is not approved' no_authentication_details: 'You did not provide any details for authentication.' models: user_session: UserSession attributes: user_session: login: login email: email password: password remember_me: 'remember me'