├── VERSION ├── .ruby-version ├── .ruby-gemset ├── .document ├── .travis.yml ├── .rspec ├── Gemfile ├── .gitignore ├── lib └── rails_admin-i18n.rb ├── spec ├── rails_admin-i18n_spec.rb └── spec_helper.rb ├── LICENSE.txt ├── README.md ├── Rakefile ├── rails_admin-i18n.gemspec ├── Gemfile.lock └── locales ├── sv.yml ├── zh-CN.yml ├── he.yml ├── vi.yml ├── zh-TW.yml ├── ja.yml ├── pl.yml ├── it.yml ├── ko.yml ├── en-US.yml ├── es.yml ├── fi-FI.yml ├── lt.yml ├── nb-NO.yml ├── pt.yml ├── cs.yml ├── pt-BR.yml ├── ro.yml ├── ar.yml ├── es-MX.yml ├── mk.yml ├── de.yml ├── be.yml ├── sk.yml ├── ru.yml ├── id.yml ├── uk.yml ├── uk-UA.yml ├── en.yml ├── fr.yml ├── tl.yml ├── ca.yml ├── el.yml ├── bn.yml └── nl.yml /VERSION: -------------------------------------------------------------------------------- 1 | 1.20.2 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | rails_admin-i18n 2 | -------------------------------------------------------------------------------- /.document: -------------------------------------------------------------------------------- 1 | lib/**/*.rb 2 | bin/* 3 | - 4 | features/**/*.feature 5 | LICENSE.txt 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | before_install: 3 | - gem install bundler:1.17.2 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order=random 3 | --format Fuubar 4 | --require spec_helper 5 | --drb 6 | --tty false 7 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | 3 | group :development do 4 | gem "rspec", "~> 3.9" 5 | gem "bundler", "~> 2.1" 6 | gem "jeweler" 7 | gem "fuubar" 8 | gem 'i18n-spec' 9 | gem 'localeapp' 10 | end 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | 3 | # rcov generated 4 | coverage 5 | 6 | # rdoc generated 7 | rdoc 8 | 9 | # yard generated 10 | doc 11 | .yardoc 12 | 13 | # bundler 14 | .bundle 15 | 16 | # jeweler generated 17 | pkg 18 | 19 | .DS_Store 20 | 21 | .localeapp/ 22 | .rake_tasks~ 23 | -------------------------------------------------------------------------------- /lib/rails_admin-i18n.rb: -------------------------------------------------------------------------------- 1 | require 'rails' 2 | 3 | module RailsAdminI18n 4 | class Railtie < ::Rails::Railtie #:nodoc: 5 | initializer 'rails-i18n' do |app| 6 | I18n.load_path << Dir[File.join(File.expand_path(File.dirname(__FILE__) + '/../locales'), '*.yml')] 7 | I18n.load_path.flatten! 8 | end 9 | end 10 | end -------------------------------------------------------------------------------- /spec/rails_admin-i18n_spec.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path(File.dirname(__FILE__) + '/spec_helper') 2 | 3 | Dir.glob('locales/*.yml').each do |locale_file| 4 | describe "a rails_admin-i18n #{locale_file} locale file" do 5 | it_behaves_like 'a valid locale file', locale_file 6 | it { expect(locale_file).to be_a_subset_of 'locales/en.yml' } 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) 2 | $LOAD_PATH.unshift(File.dirname(__FILE__)) 3 | require 'rspec' 4 | require 'i18n-spec' 5 | 6 | # Requires supporting files with custom matchers and macros, etc, 7 | # in ./support/ and its subdirectories. 8 | Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} 9 | 10 | RSpec.configure do |config| 11 | 12 | end 13 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 Christopher Dell 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rails_admin-i18n 2 | 3 | [![Gem Version](https://badge.fury.io/rb/rails_admin-i18n.svg)](https://badge.fury.io/rb/rails_admin-i18n) 4 | [![Build Status](https://secure.travis-ci.org/puma07/rails_admin-i18n.png)](http://travis-ci.org/puma07/rails_admin-i18n) 5 | 6 | Translations for **[Rails Admin v0.6.6+](https://github.com/sferik/rails_admin)** pulled from various sources. 7 | 8 | ## Installation 9 | 10 | Add this line to your application's Gemfile: 11 | 12 | ```ruby 13 | gem 'rails_admin-i18n' 14 | ``` 15 | 16 | And then execute: 17 | 18 | $ bundle 19 | 20 | Or install it yourself using: 21 | 22 | $ gem install rails_admin-i18n 23 | 24 | ## Contributing 25 | 26 | 1. Fork it ( http://github.com/starchow/rails_admin-i18n ) 27 | 2. Create your feature branch (`git checkout -b my-new-translate`) 28 | 3. Commit your changes (`git commit -am 'Add some feature'`) 29 | 4. Push to the branch (`git push origin my-new-translate`) 30 | 5. Create new Pull Request 31 | 32 | Happy translating! 33 | 34 | ## Contributors 35 | 36 | https://github.com/starchow/rails_admin-i18n/graphs/contributors 37 | 38 | ## Copyright 39 | 40 | Copyright (c) 2011 Pham Trung Nam, based on [devise-i18n](https://github.com/tigrish/devise-i18n). See LICENSE.txt for further details. 41 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | require 'rubygems' 4 | require 'bundler' 5 | 6 | begin 7 | Bundler.setup(:default, :development) 8 | rescue Bundler::BundlerError => e 9 | $stderr.puts e.message 10 | $stderr.puts "Run `bundle install` to install missing gems" 11 | exit e.status_code 12 | end 13 | require 'rake' 14 | 15 | require 'jeweler' 16 | Jeweler::Tasks.new do |gem| 17 | # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options 18 | gem.name = "rails_admin-i18n" 19 | gem.homepage = "http://github.com/starchow/rails_admin-i18n" 20 | gem.license = "MIT" 21 | gem.summary = %Q{Translations for the rails_admin gem} 22 | gem.description = %Q{Translations for the rails_admin gem} 23 | gem.email = ["puma.puma07@gmail.com, luizpicolo@gmail.com"] 24 | gem.authors = ["Nam Pham Trung, Luiz Picolo"] 25 | # dependencies defined in Gemfile 26 | end 27 | Jeweler::RubygemsDotOrgTasks.new 28 | 29 | require 'rspec/core' 30 | require 'rspec/core/rake_task' 31 | RSpec::Core::RakeTask.new(:spec) do |spec| 32 | spec.pattern = FileList['spec/**/*_spec.rb'] 33 | end 34 | 35 | task :default => :spec 36 | 37 | begin 38 | # rake/rdoctask is deprecated in RDoc 2.4.2+ 39 | require 'rdoc/task' 40 | rescue LoadError 41 | require 'rake/rdoctask' 42 | end 43 | 44 | Rake::RDocTask.new do |rdoc| 45 | version = File.exist?('VERSION') ? File.read('VERSION') : "" 46 | 47 | rdoc.rdoc_dir = 'rdoc' 48 | rdoc.title = "rails_admin-i18n #{version}" 49 | rdoc.rdoc_files.include('README*') 50 | rdoc.rdoc_files.include('lib/**/*.rb') 51 | end 52 | 53 | require 'i18n-spec/tasks' 54 | -------------------------------------------------------------------------------- /rails_admin-i18n.gemspec: -------------------------------------------------------------------------------- 1 | # Generated by jeweler 2 | # DO NOT EDIT THIS FILE DIRECTLY 3 | # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' 4 | # -*- encoding: utf-8 -*- 5 | # stub: rails_admin-i18n 1.20.2 ruby lib 6 | 7 | Gem::Specification.new do |s| 8 | s.name = "rails_admin-i18n".freeze 9 | s.version = "1.20.2".freeze 10 | 11 | s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= 12 | s.require_paths = ["lib".freeze] 13 | s.authors = ["Nam Pham Trung, Luiz Picolo".freeze] 14 | s.date = "2025-07-01" 15 | s.description = "Translations for the rails_admin gem".freeze 16 | s.email = ["puma.puma07@gmail.com, luizpicolo@gmail.com".freeze] 17 | s.extra_rdoc_files = [ 18 | "LICENSE.txt", 19 | "README.md" 20 | ] 21 | s.files = [ 22 | ".document", 23 | ".rspec", 24 | ".ruby-gemset", 25 | ".ruby-version", 26 | ".travis.yml", 27 | "Gemfile", 28 | "Gemfile.lock", 29 | "LICENSE.txt", 30 | "README.md", 31 | "Rakefile", 32 | "VERSION", 33 | "lib/rails_admin-i18n.rb", 34 | "locales/ar.yml", 35 | "locales/be.yml", 36 | "locales/bn.yml", 37 | "locales/ca.yml", 38 | "locales/cs.yml", 39 | "locales/de.yml", 40 | "locales/el.yml", 41 | "locales/en-US.yml", 42 | "locales/en.yml", 43 | "locales/es-MX.yml", 44 | "locales/es.yml", 45 | "locales/fi-FI.yml", 46 | "locales/fr.yml", 47 | "locales/he.yml", 48 | "locales/id.yml", 49 | "locales/it.yml", 50 | "locales/ja.yml", 51 | "locales/ko.yml", 52 | "locales/lt.yml", 53 | "locales/mk.yml", 54 | "locales/nb-NO.yml", 55 | "locales/nl.yml", 56 | "locales/pl.yml", 57 | "locales/pt-BR.yml", 58 | "locales/pt.yml", 59 | "locales/ro.yml", 60 | "locales/ru.yml", 61 | "locales/sk.yml", 62 | "locales/sv.yml", 63 | "locales/tl.yml", 64 | "locales/uk-UA.yml", 65 | "locales/uk.yml", 66 | "locales/vi.yml", 67 | "locales/zh-CN.yml", 68 | "locales/zh-TW.yml", 69 | "rails_admin-i18n.gemspec", 70 | "spec/rails_admin-i18n_spec.rb", 71 | "spec/spec_helper.rb" 72 | ] 73 | s.homepage = "http://github.com/starchow/rails_admin-i18n".freeze 74 | s.licenses = ["MIT".freeze] 75 | s.rubygems_version = "3.5.3".freeze 76 | s.summary = "Translations for the rails_admin gem".freeze 77 | 78 | s.specification_version = 4 79 | 80 | s.add_development_dependency(%q.freeze, ["~> 3.9".freeze]) 81 | s.add_development_dependency(%q.freeze, ["~> 2.1".freeze]) 82 | s.add_development_dependency(%q.freeze, [">= 0".freeze]) 83 | s.add_development_dependency(%q.freeze, [">= 0".freeze]) 84 | s.add_development_dependency(%q.freeze, [">= 0".freeze]) 85 | s.add_development_dependency(%q.freeze, [">= 0".freeze]) 86 | end 87 | 88 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | specs: 4 | addressable (2.4.0) 5 | base64 (0.3.0) 6 | bigdecimal (3.2.2) 7 | builder (3.3.0) 8 | concurrent-ruby (1.3.5) 9 | date (3.4.1) 10 | descendants_tracker (0.0.4) 11 | thread_safe (~> 0.3, >= 0.3.1) 12 | diff-lcs (1.6.2) 13 | domain_name (0.6.20240107) 14 | erb (5.0.1) 15 | faraday (0.9.2) 16 | multipart-post (>= 1.2, < 3) 17 | fuubar (2.5.1) 18 | rspec-core (~> 3.0) 19 | ruby-progressbar (~> 1.4) 20 | git (1.11.0) 21 | rchardet (~> 1.8) 22 | github_api (0.16.0) 23 | addressable (~> 2.4.0) 24 | descendants_tracker (~> 0.0.4) 25 | faraday (~> 0.8, < 0.10) 26 | hashie (>= 3.4) 27 | mime-types (>= 1.16, < 3.0) 28 | oauth2 (~> 1.0) 29 | gli (2.22.2) 30 | ostruct 31 | hashie (5.0.0) 32 | highline (3.1.2) 33 | reline 34 | http-accept (1.7.0) 35 | http-cookie (1.0.8) 36 | domain_name (~> 0.5) 37 | i18n (1.14.7) 38 | concurrent-ruby (~> 1.0) 39 | i18n-spec (0.6.0) 40 | iso 41 | io-console (0.8.0) 42 | iso (0.4.0) 43 | i18n 44 | jeweler (2.3.9) 45 | builder 46 | bundler 47 | git (>= 1.2.5) 48 | github_api (~> 0.16.0) 49 | highline (>= 1.6.15) 50 | nokogiri (>= 1.5.10) 51 | psych 52 | rake 53 | rdoc 54 | semver2 55 | json (2.12.2) 56 | jwt (2.10.2) 57 | base64 58 | localeapp (3.3.0) 59 | gli 60 | i18n (>= 0.7, < 2) 61 | json (>= 1.7.7) 62 | rest-client (>= 1.8.0) 63 | mime-types (2.99.3) 64 | multi_json (1.15.0) 65 | multi_xml (0.7.2) 66 | bigdecimal (~> 3.1) 67 | multipart-post (2.4.1) 68 | netrc (0.11.0) 69 | nokogiri (1.18.8-x86_64-darwin) 70 | racc (~> 1.4) 71 | nokogiri (1.18.8-x86_64-linux-gnu) 72 | racc (~> 1.4) 73 | oauth2 (1.4.8) 74 | faraday (>= 0.8, < 3.0) 75 | jwt (>= 1.0, < 3.0) 76 | multi_json (~> 1.3) 77 | multi_xml (~> 0.5) 78 | rack (>= 1.2, < 3) 79 | ostruct (0.6.2) 80 | psych (5.2.6) 81 | date 82 | stringio 83 | racc (1.8.1) 84 | rack (2.2.17) 85 | rake (13.3.0) 86 | rchardet (1.9.0) 87 | rdoc (6.14.1) 88 | erb 89 | psych (>= 4.0.0) 90 | reline (0.6.1) 91 | io-console (~> 0.5) 92 | rest-client (2.1.0) 93 | http-accept (>= 1.7.0, < 2.0) 94 | http-cookie (>= 1.0.2, < 2.0) 95 | mime-types (>= 1.16, < 4.0) 96 | netrc (~> 0.8) 97 | rspec (3.13.1) 98 | rspec-core (~> 3.13.0) 99 | rspec-expectations (~> 3.13.0) 100 | rspec-mocks (~> 3.13.0) 101 | rspec-core (3.13.5) 102 | rspec-support (~> 3.13.0) 103 | rspec-expectations (3.13.5) 104 | diff-lcs (>= 1.2.0, < 2.0) 105 | rspec-support (~> 3.13.0) 106 | rspec-mocks (3.13.5) 107 | diff-lcs (>= 1.2.0, < 2.0) 108 | rspec-support (~> 3.13.0) 109 | rspec-support (3.13.4) 110 | ruby-progressbar (1.13.0) 111 | semver2 (3.4.2) 112 | stringio (3.1.7) 113 | thread_safe (0.3.6) 114 | 115 | PLATFORMS 116 | x86_64-darwin-21 117 | x86_64-linux 118 | 119 | DEPENDENCIES 120 | bundler (~> 2.1) 121 | fuubar 122 | i18n-spec 123 | jeweler 124 | localeapp 125 | rspec (~> 3.9) 126 | 127 | BUNDLED WITH 128 | 2.4.1 129 | -------------------------------------------------------------------------------- /locales/sv.yml: -------------------------------------------------------------------------------- 1 | sv: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Radera alla 6 | bulk_link: Radera markerade %{model_label_plural} 7 | menu: Radera alla 8 | title: Radera %{model_label_plural} 9 | dashboard: 10 | breadcrumb: "Översikt" 11 | menu: "Översikt" 12 | title: Administrera sidan 13 | delete: 14 | breadcrumb: Radera 15 | done: raderad 16 | link: Radera '%{object_label}' 17 | menu: Radera 18 | title: Radera %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Redigera 21 | done: uppdaterad 22 | link: Redigera %{model_label} 23 | menu: Redigera 24 | title: Redigera %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Exportera 27 | bulk_link: Exportera markerade %{model_label_plural} 28 | done: exporterad 29 | link: Exportera hittade %{model_label_plural} 30 | menu: Exportera 31 | title: Exportera %{model_label_plural} 32 | history_index: 33 | breadcrumb: Historia 34 | menu: Historia 35 | title: Historia för %{model_label_plural} 36 | history_show: 37 | breadcrumb: Historia 38 | menu: Historia 39 | title: Historia för %{model_label} '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Lista 43 | title: Lista över %{model_label_plural} 44 | new: 45 | breadcrumb: Ny 46 | done: skapad 47 | link: Skapa %{model_label} 48 | menu: Skapa ny 49 | title: Skapa %{model_label} 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: Visa 53 | title: Detaljer för %{model_label} '%{object_label}' 54 | show_in_app: 55 | menu: Visa i applikationen 56 | export: 57 | click_to_reverse_selection: Klicka föra att ta bort urvalet 58 | confirmation: Exportera till %{name} 59 | csv: 60 | col_sep: Kolumn separator 61 | col_sep_help: Lämna tom för default ('%{value}') 62 | default_col_sep: "," 63 | encoding_to: Encodera till 64 | encoding_to_help: 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: 68 | skip_header_help: 69 | display: 'Visa %{name}: %{type}' 70 | empty_value_for_associated_objects: "" 71 | fields_from: Kolumner från %{name} 72 | fields_from_associated: 73 | options_for: Inställningar för %{name} 74 | select: Välj kolumner att exportera 75 | flash: 76 | error: "%{name} lyckades inte att %{action}" 77 | model_not_found: Kan inte hitta modellen '%{model}' 78 | noaction: Inga ändringar har skett 79 | object_not_found: Hittade inte %{model} med id '%{id}' 80 | successful: 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: 83 | are_you_sure_you_want_to_delete_the_object: 84 | basic_info: Generell information 85 | bulk_delete: 86 | cancel: Avbryt 87 | char_length_of: längden av 88 | char_length_up_to: 89 | confirmation: Ja, jag är säker 90 | new_model: Ny 91 | one_char: tecken 92 | optional: Valfri 93 | required: Krävs 94 | save: Spara 95 | save_and_add_another: Spara och skapa fler 96 | save_and_edit: Spara och fortsätt redigera 97 | misc: 98 | add_filter: 99 | add_new: 100 | ago: 101 | bulk_menu_title: 102 | chose_all: 103 | chosen: 104 | clear_all: 105 | down: 106 | filter: 107 | filter_date_format: 108 | log_out: 109 | navigation: 110 | refresh: 111 | remove: 112 | search: 113 | show_all: 114 | up: 115 | table_headers: 116 | changes: 117 | created_at: 118 | item: 119 | last_used: 120 | message: 121 | model_name: 122 | records: 123 | username: 124 | home: 125 | name: Hem 126 | pagination: 127 | next: Nästa » 128 | previous: "« Föregående" 129 | truncate: "..." 130 | -------------------------------------------------------------------------------- /locales/zh-CN.yml: -------------------------------------------------------------------------------- 1 | zh-CN: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: "删除多个条目" 6 | bulk_link: "删除选中的 %{model_label_plural}" 7 | menu: "删除多个条目" 8 | title: "删除 %{model_label_plural}" 9 | dashboard: 10 | breadcrumb: "控制面板" 11 | menu: "控制面板" 12 | title: "站点管理" 13 | delete: 14 | breadcrumb: "删除" 15 | done: "已删除" 16 | link: "删除 '%{object_label}'" 17 | menu: "删除" 18 | title: "删除 %{model_label} '%{object_label}'" 19 | edit: 20 | breadcrumb: "编辑" 21 | done: "已更新" 22 | link: "编辑这个 %{model_label}" 23 | menu: "编辑" 24 | title: "编辑 %{model_label} '%{object_label}'" 25 | export: 26 | breadcrumb: "导出" 27 | bulk_link: "导出选中的 %{model_label_plural}" 28 | done: "已导出" 29 | link: "导出找到的 %{model_label_plural}" 30 | menu: "导出" 31 | title: "导出%{model_label_plural}" 32 | history_index: 33 | breadcrumb: "操作历史" 34 | menu: "操作历史" 35 | title: "%{model_label_plural} 的操作历史" 36 | history_show: 37 | breadcrumb: "操作历史" 38 | menu: "操作历史" 39 | title: "%{model_label} '%{object_label}' 的操作历史" 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: "列表" 43 | title: "%{model_label_plural}列表" 44 | new: 45 | breadcrumb: "新建" 46 | done: "已创建" 47 | link: "新建%{model_label}" 48 | menu: "创建新条目" 49 | title: "新建%{model_label}" 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: "详情" 53 | title: "%{model_label} '%{object_label}'详情" 54 | show_in_app: 55 | menu: "在应用程序中显示" 56 | export: 57 | click_to_reverse_selection: "单击以反向选择" 58 | confirmation: "以 %{name} 格式导出" 59 | csv: 60 | col_sep: "栏分隔符" 61 | col_sep_help: "留空则使用默认值('%{value}')" 62 | default_col_sep: "," 63 | encoding_to: "编码" 64 | encoding_to_help: "选择输出字符编码。留空则保留当前输入字符编码:(%{name})" 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: "无表头" 68 | skip_header_help: "不输出表头(即无栏目描述)" 69 | display: "显示%{name}: %{type}" 70 | empty_value_for_associated_objects: "<空>" 71 | fields_from: "%{name} 中的字段" 72 | fields_from_associated: "关联的 %{name} 中的字段" 73 | options_for: "%{name} 格式选项" 74 | select: "选择要导出的字段" 75 | flash: 76 | error: "%{name} 不能被 %{action}" 77 | model_not_found: "找不到模型’%{model}'" 78 | noaction: "什么也没做" 79 | object_not_found: "找不到序号为'%{id}'的模型%{model}" 80 | successful: "成功 %{action} 了 %{name} " 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: "下列相关条目将被删除或成为孤立条目" 83 | are_you_sure_you_want_to_delete_the_object: "确认要删除这个 %{model_name} 么?" 84 | basic_info: "基本信息" 85 | bulk_delete: "下列对象将被删除,相关对象将被删除或成为孤立条目" 86 | cancel: "取消" 87 | char_length_of: "长度" 88 | char_length_up_to: "最长" 89 | confirmation: "是" 90 | new_model: "%{name}(新)" 91 | one_char: "字符" 92 | optional: "可选" 93 | required: "必填" 94 | save: "保存" 95 | save_and_add_another: "保存并新建另一个" 96 | save_and_edit: "保存并继续编辑" 97 | misc: 98 | reset_filters: "重设过滤条件" 99 | add_filter: "增加过滤条件" 100 | add_new: "新建" 101 | ago: "之前" 102 | bulk_menu_title: "选中的条目" 103 | chose_all: "全选" 104 | chosen: "选择了%{name}" 105 | clear_all: "全不选" 106 | down: "下" 107 | filter: "过滤条件" 108 | filter_date_format: "月/日/年" 109 | log_out: "注销" 110 | navigation: "导航" 111 | refresh: "刷新" 112 | remove: "移除" 113 | search: "搜索" 114 | show_all: "显示全部" 115 | up: "上" 116 | table_headers: 117 | last_created: "最后新增" 118 | changes: "改动" 119 | created_at: "日期/时间" 120 | item: "条目" 121 | last_used: "最近使用" 122 | message: "消息" 123 | model_name: "(数据库)模型名称" 124 | records: "记录" 125 | username: "用户" 126 | home: 127 | name: "主页" 128 | pagination: 129 | next: "后一页 »" 130 | previous: "« 前一页" 131 | truncate: "……" 132 | -------------------------------------------------------------------------------- /locales/he.yml: -------------------------------------------------------------------------------- 1 | he: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: "מחיקה מרובה" 6 | bulk_link: "מחק %{model_label_plural} שנבחרו" 7 | menu: "מחיקה מרובה" 8 | title: "מחק %{model_label_plural}" 9 | dashboard: 10 | breadcrumb: "לוח הבקרה" 11 | menu: "לוח הבקרה" 12 | title: "ניהול האתר" 13 | delete: 14 | breadcrumb: "מחק" 15 | done: "נמחק" 16 | link: "מחק '%{object_label}'" 17 | menu: "מחק" 18 | title: "מחק %{model_label} '%{object_label}'" 19 | edit: 20 | breadcrumb: "ערוך" 21 | done: "עודכן" 22 | link: "ערוך %{model_label} זה" 23 | menu: "ערוך" 24 | title: "ערוך %{model_label} '%{object_label}'" 25 | export: 26 | breadcrumb: "ייצא" 27 | bulk_link: "ערוך %{model_label_plural} שנבחרו" 28 | done: "יוצא" 29 | link: "ייצא %{model_label_plural}" 30 | menu: "ייצא" 31 | title: "ייצא %{model_label_plural}" 32 | history_index: 33 | breadcrumb: "היסטוריה" 34 | menu: "היסטוריה" 35 | title: "היסטוריה עבור %{model_label_plural}" 36 | history_show: 37 | breadcrumb: "היסטוריה" 38 | menu: "היסטוריה" 39 | title: "היסטוריה עבור %{model_label} '%{object_label}'" 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: "רשימה" 43 | title: "רשימת %{model_label_plural}" 44 | new: 45 | breadcrumb: "חדש" 46 | done: "נוצר" 47 | link: "הוסף %{model_label} חדש" 48 | menu: "הוסף חדש" 49 | title: "%{model_label} חדש" 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: "הצג" 53 | title: "פרטים עבור %{model_label} '%{object_label}'" 54 | show_in_app: 55 | menu: "הצג ביישום" 56 | export: 57 | click_to_reverse_selection: "לחץ להיפוך בחירה" 58 | confirmation: "ייצא ל %{name}" 59 | csv: 60 | col_sep: "מפריד עמודה" 61 | col_sep_help: "השאר ריק לברירת מחדל ('%{value}')" 62 | default_col_sep: "," 63 | encoding_to: "קודד ל-" 64 | encoding_to_help: "בחר קידוד. השאר ריק להשאר ללא שינוי: (%{name})" 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: "ללא כותרת" 68 | skip_header_help: "אל תייצא כותרת (ללא תיאור שדות)" 69 | display: "הצג %{name}: %{type}" 70 | empty_value_for_associated_objects: "<ריק>" 71 | fields_from: "שדות מתוך %{name}" 72 | fields_from_associated: "שדות קשורים מ-%{name}" 73 | options_for: "אפשרויות מתוך %{name}" 74 | select: "בחר שדות לייצוא" 75 | flash: 76 | error: "הפעולה %{action} נכשלה עבור %{name}" 77 | model_not_found: "המודל '%{model}' לא נמצא" 78 | noaction: "שום פעולה לא נבחרה" 79 | object_not_found: "%{model} עם מזהה '%{id}' לא נמצא" 80 | successful: "הפעולה %{action} בוצעה עבור %{name}" 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: "? הפריטים הבאים עלולים להמחק או להנתק:" 83 | are_you_sure_you_want_to_delete_the_object: "האם אתה בטוחה שאתה רוצה למחוק את ה-%{model_name}" 84 | basic_info: "מידע בסיסי" 85 | bulk_delete: "הפריטים הבאים יימחקו, מה שעלול למחוק או לנתק את התלויות הקשורות:" 86 | cancel: "בטל" 87 | char_length_of: "אורך של" 88 | char_length_up_to: "אורך עד ל-" 89 | confirmation: "כן, אני בטוח" 90 | new_model: "%{name} (חדש)" 91 | one_char: "תו" 92 | optional: "אופציונאלי" 93 | required: "נדרש" 94 | save: "שמור" 95 | save_and_add_another: "שמור והוסף אחר" 96 | save_and_edit: "שמור וערוך" 97 | misc: 98 | add_filter: "הוסף פילטר" 99 | add_new: "הוסף חדש" 100 | ago: "לפני" 101 | bulk_menu_title: "פריטים שנבחרו" 102 | chose_all: "בחר הכל" 103 | chosen: "%{name} שנבחר" 104 | clear_all: "נקה הכל" 105 | down: "למטה" 106 | filter: "פילטר" 107 | filter_date_format: dd/mm/yy 108 | log_out: "התנתק" 109 | navigation: "ניווט" 110 | refresh: "רענן" 111 | remove: "הסר" 112 | search: "חפש" 113 | show_all: "הצג הכל" 114 | up: "למעלה" 115 | table_headers: 116 | changes: "שינויים" 117 | created_at: "תאריך/שעה" 118 | item: "פריט" 119 | last_used: "בשימוש לאחרונה" 120 | message: "הודעה" 121 | model_name: "שם המודל" 122 | records: "רשומות" 123 | username: "משתמש" 124 | home: 125 | name: "בית" 126 | pagination: 127 | next: "הבא «" 128 | previous: "הקודם »" 129 | truncate: "…" 130 | -------------------------------------------------------------------------------- /locales/vi.yml: -------------------------------------------------------------------------------- 1 | vi: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Xóa nhiều mục 6 | bulk_link: Xóa những %{model_label_plural} đã chọn 7 | menu: Xóa nhiều mục 8 | title: Xóa %{model_label_plural} 9 | dashboard: 10 | breadcrumb: Trang quản lý 11 | menu: Trang quản lý 12 | title: Trang quản lý 13 | delete: 14 | breadcrumb: Xóa 15 | done: "đã xóa" 16 | link: Xóa '%{object_label}' 17 | menu: Xóa 18 | title: Xóa %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Chỉnh sửa 21 | done: "đã chỉnh sửa" 22 | link: Chỉnh sửa %{model_label} này 23 | menu: Chỉnh sửa 24 | title: Chỉnh sửa %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Export 27 | bulk_link: Export selected %{model_label_plural} 28 | done: exported 29 | link: Export %{model_label_plural} được tìm thấy 30 | menu: Export 31 | title: Export %{model_label_plural} 32 | history_index: 33 | breadcrumb: Lịch sử 34 | menu: Lịch sử 35 | title: Lịch sử của %{model_label_plural} 36 | history_show: 37 | breadcrumb: Lịch sử 38 | menu: Lịch sử 39 | title: Lịch sử của %{model_label} '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Danh sách 43 | title: Danh sách của %{model_label_plural} 44 | new: 45 | breadcrumb: Thêm 46 | done: "đã tạo" 47 | link: Thêm một %{model_label} mới 48 | menu: Thêm mới 49 | title: Thêm %{model_label} 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: Chi tiết 53 | title: Chi tiết %{model_label} '%{object_label}' 54 | show_in_app: 55 | menu: Hiển thị trong ứng dụng 56 | export: 57 | click_to_reverse_selection: Nhấn vào đây để đảo ngược lựa chọn 58 | confirmation: Export to %{name} 59 | csv: 60 | col_sep: Column separator 61 | col_sep_help: Leave blank for default ('%{value}') 62 | default_col_sep: "," 63 | encoding_to: Encode to 64 | encoding_to_help: 'Choose output encoding. Leave empty to let current input encoding untouched: (%{name})' 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: No header 68 | skip_header_help: Do not output a header (no fields description) 69 | display: 'Hiển thị %{name}: %{type}' 70 | empty_value_for_associated_objects: "" 71 | fields_from: Các cột của %{name} 72 | fields_from_associated: Các cột liên quan %{name} 73 | options_for: Tùy chọn cho %{name} 74 | select: Chọn các cột để export 75 | flash: 76 | error: "%{name} thất bại %{action}" 77 | model_not_found: 'Không thể tìm thấy lớp ''%{model}'' ' 78 | noaction: Không có thao tác được chọn 79 | object_not_found: Không thể tìm thấy %{model} với id bằng '%{id}' 80 | successful: "%{name} thành công %{action}" 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: "? Các mục có liên quan sau đây có thể bị xóa hoặc mồ côi:" 83 | are_you_sure_you_want_to_delete_the_object: Bạn có chắc bạn muốn xóa %{model_name} này 84 | basic_info: Thông tin cơ bản 85 | bulk_delete: 'Các đối tượng sau đây sẽ bị xóa, một số phụ thuộc liên quan của các đối tượng này có thể bị xóa hoặc mồ côi:' 86 | cancel: Hủy 87 | char_length_of: dài của 88 | char_length_up_to: dài tới 89 | confirmation: Có, chắc chắn! 90 | new_model: "%{name} (mới)" 91 | one_char: ký tự 92 | optional: Không bắt buộc, tùy chọn 93 | required: Bắt buộc 94 | save: Lưu 95 | save_and_add_another: Lưu và thêm mới 96 | save_and_edit: Lưu và chỉnh sửa 97 | misc: 98 | add_filter: Thêm bộ lọc 99 | add_new: Thêm mới 100 | ago: trước 101 | bulk_menu_title: Các mục đã chọn 102 | chose_all: Chọn tất cả 103 | chosen: Chọn %{name} 104 | clear_all: Xóa tất cả 105 | down: Xuống 106 | filter: Lọc 107 | filter_date_format: dd/mm/yy 108 | log_out: "Đăng xuất" 109 | navigation: Danh mục chính 110 | refresh: Làm mới 111 | remove: Xóa 112 | search: Tìm kiếm 113 | show_all: Hiện tất cả 114 | up: Lên 115 | table_headers: 116 | changes: Thay đổi 117 | created_at: Ngày/Giờ 118 | item: Mục 119 | last_used: Lần cuối sử dụng 120 | message: Tin nhắn 121 | model_name: Tên lớp 122 | records: Hồ sơ 123 | username: User 124 | home: 125 | name: Trang chủ 126 | pagination: 127 | next: Tiếp » 128 | previous: "« Trước" 129 | truncate: "…" 130 | -------------------------------------------------------------------------------- /locales/zh-TW.yml: -------------------------------------------------------------------------------- 1 | zh-TW: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: "刪除多個項目" 6 | bulk_link: "刪除選中的 %{model_label_plural}" 7 | menu: "刪除多個項目" 8 | title: "網站管理" 9 | delete: 10 | breadcrumb: "删除" 11 | done: "已删除" 12 | link: "删除 '%{object_label}'" 13 | menu: "删除" 14 | title: "刪除 %{model_label} '%{object_label}'" 15 | edit: 16 | breadcrumb: "編輯" 17 | done: "已更新" 18 | link: "編輯這個 %{model_label}" 19 | menu: "編輯" 20 | title: "編輯 %{model_label} '%{object_label}'" 21 | export: 22 | breadcrumb: "匯出" 23 | bulk_link: "匯出選中的 %{model_label_plural}" 24 | done: "已匯出" 25 | link: "匯出找到的 %{model_label_plural}" 26 | menu: "匯出" 27 | title: "匯出%{model_label_plural}" 28 | history_index: 29 | breadcrumb: "操作歷史" 30 | menu: "操作歷史" 31 | title: "%{model_label_plural} 的操作歷史" 32 | history_show: 33 | breadcrumb: "操作歷史" 34 | menu: "操作歷史" 35 | title: "%{model_label} '%{object_label}' 的操作歷史" 36 | index: 37 | breadcrumb: "%{model_label_plural}" 38 | menu: "列表" 39 | title: "%{model_label_plural}列表" 40 | new: 41 | breadcrumb: "新增" 42 | done: "已新增" 43 | link: "新增%{model_label}" 44 | menu: "創建新項目" 45 | title: "新建%{model_label}" 46 | show: 47 | breadcrumb: "%{object_label}" 48 | menu: "詳情" 49 | title: "%{model_label} '%{object_label}'詳情" 50 | show_in_app: 51 | menu: "在應用程式中顯示" 52 | dashboard: 53 | title: "網站管理" 54 | menu: "Menu" 55 | breadcrumb: "Dashboard" 56 | export: 57 | click_to_reverse_selection: "單擊以反向選擇" 58 | confirmation: "以 %{name} 格式匯出" 59 | csv: 60 | col_sep: "欄分隔符號" 61 | col_sep_help: "留空則使用預設值('%{value}')" 62 | default_col_sep: "," 63 | encoding_to: "編碼" 64 | encoding_to_help: "選選擇輸出字元編碼。留空則保留當前輸入字元編碼:(%{name})" 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: "無表頭" 68 | skip_header_help: "不輸出表頭(即無欄目描述)" 69 | display: "顯示%{name}: %{type}" 70 | empty_value_for_associated_objects: "<空>" 71 | fields_from: "%{name} 中的字段" 72 | fields_from_associated: "關聯的 %{name} 中的字段" 73 | options_for: "%{name} 格式選項" 74 | select: "選擇要匯出的字段" 75 | flash: 76 | error: "%{name} 不能被 %{action}" 77 | model_not_found: "找不到模型’%{model}'" 78 | noaction: "什麼也沒做" 79 | object_not_found: "找不到序號為'%{id}'的模型%{model}" 80 | successful: "成功 %{action} 了 %{name} " 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: "下列相關項目將被刪除或成為孤立項目" 83 | are_you_sure_you_want_to_delete_the_object: "確認要刪除這個 %{model_name} 麼?" 84 | basic_info: "基本訊息" 85 | bulk_delete: "下列目標將被刪除,相關目標將被刪除或成為孤立項目" 86 | cancel: "取消" 87 | char_length_of: "長度" 88 | char_length_up_to: "最長" 89 | confirmation: "是" 90 | new_model: "%{name}(新)" 91 | one_char: "字元" 92 | optional: "可選" 93 | required: "必填" 94 | save: "儲存" 95 | save_and_add_another: "儲存並新增另一個" 96 | save_and_edit: "儲存並繼續編輯" 97 | misc: 98 | reset_filters: "重設過濾條件" 99 | add_filter: "增加過濾條件" 100 | add_new: "新增" 101 | ago: "之前" 102 | bulk_menu_title: "選中的項目" 103 | chose_all: "全選" 104 | chosen: "選擇了%{name}" 105 | clear_all: "全不選" 106 | down: "下" 107 | filter: "過濾條件" 108 | filter_date_format: "月/日/年" 109 | log_out: "登出" 110 | navigation: "導航" 111 | refresh: "重新整理" 112 | remove: "移除" 113 | search: "搜尋" 114 | show_all: "全部顯示" 115 | up: "上" 116 | navigation_static_label: "連結" 117 | more: "新增 %{count} 個 %{models_name}" 118 | table_headers: 119 | last_created: "最後新增" 120 | changes: "更改" 121 | created_at: "日期/時間" 122 | item: "項目" 123 | last_used: "最近使用" 124 | message: "消息" 125 | model_name: "(資料庫)模型名稱" 126 | records: "記錄" 127 | username: "使用者" 128 | home: 129 | name: "首頁" 130 | pagination: 131 | next: "下一頁 »" 132 | previous: "« 上一頁" 133 | truncate: "……" 134 | js: 135 | true: "True" 136 | false: "False" 137 | is_present: "存在?" 138 | is_blank: "空白?" 139 | date: "日期 ..." 140 | between_and_: "在 ... 和 ... 之間" 141 | today: "今天" 142 | yesterday: "昨天" 143 | this_week: "這週" 144 | last_week: "上週" 145 | number: "數值 ..." 146 | contains: "包含" 147 | is_exactly: "完全包含" 148 | starts_with: "開始為" 149 | ends_with: "結束於" 150 | too_many_objects: "太多資料,請使用搜尋" 151 | no_objects: "沒有資料找到" 152 | loading: "載入中 ..." 153 | toggle_navigation: "Toggle navigation" 154 | -------------------------------------------------------------------------------- /locales/ja.yml: -------------------------------------------------------------------------------- 1 | ja: 2 | admin: 3 | js: 4 | true: True 5 | false: False 6 | is_present: が存在する 7 | is_blank: が空 8 | date: 日付指定 9 | between_and_: 範囲指定 10 | today: 今日 11 | yesterday: 昨日 12 | this_week: 今週 13 | last_week: 先週 14 | number: 数字指定 15 | contains: 部分一致 16 | is_exactly: 完全一致 17 | starts_with: 文字列の先頭指定 18 | ends_with: 文字列の末尾指定 19 | loading: 読み込み中... 20 | toggle_navigation: ナビゲーション切り替え 21 | home: 22 | name: ホーム 23 | pagination: 24 | previous: "« 前" 25 | next: "次 »" 26 | truncate: "…" 27 | misc: 28 | search: 検索 29 | filter: フィルタ 30 | refresh: 更新 31 | show_all: 全て表示 32 | add_filter: フィルタを追加 33 | reset_filters: フィルタを解除 34 | bulk_menu_title: 選択したアイテム 35 | remove: 削除 36 | add_new: 新規作成 37 | chosen: "選択中: %{name}" 38 | chose_all: 全て選択 39 | clear_all: 全てクリア 40 | up: Up 41 | down: Down 42 | navigation: ナビゲーション 43 | navigation_static_label: リンク 44 | log_out: ログアウト 45 | ago: 前 46 | flash: 47 | successful: "%{name}の %{action} に成功しました" 48 | error: "%{name} の %{action} に失敗しました" 49 | noaction: アクションが指定されていません 50 | model_not_found: "モデル '%{model}' が見つかりません" 51 | object_not_found: "ID '%{id}' の%{model}が見つかりません" 52 | table_headers: 53 | model_name: モデル名 54 | last_created: 最終作成 55 | last_used: 最終更新 56 | records: レコード 57 | username: ユーザ 58 | changes: 変更 59 | created_at: 日時 60 | item: アイテム 61 | message: メッセージ 62 | actions: 63 | dashboard: 64 | title: サイト管理 65 | menu: ダッシュボード 66 | breadcrumb: ダッシュボード 67 | index: 68 | title: "%{model_label_plural}の一覧" 69 | menu: 一覧 70 | breadcrumb: "%{model_label_plural}" 71 | no_records: レコードが見つかりません 72 | show: 73 | title: "%{model_label} '%{object_label}' の詳細" 74 | menu: 表示 75 | breadcrumb: "%{object_label}" 76 | show_in_app: 77 | menu: アプリで表示 78 | new: 79 | title: "新規 %{model_label}" 80 | menu: 新規作成 81 | breadcrumb: 新規 82 | link: "新規 %{model_label} を作成" 83 | done: 作成しました 84 | edit: 85 | title: "%{model_label} '%{object_label}' の編集" 86 | menu: 編集 87 | breadcrumb: 編集 88 | link: "この %{model_label} を編集" 89 | done: 更新しました 90 | delete: 91 | title: "%{model_label} '%{object_label}' の削除" 92 | menu: 削除 93 | breadcrumb: 削除 94 | link: "'%{object_label}' を削除" 95 | done: 削除しました 96 | bulk_delete: 97 | title: "%{model_label_plural} の削除" 98 | menu: 一括削除 99 | breadcrumb: 一括削除 100 | bulk_link: "選択した%{model_label_plural}の削除" 101 | export: 102 | title: "%{model_label_plural} のエクスポート" 103 | menu: エクスポート 104 | breadcrumb: エクスポート 105 | link: "クエリ結果の%{model_label_plural}をエクスポート" 106 | bulk_link: "選択した%{model_label_plural}のエクスポート" 107 | done: エクスポートしました 108 | history_index: 109 | title: "%{model_label_plural} の履歴" 110 | menu: 履歴 111 | breadcrumb: 履歴 112 | history_show: 113 | title: "%{model_label} '%{object_label}' の履歴" 114 | menu: 履歴 115 | breadcrumb: 履歴 116 | form: 117 | cancel: キャンセル 118 | basic_info: 基本情報 119 | required: 必須 120 | optional: オプション 121 | one_char: 文字 122 | char_length_up_to: "最大文字数:" 123 | char_length_of: "文字数:" 124 | save: 保存 125 | save_and_add_another: 保存してもう一つ作成 126 | save_and_edit: 保存して編集画面へ 127 | all_of_the_following_related_items_will_be_deleted: ")を削除してよろしいですか? 以下の関連するアイテムが削除されるか、親がない状態になります:" 128 | are_you_sure_you_want_to_delete_the_object: "本当に%{model_name} (" 129 | confirmation: はい。間違いありません! 130 | bulk_delete: "以下のオブジェクトが削除され、関連する依存オブジェクトも削除、または親がない状態になります:" 131 | new_model: "%{name} (新規)" 132 | export: 133 | confirmation: "%{name}としてエクスポート" 134 | select: エクスポートするフィールドの選択 135 | select_all_fields: すべてのフィールドを選択 136 | fields_from: "%{name}のフィールド" 137 | fields_from_associated: "関連%{name}のフィールド" 138 | display: "表示中: %{name}: %{type}" 139 | options_for: "%{name}のオプション" 140 | empty_value_for_associated_objects: "<空>" 141 | click_to_reverse_selection: クリックで選択を反転 142 | csv: 143 | header_for_root_methods: "%{name}" # 'model' is available 144 | header_for_association_methods: "%{name} [%{association}]" 145 | encoding_to: "エンコード:" 146 | encoding_to_help: "出力エンコードを選択して下さい。空のままにすると現在の入力エンコードのままになります: (%{name})" 147 | skip_header: ヘッダを無し 148 | skip_header_help: チェックするとヘッダ(フィールドのタイトル)を出力しません。 149 | default_col_sep: "," 150 | col_sep: カラム区切り文字 151 | col_sep_help: "空白にすると標準の '%{value}' になります。" # value is default_col_sep 152 | -------------------------------------------------------------------------------- /locales/pl.yml: -------------------------------------------------------------------------------- 1 | pl: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Usuń wiele 6 | bulk_link: Usuń zaznaczone %{model_label_plural} 7 | menu: Usuń wiele 8 | title: Usuń %{model_label_plural} 9 | dashboard: 10 | breadcrumb: Dashboard 11 | menu: Dashboard 12 | title: Panel administracyjny 13 | delete: 14 | breadcrumb: Usuń 15 | done: Usunięcie 16 | link: Usuń '%{object_label}' 17 | menu: Usuń 18 | title: Usuń %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Edytuj 21 | done: Aktualizajca 22 | link: Edytuj ten %{model_label} 23 | menu: Edytuj 24 | title: Edytuj %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Eksportuj 27 | bulk_link: Eksportuj zaznaczone %{model_label_plural} 28 | done: Eksport 29 | link: Eksportuj znalezione %{model_label_plural} 30 | menu: Eksportuj 31 | title: Eksportuj %{model_label_plural} 32 | history_index: 33 | breadcrumb: Historia 34 | menu: Historia 35 | title: Historia %{model_label_plural} 36 | history_show: 37 | breadcrumb: Historia 38 | menu: Historia 39 | title: Historia %{model_label} '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Lista 43 | title: Lista %{model_label_plural} 44 | new: 45 | breadcrumb: Nowy 46 | done: Utworzenie 47 | link: Dodaj nowy %{model_label} 48 | menu: Dodaj nowy 49 | title: Nowy %{model_label} 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: Pokaż 53 | title: Szczegóły dla %{model_label} '%{object_label}' 54 | show_in_app: 55 | menu: Pokaż w aplikacji 56 | export: 57 | select_all_fields: Zaznacz wszystkie pola 58 | click_to_reverse_selection: Kliknij aby odwrócić zaznaczenie 59 | confirmation: Eksportuj do %{name} 60 | csv: 61 | col_sep: Separator kolumny 62 | col_sep_help: Pozostaw puste dla domyślnej wartości ('%{value}') 63 | default_col_sep: "," 64 | encoding_to: Kodowanie 65 | encoding_to_help: 'Wybierze wyjściowe kodowanie. Pozostaw puste jeżeli chcesz zachować aktualne kodowanie: (%{name}) ' 66 | header_for_association_methods: "%{name} [%{association}]" 67 | header_for_root_methods: "%{name}" 68 | skip_header: Brak nagłówka 69 | skip_header_help: Nie dodawaj wiersza nagłówków 70 | display: 'Wyświetl %{name}: %{type}' 71 | empty_value_for_associated_objects: "" 72 | fields_from: Pola z %{name} 73 | fields_from_associated: Pola z powiązanego %{name} 74 | options_for: Opcje dla %{name} 75 | select: Wybierz pola do eksportu 76 | flash: 77 | error: "%{action} modelu %{name} nie powiodło się" 78 | model_not_found: Model '%{model}' nie został znaleziony 79 | noaction: Nic nie zostało zrobione 80 | object_not_found: "%{model} z id '%{id}' nie został odnaleziony" 81 | successful: "%{action} modelu %{name} powiodło się" 82 | form: 83 | all_of_the_following_related_items_will_be_deleted: "? Poniższe podobne elementy mogą zostać usunięte:" 84 | are_you_sure_you_want_to_delete_the_object: Czy jesteś pewny że chcesz usunąć %{model_name} 85 | basic_info: Podstawowe informacje 86 | bulk_delete: 'Następujące obiekty zostaną usunięte, które mogą usunąć niektóre zależności pomiędzy obiektami:' 87 | cancel: Anuluj 88 | char_length_of: długość 89 | char_length_up_to: długość do 90 | confirmation: Tak, jestem pewny 91 | new_model: "%{name} (nowy)" 92 | one_char: znak 93 | optional: Opcjonalne 94 | required: Wymagane 95 | save: Zapisz 96 | save_and_add_another: Zapisz i dodaj kolejny 97 | save_and_edit: Zapisz i edytuj 98 | misc: 99 | add_filter: Dodaj filtr 100 | add_new: Dodaj nowy 101 | ago: temu 102 | bulk_menu_title: Zaznaczone obiekty 103 | chose_all: Zaznacz wszystko 104 | chosen: Wybrane %{name} 105 | clear_all: Wyczyść wszystko 106 | down: Dół 107 | filter: Filtr 108 | filter_date_format: mm/dd/yy 109 | log_out: Wyloguj 110 | navigation: Nawigacja 111 | refresh: Odśwież 112 | remove: usuń 113 | search: Szukaj 114 | show_all: Pokaż wszystkie 115 | up: Góra 116 | table_headers: 117 | changes: Zmiany 118 | created_at: Data/Czas 119 | item: Obiekt 120 | last_used: Ostatnio użyty 121 | message: Wiadomość 122 | model_name: Nazwa modelu 123 | records: Liczba rekordów 124 | username: Użytkownik 125 | last_created: Ostatni rekord utworzono 126 | home: 127 | name: Strona główna 128 | pagination: 129 | next: Następna » 130 | previous: "« Poprzednia" 131 | truncate: "..." 132 | -------------------------------------------------------------------------------- /locales/it.yml: -------------------------------------------------------------------------------- 1 | it: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Eliminazione multipla 6 | bulk_link: Elimina %{model_label_plural} selezionati 7 | menu: Eliminazione multipla 8 | title: Elimina %{model_label_plural} 9 | dashboard: 10 | breadcrumb: Pannello di controllo 11 | menu: Pannello di controllo 12 | title: Amministrazione 13 | delete: 14 | breadcrumb: Elimina 15 | done: eliminato 16 | link: Elimina '%{object_label}' 17 | menu: Elimina 18 | title: Elimina %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Modifica 21 | done: Modificato 22 | link: Modifica questo %{model_label} 23 | menu: Modifica 24 | title: Modifica %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Esporta 27 | bulk_link: Esporta %{model_label_plural} selezionati 28 | done: Esportati 29 | link: Esporta %{model_label_plural} trovati 30 | menu: Esporta 31 | title: Esporta %{model_label_plural} 32 | history_index: 33 | breadcrumb: Storico 34 | menu: Storico 35 | title: Storico %{model_label_plural} 36 | history_show: 37 | breadcrumb: Storico 38 | menu: Storico 39 | title: Storico %{model_label} di '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Elenco 43 | title: Elenco %{model_label_plural} 44 | new: 45 | breadcrumb: Nuovo 46 | done: creato 47 | link: Aggiungi nuovo %{model_label} 48 | menu: Aggiungi nuovo 49 | title: Nuovo %{model_label} 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: Visualizza 53 | title: Dettaglio %{model_label} '%{object_label}' 54 | show_in_app: 55 | menu: Visualizza nell'applicazione 56 | export: 57 | click_to_reverse_selection: Clicca per invertire la selezione 58 | confirmation: Esporta in %{name} 59 | csv: 60 | col_sep: Separatore colonna 61 | col_sep_help: Lasciare vuoto per il valore di default ('%{value}') 62 | default_col_sep: "," 63 | encoding_to: Codifica come 64 | encoding_to_help: 'Seleziona la codifica di output. Lascia vuoto per tenere la codifica corrente: (%{name})' 65 | header_for_association_methods: "%{name} [%{association}]" 66 | header_for_root_methods: "%{name}" 67 | skip_header: Nessuna intestazione 68 | skip_header_help: Non esportare l'intestazione (nessuna descrizione per i campi) 69 | display: 'Mostra %{name}: %{type}' 70 | empty_value_for_associated_objects: "" 71 | fields_from: Campi da %{name} 72 | fields_from_associated: Campi da %{name} associato 73 | options_for: Opzioni per %{name} 74 | select: Seleziona i campi per esportare 75 | flash: 76 | error: "%{name} fallisce nel %{action}" 77 | model_not_found: Modello '%{model}' non si trova 78 | noaction: Nessuna azione presa 79 | object_not_found: "%{model} con id '%{id}' non puo essere trovato" 80 | successful: "%{name} esegue con successo %{action}" 81 | form: 82 | all_of_the_following_related_items_will_be_deleted: "? I seguenti elementi correlati potrebbero essere eliminati o resi orfani:" 83 | are_you_sure_you_want_to_delete_the_object: Sei sicuro di voler eliminare questo %{model_name} 84 | basic_info: Informazioni base 85 | bulk_delete: 'I seguenti oggetti saranno eliminati, potrebbero essere eliminati o resi orfani anche i loro elementi correlati:' 86 | cancel: Annulla 87 | char_length_of: lunghezza di 88 | char_length_up_to: lunghezza fino a 89 | confirmation: Si, sono sicuro 90 | new_model: "%{name} (new)" 91 | one_char: carattere 92 | optional: Opzionale 93 | required: Obbligatorio 94 | save: Salva 95 | save_and_add_another: Salva ed aggiungi nuovo 96 | save_and_edit: Salva e modifica 97 | misc: 98 | add_filter: Aggiungi filtro 99 | add_new: Aggiungi filtro 100 | ago: fa 101 | bulk_menu_title: Elementi selezionati 102 | chose_all: Seleziona tutto 103 | chosen: Selezionato %{name} 104 | clear_all: Pulisci 105 | down: Giù 106 | filter: Filtro 107 | filter_date_format: dd/mm/yy 108 | log_out: Esci 109 | navigation: Navigazione 110 | refresh: Ricarica 111 | remove: Rimuovi 112 | search: Cerca 113 | show_all: Mostra tutto 114 | up: Sopra 115 | table_headers: 116 | changes: Modifiche 117 | created_at: Data/Ora 118 | item: Elemento 119 | last_used: Ultimo utilizzo 120 | message: Messaggio 121 | model_name: Nome modello 122 | records: Elementi 123 | username: Utente 124 | home: 125 | name: Home 126 | pagination: 127 | next: Prossima » 128 | previous: "« Precedente" 129 | truncate: "..." 130 | -------------------------------------------------------------------------------- /locales/ko.yml: -------------------------------------------------------------------------------- 1 | ko: 2 | admin: 3 | js: 4 | true: 참 5 | false: 거짓 6 | is_present: 있는 7 | is_blank: 없는 8 | date: 날짜 ... 9 | between_and_: ... 에서 ... 사이 10 | today: 오늘 11 | yesterday: 어제 12 | this_week: 이번주 13 | last_week: 지난주 14 | number: 숫자 ... 15 | contains: 포함하는 16 | is_exactly: 정확히 17 | starts_with: 시작하는 문자 18 | ends_with: 끝나는 문자 19 | loading: "로딩..." 20 | home: 21 | name: "홈" 22 | pagination: 23 | previous: "« 이전" 24 | next: "다음 »" 25 | truncate: "…" 26 | misc: 27 | filter_date_format: "yy/mm/dd" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 28 | search: "검색" 29 | filter: "필터" 30 | refresh: "새로고침" 31 | show_all: "모두 보기" 32 | add_filter: "필터 추가" 33 | bulk_menu_title: "선택된 항목" 34 | remove: "제거" 35 | add_new: "새로 추가" 36 | chosen: "선택된 %{name}" 37 | chose_all: "모두 선택" 38 | clear_all: "모두 지우기" 39 | up: "위" 40 | down: "아래" 41 | navigation: "네비게이션" 42 | navigation_static_label: "링크" 43 | log_out: "로그아웃" 44 | ago: "전" 45 | flash: 46 | successful: "%{name}, %{action} 성공" 47 | error: "%{name}, %{action} 실패" 48 | noaction: "아무 액션도 선택되지 않았습니다" 49 | model_not_found: "'%{model}'모델을 찾을 수 없습니다" 50 | object_not_found: "ID가 '%{id}'인 %{model}을 찾을 수 없습니다" 51 | table_headers: 52 | model_name: "모델 이름" 53 | last_created: "마지막 생성" 54 | last_used: "최근 사용" 55 | records: "레코드" 56 | username: "사용자" 57 | changes: "수정" 58 | created_at: "Date/Time" 59 | item: "항목" 60 | message: "메시지" 61 | actions: 62 | dashboard: 63 | title: "사이트 관리자" 64 | menu: "대시보드" 65 | breadcrumb: "대시보드" 66 | index: 67 | title: "%{model_label_plural} 목록" 68 | menu: "목록" 69 | breadcrumb: "%{model_label_plural}" 70 | show: 71 | title: "%{model_label} '%{object_label}' 세부정보" 72 | menu: "세부정보" 73 | breadcrumb: "%{object_label}" 74 | show_in_app: 75 | menu: "앱에서 보기" 76 | new: 77 | title: "새로운 %{model_label}" 78 | menu: "새로 추가" 79 | breadcrumb: "새 항목" 80 | link: "%{model_label} 추가하기" 81 | done: "생성되었습니다" 82 | edit: 83 | title: "%{model_label} '%{object_label}' 수정" 84 | menu: "수정" 85 | breadcrumb: "수정" 86 | link: "%{model_label} 수정하기" 87 | done: "변경되었습니다" 88 | delete: 89 | title: "%{model_label} '%{object_label}' 삭제" 90 | menu: "삭제" 91 | breadcrumb: "삭제" 92 | link: "'%{object_label}' 삭제하기" 93 | done: "삭제되었습니다" 94 | bulk_delete: 95 | title: "%{model_label_plural} 삭제" 96 | menu: "여러 항목 삭제" 97 | breadcrumb: "여러 항목 삭제" 98 | bulk_link: "선택된 %{model_label_plural} 삭제하기" 99 | export: 100 | title: "%{model_label_plural} 내보내기" 101 | menu: "내보내기" 102 | breadcrumb: "내보내기" 103 | link: "%{model_label_plural} 내보내기" 104 | bulk_link: "선택된 %{model_label_plural} 내보내기" 105 | done: "내보내졌습니다" 106 | history_index: 107 | title: "%{model_label_plural} 히스토리" 108 | menu: "히스토리" 109 | breadcrumb: "히스토리" 110 | history_show: 111 | title: "%{model_label} '%{object_label}' 히스토리" 112 | menu: "히스토리" 113 | breadcrumb: "히스토리" 114 | form: 115 | cancel: "취소" 116 | basic_info: "기본 정보" 117 | required: "필수" 118 | optional: "선택" 119 | one_char: "문자" 120 | char_length_up_to: "최대 문자" 121 | char_length_of: "길이" 122 | save: "저장" 123 | save_and_add_another: "저장하고 새로 추가" 124 | save_and_edit: "저장하고 수정" 125 | all_of_the_following_related_items_will_be_deleted: "? 다음 연관된 항목들은 삭제되거나 고아가 될 수 있습니다:" 126 | are_you_sure_you_want_to_delete_the_object: "이 %{model_name}를 삭제하겠습니까?" 127 | confirmation: "네, 확실합니다" 128 | bulk_delete: "다음 항목들을 삭제하시겠습니까? (연관된 의존성이 삭제되거나 고아가 될 수도 있습니다):" 129 | new_model: "%{name} (새로 추가됨)" 130 | export: 131 | confirmation: "%{name}로 내보내기" 132 | select: "내보낼 항목을 선택하세요" 133 | select_all_fields: "모든 필드 선택" 134 | fields_from: "%{name}의 필드" 135 | fields_from_associated: "%{name}와 관련된 필드" 136 | display: "%{name} 표시: %{type}" 137 | options_for: "%{name} 옵션" 138 | empty_value_for_associated_objects: "<비어있음>" 139 | click_to_reverse_selection: '선택을 반대로 하려면 클릭하세요' 140 | csv: 141 | header_for_root_methods: "%{name}" # 'model' is available 142 | header_for_association_methods: "%{name} [%{association}]" 143 | encoding_to: "인코딩 " 144 | encoding_to_help: "출력 인코딩을 선택하세요. 선택하지 않으면 현재 인코딩(%{name})으로 출력됩니다" 145 | skip_header: "헤더 없음" 146 | skip_header_help: "헤더를 출력하지 않습니다 (필드 설명이 없음)" 147 | default_col_sep: "," 148 | col_sep: "행 구분자" 149 | col_sep_help: "빈칸으로 두면 기본값('%{value}')으로 설정됩니다" # value is default_col_sep -------------------------------------------------------------------------------- /locales/en-US.yml: -------------------------------------------------------------------------------- 1 | en-US: 2 | admin: 3 | home: 4 | name: "Home" 5 | pagination: 6 | previous: "« Prev" 7 | next: "Next »" 8 | truncate: "…" 9 | misc: 10 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 11 | search: "Search" 12 | filter: "Filter" 13 | refresh: "Refresh" 14 | show_all: "Show all" 15 | add_filter: "Add filter" 16 | bulk_menu_title: "Selected items" 17 | remove: "Remove" 18 | add_new: "Add new" 19 | chosen: "Chosen %{name}" 20 | chose_all: "Choose all" 21 | clear_all: "Clear all" 22 | up: "Up" 23 | down: "Down" 24 | navigation: "Navigation" 25 | log_out: "Log out" 26 | ago: "ago" 27 | flash: 28 | successful: "%{name} successfully %{action}" 29 | error: "%{name} failed to be %{action}" 30 | noaction: "No actions were taken" 31 | model_not_found: "Model '%{model}' could not be found" 32 | object_not_found: "%{model} with id '%{id}' could not be found" 33 | table_headers: 34 | model_name: "Model name" 35 | last_used: "Last used" 36 | records: "Records" 37 | username: "User" 38 | changes: "Changes" 39 | created_at: "Date/Time" 40 | item: "Item" 41 | message: "Message" 42 | actions: 43 | dashboard: 44 | title: "Site administration" 45 | menu: "Dashboard" 46 | breadcrumb: "Dashboard" 47 | index: 48 | title: "List of %{model_label_plural}" 49 | menu: "List" 50 | breadcrumb: "%{model_label_plural}" 51 | show: 52 | title: "Details for %{model_label} '%{object_label}'" 53 | menu: "Show" 54 | breadcrumb: "%{object_label}" 55 | show_in_app: 56 | menu: "Show in app" 57 | new: 58 | title: "New %{model_label}" 59 | menu: "Add new" 60 | breadcrumb: "New" 61 | link: "Add a new %{model_label}" 62 | done: "created" 63 | edit: 64 | title: "Edit %{model_label} '%{object_label}'" 65 | menu: "Edit" 66 | breadcrumb: "Edit" 67 | link: "Edit this %{model_label}" 68 | done: "updated" 69 | delete: 70 | title: "Delete %{model_label} '%{object_label}'" 71 | menu: "Delete" 72 | breadcrumb: "Delete" 73 | link: "Delete '%{object_label}'" 74 | done: "deleted" 75 | bulk_delete: 76 | title: "Delete %{model_label_plural}" 77 | menu: "Multiple delete" 78 | breadcrumb: "Multiple delete" 79 | bulk_link: "Delete selected %{model_label_plural}" 80 | export: 81 | title: "Export %{model_label_plural}" 82 | menu: "Export" 83 | breadcrumb: "Export" 84 | link: "Export found %{model_label_plural}" 85 | bulk_link: "Export selected %{model_label_plural}" 86 | done: "exported" 87 | history_index: 88 | title: "History for %{model_label_plural}" 89 | menu: "History" 90 | breadcrumb: "History" 91 | history_show: 92 | title: "History for %{model_label} '%{object_label}'" 93 | menu: "History" 94 | breadcrumb: "History" 95 | form: 96 | cancel: "Cancel" 97 | basic_info: "Basic info" 98 | required: "Required" 99 | optional: "Optional" 100 | one_char: "character" 101 | char_length_up_to: "length up to" 102 | char_length_of: "length of" 103 | save: "Save" 104 | save_and_add_another: "Save and add another" 105 | save_and_edit: "Save and edit" 106 | all_of_the_following_related_items_will_be_deleted: "? The following related items may be deleted or orphaned:" 107 | are_you_sure_you_want_to_delete_the_object: "Are you sure you want to delete this %{model_name}" 108 | confirmation: "Yes, I'm sure" 109 | bulk_delete: "The following objects will be deleted, which may delete or orphan some of their related dependencies:" 110 | new_model: "%{name} (new)" 111 | export: 112 | confirmation: "Export to %{name}" 113 | select: "Select fields to export" 114 | fields_from: "Fields from %{name}" 115 | fields_from_associated: "Fields from associated %{name}" 116 | display: "Display %{name}: %{type}" 117 | options_for: "Options for %{name}" 118 | empty_value_for_associated_objects: "" 119 | click_to_reverse_selection: 'Click to reverse selection' 120 | csv: 121 | header_for_root_methods: "%{name}" # 'model' is available 122 | header_for_association_methods: "%{name} [%{association}]" 123 | encoding_to: "Encode to" 124 | encoding_to_help: "Choose output encoding. Leave empty to let current input encoding untouched: (%{name})" 125 | skip_header: "No header" 126 | skip_header_help: "Do not output a header (no fields description)" 127 | default_col_sep: "," 128 | col_sep: "Column separator" 129 | col_sep_help: "Leave blank for default ('%{value}')" # value is default_col_sep 130 | -------------------------------------------------------------------------------- /locales/es.yml: -------------------------------------------------------------------------------- 1 | es: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Eliminación Múltiple 6 | bulk_link: Eliminar los %{model_label_plural} seleccionados 7 | menu: Eliminación Múltiple 8 | title: Eliminar %{model_label_plural} 9 | dashboard: 10 | breadcrumb: Panel de control 11 | menu: Panel de control 12 | title: Administración del Sitio 13 | delete: 14 | breadcrumb: Eliminar 15 | done: Eliminado 16 | link: Eliminar '%{object_label}' 17 | menu: Eliminar 18 | title: Eliminar %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Editar 21 | done: Actualizado 22 | link: Editar este %{model_label} 23 | menu: Editar 24 | title: Editar %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Exportar 27 | bulk_link: Exportar Seleccionados %{model_label_plural} 28 | done: exportado 29 | link: Exportar %{model_label_plural} encontrados 30 | menu: Exportar 31 | title: Exportar %{model_label_plural} 32 | history_index: 33 | breadcrumb: Historial 34 | menu: Historial 35 | title: Historial para %{model_label_plural} 36 | history_show: 37 | breadcrumb: Historial 38 | menu: Historial 39 | title: Historial para %{model_label} '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Lista 43 | title: Lista de %{model_label_plural} 44 | no_records: No se han encontrado registros 45 | new: 46 | breadcrumb: Nuevo 47 | done: creado 48 | link: Añadir un nuevo %{model_label} 49 | menu: Añadir Nuevo 50 | title: Nuevo %{model_label} 51 | show: 52 | breadcrumb: "%{object_label}" 53 | menu: Ver 54 | title: Detalles para %{model_label} "%{object_label}" 55 | show_in_app: 56 | menu: Ver en la aplicación 57 | export: 58 | click_to_reverse_selection: Haga click para invertir la selección 59 | confirmation: Exportar a %{name} 60 | csv: 61 | col_sep: Separador de columnas 62 | col_sep_help: Deje en blanco para el de defecto ('%{value}') 63 | default_col_sep: "," 64 | encoding_to: Codificar a 65 | encoding_to_help: "Elija la codificación de salida. Deje en blanco para no cambiar la codificación actual: (%{name})" 66 | header_for_association_methods: "%{name} [%{association}]" 67 | header_for_root_methods: "%{name}" 68 | skip_header: Sin cabecera 69 | skip_header_help: No incluir un encabezado (sin descripción de los campos) 70 | display: "Mostrar %{name}: %{type}" 71 | empty_value_for_associated_objects: "" 72 | fields_from: Campos de %{name} 73 | fields_from_associated: Campos del %{name} asociado 74 | options_for: Opciones para %{name} 75 | select: Seleccione los campos a exportar 76 | flash: 77 | error: "%{name} no se ha %{action}" 78 | model_not_found: El modelo '%{model}' no se pudo encontrar 79 | noaction: No se llevó a cabo ninguna acción 80 | object_not_found: "%{model} con id '%{id}' no se pudo encontrar" 81 | successful: "%{name} %{action} con éxito" 82 | form: 83 | all_of_the_following_related_items_will_be_deleted: "? Los siguientes elementos relacionados pueden ser eliminados o quedar huérfanos:" 84 | are_you_sure_you_want_to_delete_the_object: "¿Está seguro de que quiere eliminar este %{model_name}" 85 | basic_info: Información Básica 86 | bulk_delete: "Los siguientes objetos serán eliminados, lo cual puede eliminar o dejar huérfanas algunas de sus dependencias relacionadas:" 87 | cancel: Cancelar 88 | char_length_of: longitud de 89 | char_length_up_to: longitud de hasta 90 | confirmation: Si, estoy seguro 91 | new_model: "%{name} (nuevo)" 92 | one_char: carácter 93 | optional: Opcional 94 | required: Requerido 95 | save: Guardar 96 | save_and_add_another: Guardar y añadir otro 97 | save_and_edit: Guardar y editar 98 | misc: 99 | add_filter: Añadir filtro 100 | reset_filters: "Limpiar filtros" 101 | add_new: Agregar nuevo 102 | ago: atrás 103 | bulk_menu_title: Elementos seleccionados 104 | chose_all: Elegir todos 105 | chosen: Elegido %{name} 106 | clear_all: Borrar todos 107 | down: Abajo 108 | filter: Filtrar 109 | filter_date_format: dd/mm/yy 110 | log_out: Desconectar 111 | navigation: Navegación 112 | refresh: Actualizar 113 | remove: Quitar 114 | search: Buscar 115 | show_all: Mostrar todo 116 | up: Arriba 117 | table_headers: 118 | changes: Cambios 119 | created_at: Fecha/Hora 120 | item: Elemento 121 | last_used: "Último uso" 122 | message: Mensaje 123 | model_name: Nombre del modelo 124 | records: Registros 125 | username: Usuario 126 | home: 127 | name: Inicio 128 | pagination: 129 | next: Siguiente » 130 | previous: "« Anterior" 131 | truncate: "…" 132 | -------------------------------------------------------------------------------- /locales/fi-FI.yml: -------------------------------------------------------------------------------- 1 | fi-FI: 2 | admin: 3 | home: 4 | name: "Koti" 5 | pagination: 6 | previous: "« Ed." 7 | next: "Seur. »" 8 | truncate: "…" 9 | misc: 10 | filter_date_format: "dd.mm.yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 11 | search: "Hae" 12 | filter: "Suodata" 13 | refresh: "Päivitä" 14 | show_all: "Näytä kaikki" 15 | add_filter: "Lisää suodatin" 16 | bulk_menu_title: "Valitut kohteet" 17 | remove: "Poista" 18 | add_new: "Lisää uusi" 19 | chosen: "Valittu %{name}" 20 | chose_all: "Valitse kaikki" 21 | clear_all: "Tyhjennä kaikki" 22 | up: "Ylös" 23 | down: "Alas" 24 | navigation: "Navigointi" 25 | log_out: "Kirjaudu ulos" 26 | ago: "sitten" 27 | flash: 28 | successful: "%{name} onnistuneesti %{action}" 29 | error: "%{name} epäonnistui olemaan %{action}" 30 | noaction: "Mitään toimintoja ei tehty" 31 | model_not_found: "Mallia '%{model}' ei löytynyt" 32 | object_not_found: "%{model} id:llä '%{id}' ei löytynyt" 33 | table_headers: 34 | model_name: "Mallin nimi" 35 | last_used: "Viimeksi käytetty" 36 | records: "Tietueet" 37 | username: "Käyttäjä" 38 | changes: "Muutokset" 39 | created_at: "Pvm/Aika" 40 | item: "Kohde" 41 | message: "Viesti" 42 | actions: 43 | dashboard: 44 | title: "Sivuston ylläpito" 45 | menu: "Dashboard" 46 | breadcrumb: "Dashboard" 47 | index: 48 | title: "Lista %{model_label_plural}" 49 | menu: "Lista" 50 | breadcrumb: "%{model_label_plural}" 51 | show: 52 | title: "Tiedot %{model_label} '%{object_label}'" 53 | menu: "Näytä" 54 | breadcrumb: "%{object_label}" 55 | show_in_app: 56 | menu: "Näytä sovelluksessa" 57 | new: 58 | title: "Uusi %{model_label}" 59 | menu: "Lisää uusi" 60 | breadcrumb: "Uusi" 61 | link: "Lisää uusi %{model_label}" 62 | done: "luotu" 63 | edit: 64 | title: "Muokkaa %{model_label} '%{object_label}'" 65 | menu: "Muokkaa" 66 | breadcrumb: "Muokkaa" 67 | link: "Muokkaa tätä %{model_label}" 68 | done: "päivitty" 69 | delete: 70 | title: "Poista %{model_label} '%{object_label}'" 71 | menu: "Poista" 72 | breadcrumb: "Poista" 73 | link: "Poista '%{object_label}'" 74 | done: "deleted" 75 | bulk_delete: 76 | title: "Poista %{model_label_plural}" 77 | menu: "Poista useita" 78 | breadcrumb: "Poista useita" 79 | bulk_link: "Poista valittu %{model_label_plural}" 80 | export: 81 | title: "Vie %{model_label_plural}" 82 | menu: "Vie" 83 | breadcrumb: "Vie" 84 | link: "Vie löydetty %{model_label_plural}" 85 | bulk_link: "Vie valittu %{model_label_plural}" 86 | done: "viety" 87 | history_index: 88 | title: "%{model_label_plural} historia" 89 | menu: "Historia" 90 | breadcrumb: "Historia" 91 | history_show: 92 | title: "Historia %{model_label} '%{object_label}'" 93 | menu: "Historia" 94 | breadcrumb: "Historia" 95 | form: 96 | cancel: "Peruuta" 97 | basic_info: "Perustiedot" 98 | required: "Vaadittu" 99 | optional: "Vapaaehtoinen" 100 | one_char: "merkki" 101 | char_length_up_to: "pituus enintään" 102 | char_length_of: "pituus" 103 | save: "Tallenna" 104 | save_and_add_another: "Tallenna ja lisää toinen" 105 | save_and_edit: "Tallenna ja muokkaa" 106 | all_of_the_following_related_items_will_be_deleted: "? Seuraavat kohteent saatetaan poistaa tai tehdä orvoiksi:" 107 | are_you_sure_you_want_to_delete_the_object: "Oletko varma, että haluat poistaa tämän %{model_name}" 108 | confirmation: "Kyllä, olen varma" 109 | bulk_delete: "Seuraavat kohteet poistetaan. Tämä saattaa poistaa tai tehdä orvoksi joitakin niiden riippuvaisuuksia:" 110 | new_model: "%{name} (uusi)" 111 | export: 112 | confirmation: "Vie kohteeseen %{name}" 113 | select: "Valitse vietävät kentät" 114 | fields_from: "Kentät kohteesta %{name}" 115 | fields_from_associated: "Kentät liittyvästä kohteesta %{name}" 116 | display: "Näytä %{name}: %{type}" 117 | options_for: "%{name} vaihtoehdot" 118 | empty_value_for_associated_objects: "" 119 | click_to_reverse_selection: 'Klikkaa varataksesi valinnan' 120 | csv: 121 | header_for_root_methods: "%{name}" # 'model' is available 122 | header_for_association_methods: "%{name} [%{association}]" 123 | encoding_to: "Encode to" 124 | encoding_to_help: "Valitse ulostulon koodaus. Jätä tyhjäksi jättääksesi nykyisen syötteen koodauksen koskemattomaksi: (%{name})" 125 | skip_header: "Ei ylätunnistetta" 126 | skip_header_help: "Älä tuota ylätunnisteita (ei kenttien kuvauksia)" 127 | default_col_sep: "," 128 | col_sep: "Sarakkeen erotin" 129 | col_sep_help: "Jätä tyhjäksi käyttääksei oletusta ('%{value}')" # value is default_col_sep 130 | -------------------------------------------------------------------------------- /locales/lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | admin: 3 | js: 4 | true: Tiesa 5 | false: Melas 6 | is_present: Yra 7 | is_blank: Nėra 8 | date: Data ... 9 | between_and_: Tarp ... ir ... 10 | today: Šiandien 11 | yesterday: Vakar 12 | this_week: Ši savaitė 13 | last_week: Praėjusi savaitė 14 | number: Skaičius ... 15 | contains: Turi 16 | is_exactly: Yra lygiai 17 | starts_with: Prasideda 18 | ends_with: Baigiasi 19 | loading: "Įkeliame..." 20 | home: 21 | name: "Namai" 22 | pagination: 23 | previous: "« Atgal" 24 | next: "Kitas »" 25 | truncate: "…" 26 | misc: 27 | filter_date_format: "yyyy-mm-dd" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 28 | search: "Paieška" 29 | filter: "Filtras" 30 | refresh: "Atnaujinti" 31 | show_all: "Rodyti viską" 32 | add_filter: "Pridėti filtrą" 33 | bulk_menu_title: "Pažymėtos bylos" 34 | remove: "Pašalinti" 35 | add_new: "Pridėti naują" 36 | chosen: "Pasirinktas %{name}" 37 | chose_all: "Pasirinkti viską" 38 | clear_all: "Išvalyti viską" 39 | up: "Į viršų" 40 | down: "Žemyn" 41 | navigation: "Navigacija" 42 | navigation_static_label: "Nuorodos" 43 | log_out: "Atsijungti" 44 | ago: "prieš" 45 | flash: 46 | successful: "%{name} %{action}" 47 | error: "%{name} nepavyko %{action}" 48 | noaction: "Nebuvo imtasi jokių veiksmų" 49 | model_not_found: "Modelis '%{model}' nerastas" 50 | object_not_found: "%{model} su id '%{id}' nerastas" 51 | table_headers: 52 | model_name: "Modelio pavadinimas" 53 | last_used: "Paskutinį kartą naudotas" 54 | records: "Įrašai" 55 | username: "Vartotojas" 56 | changes: "Pakeitimai" 57 | created_at: "Data/Laikas" 58 | item: "Įrašas" 59 | message: "Žinutė" 60 | actions: 61 | dashboard: 62 | title: "Svetainės administravimas" 63 | menu: "Skydelis" 64 | breadcrumb: "Skydelis" 65 | index: 66 | title: "Sąrašas %{model_label_plural}" 67 | menu: "Sąrašas" 68 | breadcrumb: "%{model_label_plural}" 69 | show: 70 | title: "Detailės %{model_label} '%{object_label}'" 71 | menu: "Rodyti" 72 | breadcrumb: "%{object_label}" 73 | show_in_app: 74 | menu: "Rodyti aplikacijoje" 75 | new: 76 | title: "Naujas %{model_label}" 77 | menu: "Pridėti naują" 78 | breadcrumb: "Naujas" 79 | link: "Pridėti naują %{model_label}" 80 | done: "sukurtas" 81 | edit: 82 | title: "Redaguoti %{model_label} '%{object_label}'" 83 | menu: "Redaguoti" 84 | breadcrumb: "Redaguoti" 85 | link: "Redaguoti šį %{model_label}" 86 | done: "atnaujintas" 87 | delete: 88 | title: "Trinti %{model_label} '%{object_label}'" 89 | menu: "Ištrinti" 90 | breadcrumb: "Trinti" 91 | link: "Trinti '%{object_label}'" 92 | done: "ištrintas" 93 | bulk_delete: 94 | title: "Trinti %{model_label_plural}" 95 | menu: "Daugybinis naikinimas" 96 | breadcrumb: "Daugybinis naikinimas" 97 | bulk_link: "Naikinti pažymėtus %{model_label_plural}" 98 | export: 99 | title: "Eksportuoti %{model_label_plural}" 100 | menu: "Eksportuoti" 101 | breadcrumb: "Eksportuoti" 102 | link: "Eksportuotas rastas %{model_label_plural}" 103 | bulk_link: "Eksportuoti pažymėtus %{model_label_plural}" 104 | done: "eksportuota" 105 | history_index: 106 | title: "Istorija %{model_label_plural}" 107 | menu: "Istorija" 108 | breadcrumb: "Istorija" 109 | history_show: 110 | title: "Istorija %{model_label} '%{object_label}'" 111 | menu: "Istorija" 112 | breadcrumb: "Istorija" 113 | form: 114 | cancel: "Atšaukti" 115 | basic_info: "Pagrindinė informacija" 116 | required: "Privaloma" 117 | optional: "Pasirinktinai" 118 | one_char: "raidė" 119 | char_length_up_to: "ilgis iki" 120 | char_length_of: "ilgis" 121 | save: "Išsaugoti" 122 | save_and_add_another: "Išsaugoti ir pridėti kitą" 123 | save_and_edit: "Išsaugoti ir redaguoti" 124 | all_of_the_following_related_items_will_be_deleted: "Sekantys objektai bus ištrinti:" 125 | are_you_sure_you_want_to_delete_the_object: "Ar norite ištrinti %{model_name}" 126 | confirmation: "Taip" 127 | bulk_delete: " Sekantys objektai bus ištrinti. Tai gali sugriauti ryšius su kitais objektais:" 128 | new_model: "%{name} (new)" 129 | export: 130 | confirmation: "Eksportuoti kaip %{name}" 131 | select: "Pažymėkite eksportuojamus laukelius" 132 | select_all_fields: "Pažymėti visus" 133 | fields_from: "Laukeliai iš %{name}" 134 | fields_from_associated: "Laukeliai iš asociacijų %{name}" 135 | display: "Rodyti %{name}: %{type}" 136 | options_for: "Nustatymai %{name}" 137 | empty_value_for_associated_objects: "" 138 | click_to_reverse_selection: 'Spragtelėkite, kad apversti pažymėjimą' 139 | csv: 140 | header_for_root_methods: "%{name}" # 'model' is available 141 | header_for_association_methods: "%{name} [%{association}]" 142 | encoding_to: "Užkoduoti kaip" 143 | encoding_to_help: "Pasirinkite koduotę. Jei nenorite keisti, palike tusčią (%{name})." 144 | skip_header: "Be antrasčių" 145 | skip_header_help: "Neišvesti antrasčių (be laukelių aprašymų)" 146 | default_col_sep: "," 147 | col_sep: "Skilčių skirtukas" 148 | col_sep_help: "Palikti tusčia numatytam parinkčiai ('%{value}')" # value is default_col_sep 149 | -------------------------------------------------------------------------------- /locales/nb-NO.yml: -------------------------------------------------------------------------------- 1 | nb-NO: 2 | admin: 3 | js: 4 | true: "Sant" 5 | false: "Usant" 6 | is_present: Er tilstede 7 | is_blank: Er blank 8 | date: Dato ... 9 | between_and_: Mellom ... og ... 10 | today: I dag 11 | yesterday: I går 12 | this_week: Denne uken 13 | last_week: Forrige uke 14 | number: Nummer ... 15 | contains: Inneholder 16 | is_exactly: Er nøyaktig 17 | starts_with: Starter med 18 | ends_with: Ender med 19 | too_many_objects: "For mange objekter, bruk søkefeltet over" 20 | no_objects: "Ingen objekter funnet" 21 | loading: "Laster..." 22 | toggle_navigation: Veksle navigasjon 23 | home: 24 | name: "Hjem" 25 | pagination: 26 | previous: "« Forrige" 27 | next: "Neste »" 28 | truncate: "..." 29 | misc: 30 | filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Søk" 32 | filter: "Filter" 33 | refresh: "Oppdater" 34 | show_all: "Vis alle" 35 | add_filter: "Filtrer" 36 | bulk_menu_title: "Merkede objekter" 37 | remove: "Fjern" 38 | add_new: "Legg til ny" 39 | chosen: "Valgt %{name}" 40 | chose_all: "Velg alle" 41 | clear_all: "Avmerk alle" 42 | up: "Opp" 43 | down: "Ned" 44 | navigation: "Navigasjon" 45 | navigation_static_label: "Lenker" 46 | log_out: "Logg ut" 47 | ago: "siden" 48 | more: "%{count} flere %{models_name}" 49 | flash: 50 | successful: "%{name} %{action} vellykket" 51 | error: "%{name} feilet å %{action}" 52 | noaction: "Ingen endringer ble utført" 53 | model_not_found: "Fant ikke modellen '%{model}''" 54 | object_not_found: "Fant ikke %{model} med ID '%{id}'" 55 | table_headers: 56 | model_name: "Modell navn" 57 | last_created: "Sist opprettet" 58 | last_used: "Sist brukt" 59 | records: "Oppføringer" 60 | username: "Brukernavn" 61 | changes: "Endringer" 62 | created_at: "Dato/Tid" 63 | item: "Objekt" 64 | message: "Beskjed" 65 | actions: 66 | dashboard: 67 | breadcrumb: "Oversikt" 68 | menu: "Oversikt" 69 | title: Administrer siden 70 | index: 71 | title: "Liste over %{model_label_plural}" 72 | menu: "Liste" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Detailjer for %{model_label} '%{object_label}'" 76 | menu: "Vis" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Vis i applikasjon" 80 | new: 81 | breadcrumb: Ny 82 | done: opprettet 83 | link: Opprett %{model_label} 84 | menu: Opprett ny 85 | title: Opprett %{model_label} 86 | edit: 87 | breadcrumb: Rediger 88 | done: oppdatert 89 | link: Rediger %{model_label} 90 | menu: Rediger 91 | title: Rediger %{model_label} '%{object_label}' 92 | delete: 93 | breadcrumb: Slett 94 | done: Slettet 95 | link: Slett '%{object_label}' 96 | menu: Slett 97 | title: Slett %{model_label} '%{object_label}' 98 | bulk_delete: 99 | breadcrumb: Slett alle 100 | bulk_link: Slett merkede %{model_label_plural} 101 | menu: Slett alle 102 | title: Slett %{model_label_plural} 103 | export: 104 | breadcrumb: Eksporter 105 | bulk_link: Eksporter merkede %{model_label_plural} 106 | done: eksportert 107 | link: Eksporter valgte %{model_label_plural} 108 | menu: Eksporter 109 | title: Eksporter %{model_label_plural} 110 | history_index: 111 | breadcrumb: Historie 112 | menu: Historie 113 | title: Historie for %{model_label_plural} 114 | history_show: 115 | breadcrumb: Historie 116 | menu: Historie 117 | title: Historie for %{model_label} '%{object_label}' 118 | form: 119 | all_of_the_following_related_items_will_be_deleted: "? Følgende relaterte objekter kan bli slettet eller foreldreløse:" 120 | are_you_sure_you_want_to_delete_the_object: "Er du sikker på du vil slette %{model_name}" 121 | basic_info: Generell informasjon 122 | bulk_delete: "Følgende objekter vil bli slettet, som kan føre til at relaterte objekter blir slettet eller foreldreløse:" 123 | cancel: Avbryt 124 | char_length_of: lengden av 125 | char_length_up_to: "opp til" 126 | confirmation: Ja, jeg er sikker 127 | one_char: tegn 128 | optional: Valgfri 129 | required: Kreves 130 | save: Lagre 131 | save_and_add_another: Lagre og opprett fler 132 | save_and_edit: Lagre og fortsett redigering 133 | new_model: "Ny %{name}" 134 | export: 135 | confirmation: "Eksporter til %{name}" 136 | select: "Velg felt for eksport" 137 | select_all_fields: "Merk alle felt" 138 | fields_from: "Felt fra %{name}" 139 | fields_from_associated: "Felt fra assosiasjon %{name}" 140 | display: "Vis %{name}: %{type}" 141 | options_for: "Egenskaper for %{name}" 142 | empty_value_for_associated_objects: "" 143 | click_to_reverse_selection: 'Klikk for å reversere valgene' 144 | csv: 145 | col_sep: Kolonne separator 146 | col_sep_help: La stå blank for standard ('%{value}') # value is default_col_sep 147 | default_col_sep: "," 148 | encoding_to: Formater til 149 | encoding_to_help: 150 | header_for_association_methods: "%{name} [%{association}]" 151 | header_for_root_methods: "%{name}" # 'model' is available 152 | skip_header: "Ingen overskrift" 153 | skip_header_help: "Ikke vis overskrift (ingen beskrivelse av felt)" -------------------------------------------------------------------------------- /locales/pt.yml: -------------------------------------------------------------------------------- 1 | pt: 2 | admin: 3 | js: 4 | true: Sim 5 | false: Não 6 | is_present: Está presente 7 | is_blank: Está em branco 8 | date: Data … 9 | between_and_: Entre … e … 10 | today: Hoje 11 | yesterday: Ontem 12 | this_week: Esta semana 13 | last_week: Semana passada 14 | number: Número … 15 | contains: Contém 16 | is_exactly: É exatamente 17 | starts_with: Começa com 18 | ends_with: Termina com 19 | too_many_objects: "Muitos objetos. Use a pesquisa acima." 20 | no_objects: "Nenhum objeto encontrado" 21 | loading: "Carregando …" 22 | toggle_navigation: Alternar navegação 23 | home: 24 | name: Página inicial 25 | pagination: 26 | previous: "« Anterior" 27 | next: Próximo » 28 | truncate: … 29 | misc: 30 | filter_date_format: dd/mm/yy 31 | search: Pesquisar 32 | filter: Filtro 33 | refresh: Atualizar 34 | show_all: Mostrar todos 35 | add_filter: Adicionar filtro 36 | bulk_menu_title: Itens selecionados 37 | remove: Remover 38 | add_new: Adicionar novo 39 | chosen: "%{name} escolhido" 40 | chose_all: Escolher todos 41 | clear_all: Limpar todos 42 | up: Para cima 43 | down: Para baixo 44 | navigation: Navegação 45 | navigation_static_label: "Links" 46 | log_out: Sair 47 | ago: Atrás 48 | more: "Mais %{count} %{models_name}" 49 | flash: 50 | successful: "%{name} foi %{action} com sucesso" 51 | error: "%{name} falhou ao ser %{action}" 52 | noaction: Nenhuma ação foi efectuada 53 | model_not_found: Modelo '%{model}' não foi encontrado" 54 | object_not_found: "%{model} com id '%{id}' não foi encontrado" 55 | table_headers: 56 | model_name: Nome do modelo 57 | last_created: Última entrada 58 | last_used: Último acesso 59 | records: Registos 60 | username: Utilizador 61 | changes: Alterações 62 | created_at: Data/Hora 63 | item: Item 64 | message: Mensagem 65 | actions: 66 | dashboard: 67 | title: Administração do site 68 | menu: Dashboard 69 | breadcrumb: Dashboard 70 | index: 71 | title: Lista de %{model_label_plural} 72 | menu: Listar 73 | breadcrumb: Lista de %{model_label_plural} 74 | show: 75 | title: Mostra 76 | menu: Mostrar 77 | breadcrumb: Mostrar "%{object_label}" 78 | show_in_app: 79 | menu: Mostrar no app 80 | new: 81 | title: Novo %{model_label} 82 | menu: Adicionar novo 83 | breadcrumb: Novo 84 | link: Adicionar novo %{model_label} 85 | done: Adicionado 86 | edit: 87 | title: Editar %{model_label} '%{object_label}' 88 | menu: Editar 89 | breadcrumb: Editar 90 | link: Editar este %{model_label} 91 | done: Atualizado 92 | delete: 93 | title: Apagar %{model_label} '%{object_label}' 94 | menu: Apagar 95 | breadcrumb: Apagar 96 | link: Apagar '%{object_label}' 97 | done: Apagar 98 | bulk_delete: 99 | title: Apagar %{model_label_plural} 100 | menu: Apagar vários 101 | breadcrumb: Apagar vários 102 | bulk_link: Apagar %{model_label_plural} selecionado 103 | export: 104 | title: Exportar %{model_label_plural} 105 | menu: Exportar 106 | breadcrumb: Exportar 107 | link: Exportar %{model_label_plural} 108 | bulk_link: Exportar %{model_label_plural} selecionados 109 | done: Exportado 110 | history_index: 111 | title: Histórico para %{model_label_plural} 112 | menu: Histórico 113 | breadcrumb: Histórico 114 | history_show: 115 | title: Histórico para %{model_label} '%{object_label}' 116 | menu: Histórico 117 | breadcrumb: Histórico 118 | form: 119 | cancel: Cancelar 120 | basic_info: Informações básicas 121 | required: Necessário 122 | optional: Opcional 123 | one_char: caractere 124 | char_length_up_to: Comprimento até 125 | char_length_of: Comprimento 126 | save: Guardar 127 | save_and_add_another: Guardar e adicionar outro 128 | save_and_edit: Guardar e editar 129 | all_of_the_following_related_items_will_be_deleted: Todos os arquivos selecionados serão excluídos 130 | are_you_sure_you_want_to_delete_the_object: Você tem certeza que deseja excluir 131 | confirmation: Sim, tenho certeza 132 | bulk_delete: "Os seguintes objetos serão apagados podendo também apagar objetos relacionados ou deixar relacionamentos órfãos" 133 | new_model: "%{name} (novo)" 134 | export: 135 | confirmation: Exportar para %{name} 136 | select: Selecione os campos para exportar 137 | select_all_fields: Selecionar todos os campos 138 | fields_from: Campos de %{name} 139 | fields_from_associated: Campos associados a %{name} 140 | display: 'Mostrar %{name}: %{type}' 141 | options_for: Opções para %{name} 142 | empty_value_for_associated_objects: "" 143 | click_to_reverse_selection: Clique para reverter a seleção 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: Converter para 148 | encoding_to_help: "Escolha o formato de saída. Deixe em branco para não mudar o formato atual: (%{name})" 149 | skip_header: Sem cabeçalho 150 | skip_header_help: Não incluir o cabeçalho 151 | default_col_sep: "," 152 | col_sep: Separador de coluna 153 | col_sep_help: Deixe em branco para utilizar o padrão ('%{value}') # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/cs.yml: -------------------------------------------------------------------------------- 1 | cs: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Hromadné odstranění 6 | bulk_link: Odstranit vybrané %{model_label_plural} 7 | menu: Hromadné odstranění 8 | title: Odstranit %{model_label_plural} 9 | dashboard: 10 | breadcrumb: Dashboard 11 | menu: Dashboard 12 | title: Administrace stránek 13 | delete: 14 | breadcrumb: Odstranit 15 | done: odstraněno 16 | link: Odstranit '%{object_label}' 17 | menu: Odstranit 18 | title: Odstranit %{model_label} '%{object_label}' 19 | edit: 20 | breadcrumb: Upravit 21 | done: upraveno 22 | link: Upravit tento %{model_label} 23 | menu: Upravit 24 | title: Upravit %{model_label} '%{object_label}' 25 | export: 26 | breadcrumb: Exportovat 27 | bulk_link: Exportovat vybrané %{model_label_plural} 28 | done: Exportováno 29 | link: Export nalezen %{model_label_plural} 30 | menu: Exportovat 31 | title: Exportovat %{model_label_plural} 32 | history_index: 33 | breadcrumb: Historie 34 | menu: Historie 35 | title: Historie o %{model_label_plural} 36 | history_show: 37 | breadcrumb: Historie 38 | menu: Historie 39 | title: Historie o %{model_label} '%{object_label}' 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Seznam 43 | title: Seznam %{model_label_plural} 44 | new: 45 | breadcrumb: Nový 46 | done: vytvořeno 47 | link: Přidat nový %{model_label} 48 | menu: Přidat nový 49 | title: Nový %{model_label} 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: Zobrazit 53 | title: Podrobnosti o %{model_label} '%{object_label}' 54 | show_in_app: 55 | menu: Zobrazit v appce 56 | title: Zobrazit %{model_label} v appce 57 | export: 58 | click_to_reverse_selection: Klikněte pro převrácení výběru 59 | confirmation: Exportovat do %{name} 60 | csv: 61 | col_sep: Oddělovač sloupců 62 | col_sep_help: Nech prázdné pro výchozí ('%{value}') 63 | default_col_sep: "," 64 | encoding_to: Překódovat do 65 | encoding_to_help: 'Zvolte kódování výstupu. Nechte prázdné pro ponechání vstupního kódování: (%{name})' 66 | header_for_association_methods: "%{name} [%{association}]" 67 | header_for_root_methods: "%{name}" 68 | skip_header: Bez hlavičky 69 | skip_header_help: Nevytvářej hlavičku (žádné popisky polí) 70 | display: 'Zobraz %{name}: %{type}' 71 | empty_value_for_associated_objects: "" 72 | fields_from: Pole %{name} 73 | fields_from_associated: Související pole %{name} 74 | options_for: Nastavení pro %{name} 75 | select: Vyber pole pro export 76 | select_all_fields: Vyber všechny pole 77 | flash: 78 | error: "%{name} se nezdařilo %{action}" 79 | model_not_found: Model '%{model}' nenalezen 80 | noaction: "Žádná akce neproběhla" 81 | object_not_found: "%{model} s id '%{id}' nenalezen" 82 | successful: "%{name} úspěšně %{action}" 83 | form: 84 | all_of_the_following_related_items_will_be_deleted: Následující související položky mohou být odstraněný. 85 | are_you_sure_you_want_to_delete_the_object: Jste si jistý, že chcete odstranit tento %{model_name} 86 | basic_info: Základní informace 87 | bulk_delete: 'Nasledující objekty budou vymazány, to může způsobit odstranění nebo osiření některých jejich závislých objektů:' 88 | cancel: Zrušit 89 | char_length_of: délka 90 | char_length_up_to: maximální délka 91 | confirmation: Ano, jsem si jist 92 | new_model: "%{name} (nový)" 93 | one_char: charakter 94 | optional: Volitelné 95 | required: Požadováno 96 | save: Uložit 97 | save_and_add_another: Uložit a přidat další 98 | save_and_edit: Uložit a upravit 99 | js: 100 | true: Pravda 101 | false: Lež 102 | is_present: Je přítomen 103 | is_blank: Je prázdný 104 | date: Datum ... 105 | between_and_: Mezi ... a ... 106 | today: Dnes 107 | yesterday: Včera 108 | this_week: Tento Týden 109 | last_week: Minulý Týden 110 | number: Číslo ... 111 | contains: Obsahuje 112 | is_exactly: Je přesně 113 | starts_with: Začíná 114 | ends_with: Končí 115 | too_many_objects: "Příliž mnoho objektů, použijte vyhledávací pole výše" 116 | no_objects: "Žádné objekty nenalezny" 117 | loading: "Načítá se..." 118 | misc: 119 | add_filter: Přidat filtr 120 | add_new: Přidat nový 121 | ago: před 122 | bulk_menu_title: Vybrané položky 123 | chose_all: vybrat vše 124 | chosen: Vybrán %{name} 125 | clear_all: Odebrat vše 126 | down: Dolů 127 | filter: Filtr 128 | filter_date_format: mm/dd/rr 129 | log_out: Odhlásit 130 | more: Plus %{count} %{models_name} 131 | navigation: Navigace 132 | navigation_static_label: Odkazy 133 | refresh: Obnovit 134 | remove: Odstranit 135 | reset_filters: Resetnout filtry 136 | search: Vyhledat 137 | show_all: Zobraz vše 138 | up: Nahoru 139 | table_headers: 140 | changes: Změny 141 | created_at: Datum/čas 142 | item: Položka 143 | last_created: Naposledy vytvořeno 144 | last_used: Naposledy použito 145 | message: Zpráva 146 | model_name: Název modelu 147 | records: Záznamy 148 | username: Uživatel 149 | home: 150 | name: Domů 151 | pagination: 152 | next: Následující » 153 | previous: "« Předcházející" 154 | truncate: "..." 155 | toggle_navigation: Přepnout vyhledávání 156 | -------------------------------------------------------------------------------- /locales/pt-BR.yml: -------------------------------------------------------------------------------- 1 | pt-BR: 2 | admin: 3 | js: 4 | true: Sim 5 | false: Não 6 | is_present: Está presente 7 | is_blank: Está em branco 8 | date: Data … 9 | between_and_: Entre … e … 10 | today: Hoje 11 | yesterday: Ontem 12 | this_week: Esta semana 13 | last_week: Semana passada 14 | number: Número … 15 | contains: Contém 16 | is_exactly: É exatamente 17 | starts_with: Começa com 18 | ends_with: Termina com 19 | too_many_objects: "Muitos objetos. Use a busca acima." 20 | no_objects: "Nenhum objeto encontrado" 21 | loading: "Carregando …" 22 | toggle_navigation: Alternar navegação 23 | home: 24 | name: Página inicial 25 | pagination: 26 | previous: "« Anterior" 27 | next: Próximo » 28 | truncate: … 29 | misc: 30 | filter_date_format: mm/dd/yy 31 | search: Buscar 32 | filter: Filtro 33 | refresh: Atualizar 34 | show_all: Mostrar todos 35 | add_filter: Adicionar filtro 36 | bulk_menu_title: Itens selecionados 37 | remove: Remover 38 | reset_filters: Limpar filtros 39 | add_new: Adicionar novo 40 | chosen: "%{name} escolhido" 41 | chose_all: Escolher todos 42 | clear_all: Limpar todos 43 | up: Para cima 44 | down: Para baixo 45 | navigation: Navegação 46 | navigation_static_label: "Links" 47 | log_out: Sair 48 | ago: Atrás 49 | more: "Mais %{count} %{models_name}" 50 | flash: 51 | successful: "%{name} foi %{action} com sucesso" 52 | error: "%{name} falhou ao ser %{action}" 53 | noaction: Nenhuma ação foi tomada 54 | model_not_found: Modelo '%{model}' não foi encontrado" 55 | object_not_found: "%{model} com id '%{id}' não foi encontrado" 56 | table_headers: 57 | model_name: Nome do modelo 58 | last_created: Última entrada 59 | last_used: Último acesso 60 | records: Entradas 61 | username: Usuário 62 | changes: Mudanças 63 | created_at: Data/Hora 64 | item: Item 65 | message: Mensagem 66 | actions: 67 | dashboard: 68 | title: Administração do site 69 | menu: Dashboard 70 | breadcrumb: Dashboard 71 | index: 72 | title: Lista de %{model_label_plural} 73 | menu: Listar 74 | breadcrumb: Lista de %{model_label_plural} 75 | show: 76 | title: Mostra 77 | menu: Mostrar 78 | breadcrumb: Mostrar "%{object_label}" 79 | show_in_app: 80 | menu: Mostrar no app 81 | new: 82 | title: Novo %{model_label} 83 | menu: Adicionar novo 84 | breadcrumb: Novo 85 | link: Adicionar novo %{model_label} 86 | done: Adicionado 87 | edit: 88 | title: Editar %{model_label} '%{object_label}' 89 | menu: Editar 90 | breadcrumb: Editar 91 | link: Editar este %{model_label} 92 | done: Atualizado 93 | delete: 94 | title: Deletar %{model_label} '%{object_label}' 95 | menu: Deletar 96 | breadcrumb: Deletar 97 | link: Deletar '%{object_label}' 98 | done: Deletado 99 | bulk_delete: 100 | title: Deletar %{model_label_plural} 101 | menu: Deletar vários 102 | breadcrumb: Deletar vários 103 | bulk_link: Deletar %{model_label_plural} selecionado 104 | export: 105 | title: Exportar %{model_label_plural} 106 | menu: Exportar 107 | breadcrumb: Exportar 108 | link: Exportar %{model_label_plural} 109 | bulk_link: Exportar %{model_label_plural} selecionados 110 | done: Exportado 111 | history_index: 112 | title: Histórico para %{model_label_plural} 113 | menu: Histórico 114 | breadcrumb: Histórico 115 | history_show: 116 | title: Histórico para %{model_label} '%{object_label}' 117 | menu: Histórico 118 | breadcrumb: Histórico 119 | form: 120 | cancel: Cancelar 121 | basic_info: Informações básicas 122 | required: Necessário 123 | optional: Opcional 124 | one_char: caractere 125 | char_length_up_to: Comprimento até 126 | char_length_of: Comprimento 127 | save: Salvar 128 | save_and_add_another: Salvar e adicionar outro 129 | save_and_edit: Salvar e editar 130 | all_of_the_following_related_items_will_be_deleted: Todos os arquivos selecionados serão excluídos 131 | are_you_sure_you_want_to_delete_the_object: Você tem certeza que deseja excluir 132 | confirmation: Sim, tenho certeza 133 | bulk_delete: "Os seguintes objetos serão excluídos podendo também excluir objetos relacionados ou deixar relacionamentos órfãos" 134 | new_model: "%{name} (novo)" 135 | export: 136 | confirmation: Exportar para %{name} 137 | select: Selecione os campos para exportar 138 | select_all_fields: Selecionar todos os campos 139 | fields_from: Campos de %{name} 140 | fields_from_associated: Campos associados a %{name} 141 | display: 'Mostrar %{name}: %{type}' 142 | options_for: Opções para %{name} 143 | empty_value_for_associated_objects: "" 144 | click_to_reverse_selection: Clique para reverter a seleção 145 | csv: 146 | header_for_root_methods: "%{name}" # 'model' is available 147 | header_for_association_methods: "%{name} [%{association}]" 148 | encoding_to: Converter para 149 | encoding_to_help: "Escolha o formato de saída. Deixe em branco para não mudar o formato atual: (%{name})" 150 | skip_header: Sem cabeçalho 151 | skip_header_help: Não incluir o cabeçalho 152 | default_col_sep: "," 153 | col_sep: Separador de coluna 154 | col_sep_help: Deixe em branco para utilizar o padrão ('%{value}') # value is default_col_sep 155 | -------------------------------------------------------------------------------- /locales/ro.yml: -------------------------------------------------------------------------------- 1 | ro: 2 | admin: 3 | js: 4 | true: Adevărat 5 | false: Fals 6 | is_present: Este prezent 7 | is_blank: Este gol 8 | date: Data ... 9 | between_and_: Între ... și ... 10 | today: Astăzi 11 | yesterday: Ieri 12 | this_week: Săptămâna aceasta 13 | last_week: Săptămâna trecută 14 | number: Număr ... 15 | contains: Conține 16 | is_exactly: Este exact 17 | starts_with: Începe cu 18 | ends_with: Se termină în 19 | loading: "Se încarcă..." 20 | home: 21 | name: "Acasă" 22 | pagination: 23 | previous: "« Precedentă" 24 | next: "Următoarea »" 25 | truncate: "…" 26 | misc: 27 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 28 | search: "Caută" 29 | filter: "Filtrează" 30 | refresh: "Reîmprospătează" 31 | show_all: "Afișează toate" 32 | add_filter: "Adaugă filtru" 33 | bulk_menu_title: "Elemente selectate" 34 | remove: "Șterge" 35 | add_new: "Adaugă" 36 | chosen: "Ales %{name}" 37 | chose_all: "Alege tot" 38 | clear_all: "Șterge tot" 39 | up: "Sus" 40 | down: "Jos" 41 | navigation: "Navigare" 42 | navigation_static_label: "Linkuri" 43 | log_out: "Ieșire" 44 | ago: "în urmă" 45 | flash: 46 | successful: "%{name} : %{action} cu succes" 47 | error: "%{name} nu a reușit %{action}" 48 | noaction: "Nicio acțiune reușită" 49 | model_not_found: "Modelul '%{model}' nu a fost găsit" 50 | object_not_found: "%{model} cu identificatorul '%{id}' nu a fost găsit" 51 | table_headers: 52 | model_name: "Numele modelului" 53 | last_used: "Ultima folosire" 54 | records: "Înregistrări" 55 | username: "Utilizator" 56 | changes: "Schimbări" 57 | created_at: "Dată/Ora" 58 | item: "Element" 59 | message: "Mesaj" 60 | actions: 61 | dashboard: 62 | title: "Administrare site" 63 | menu: "Panou de control" 64 | breadcrumb: "Panou de control" 65 | index: 66 | title: "Listă de %{model_label_plural}" 67 | menu: "Listă" 68 | breadcrumb: "%{model_label_plural}" 69 | show: 70 | title: "Detalii pentru %{model_label} '%{object_label}'" 71 | menu: "Arată" 72 | breadcrumb: "%{object_label}" 73 | show_in_app: 74 | menu: "Arată în aplicație" 75 | new: 76 | title: "Nou %{model_label}" 77 | menu: "Adaugă" 78 | breadcrumb: "Nou" 79 | link: "Adaugă un nou %{model_label}" 80 | done: "creat" 81 | edit: 82 | title: "Modifică %{model_label} '%{object_label}'" 83 | menu: "Modifică" 84 | breadcrumb: "Modifică" 85 | link: "Modifică acest %{model_label}" 86 | done: "modificat" 87 | delete: 88 | title: "Șterge %{model_label} '%{object_label}'" 89 | menu: "Șterge" 90 | breadcrumb: "Șterge" 91 | link: "Șterge '%{object_label}'" 92 | done: "șters" 93 | bulk_delete: 94 | title: "Șterge %{model_label_plural}" 95 | menu: "Sterge mai multe" 96 | breadcrumb: "Sterge mai multe" 97 | bulk_link: "Sterge selecție %{model_label_plural}" 98 | export: 99 | title: "Exportă %{model_label_plural}" 100 | menu: "Exportă" 101 | breadcrumb: "Exportă" 102 | link: "Exportă %{model_label_plural}" 103 | bulk_link: "Exportă selecție %{model_label_plural}" 104 | done: "exportat" 105 | history_index: 106 | title: "Istoric pentru %{model_label_plural}" 107 | menu: "Istoric" 108 | breadcrumb: "Istoric" 109 | history_show: 110 | title: "Istoric pentru %{model_label} '%{object_label}'" 111 | menu: "Istoric" 112 | breadcrumb: "Istoric" 113 | form: 114 | cancel: "Anulează" 115 | basic_info: "Informații de bază" 116 | required: "Obligatoriu" 117 | optional: "Opțional" 118 | one_char: "caracter" 119 | char_length_up_to: "lungime până la" 120 | char_length_of: "lungime de" 121 | save: "Salvează" 122 | save_and_add_another: "Salvează și adaugă unul nou" 123 | save_and_edit: "Salvează și editează" 124 | all_of_the_following_related_items_will_be_deleted: "? Următoarele elemente pot fi șterse:" 125 | are_you_sure_you_want_to_delete_the_object: "Sunteți sigur că vreți să ștergeți %{model_name}" 126 | confirmation: "Da, sunt sigur" 127 | bulk_delete: "Următoarele obiecte vor fi șterse, ceea ce poate cauza ca unele dependețe să se șteargă sau să nu mai funcționeze:" 128 | new_model: "%{name} (nou)" 129 | export: 130 | confirmation: "Exportă la %{name}" 131 | select: "Selectează elementele pentru export" 132 | select_all_fields: "Selectează toate elementele" 133 | fields_from: "Câmpuri de %{name}" 134 | fields_from_associated: "Câmpuri asociate cu %{name}" 135 | display: "Afișează %{name}: %{type}" 136 | options_for: "Opțiuni pentru %{name}" 137 | empty_value_for_associated_objects: "" 138 | click_to_reverse_selection: 'Click pentru a inversa selecția' 139 | csv: 140 | header_for_root_methods: "%{name}" # 'model' is available 141 | header_for_association_methods: "%{name} [%{association}]" 142 | encoding_to: "Codifică" 143 | encoding_to_help: "Selectează codificarea. Lasă liber pentru ca următoarea codificare să rămână neatinsă: (%{name})" 144 | skip_header: "Fără antet" 145 | skip_header_help: "Nu afișează antent (niciun câmp descris)" 146 | default_col_sep: "," 147 | col_sep: "Separator de coloană" 148 | col_sep_help: "Lasă gol pentru valoarea implicită ('%{value}')" # value is default_col_sep 149 | -------------------------------------------------------------------------------- /locales/ar.yml: -------------------------------------------------------------------------------- 1 | ar: 2 | admin: 3 | js: 4 | true: True 5 | false: False 6 | is_present: Is present 7 | is_blank: Is blank 8 | date: Date ... 9 | between_and_: Between ... and ... 10 | today: اليوم 11 | yesterday: الأمس 12 | this_week: هذا اﻷاسبوع 13 | last_week: الأسبوع الماضي 14 | number: Number ... 15 | contains: Contains 16 | is_exactly: Is exactly 17 | starts_with: Starts with 18 | ends_with: Ends with 19 | too_many_objects: "Too many objects, use search box above" 20 | no_objects: "No objects found" 21 | loading: "تحميل..." 22 | toggle_navigation: Toggle navigation 23 | home: 24 | name: "الصفحة الرئيسية" 25 | pagination: 26 | previous: "« Prev" 27 | next: "Next »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "بحث" 32 | filter: "فلترة" 33 | refresh: "تحديث" 34 | show_all: "مشاهدة الكل" 35 | add_filter: "إضافة فلترة" 36 | bulk_menu_title: "Selected items" 37 | remove: "حذف" 38 | add_new: "إضافة جديد" 39 | chosen: "Chosen %{name}" 40 | chose_all: "أختيار الكل" 41 | clear_all: "ألغاء الكل" 42 | up: "أعلى" 43 | down: "أسفل" 44 | navigation: "Navigation" 45 | navigation_static_label: "روابط" 46 | log_out: "تسجيل خروج" 47 | ago: "منذ" 48 | more: "Plus %{count} more %{models_name}" 49 | flash: 50 | successful: "%{name} بنجاح %{action}" 51 | error: "%{name} فشل %{action}" 52 | noaction: "لم يتم تحديث أي شي" 53 | model_not_found: "Model '%{model}' لا يمكن إيجاده" 54 | object_not_found: "%{model} with id '%{id}' لا يمكن إيجاده" 55 | table_headers: 56 | model_name: "أسم المودل" 57 | last_created: "أخر إنشاء" 58 | last_used: "أخر إستخدام" 59 | records: "سجلات" 60 | username: "المستخدم" 61 | changes: "التغيرات" 62 | created_at: "التاريخ/الوقت" 63 | item: "المادة" 64 | message: "الرسالة" 65 | actions: 66 | dashboard: 67 | title: "إدارة الموقع" 68 | menu: "لوحة التحكم" 69 | breadcrumb: "لوحة التحكم" 70 | index: 71 | title: "قائمة %{model_label_plural}" 72 | menu: "قائمة" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "معلومات من أجل %{model_label} '%{object_label}'" 76 | menu: "عرض" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "مشاهدة على الموقع" 80 | new: 81 | title: "جديد %{model_label}" 82 | menu: "إضافة جديد" 83 | breadcrumb: "جديد" 84 | link: "إضافة جديد %{model_label}" 85 | done: "تم الإنشاء" 86 | edit: 87 | title: "تعديل %{model_label} '%{object_label}'" 88 | menu: "تعديل" 89 | breadcrumb: "تعديل" 90 | link: "تعديل من أجل %{model_label}" 91 | done: "تم التحديث" 92 | delete: 93 | title: "حذف %{model_label} '%{object_label}'" 94 | menu: "حذف" 95 | breadcrumb: "حذف" 96 | link: "حذف '%{object_label}'" 97 | done: "تم الحذف" 98 | bulk_delete: 99 | title: "حذف %{model_label_plural}" 100 | menu: "حذف متعدد" 101 | breadcrumb: "حذف متعدد" 102 | bulk_link: "حذف المحدد %{model_label_plural}" 103 | export: 104 | title: "تصدير %{model_label_plural}" 105 | menu: "تصدير" 106 | breadcrumb: "تصدير" 107 | link: "تصدير الموجود في %{model_label_plural}" 108 | bulk_link: "تصدير المحدد %{model_label_plural}" 109 | done: "تم التصدير" 110 | history_index: 111 | title: "History for %{model_label_plural}" 112 | menu: "History" 113 | breadcrumb: "History" 114 | history_show: 115 | title: "History for %{model_label} '%{object_label}'" 116 | menu: "History" 117 | breadcrumb: "History" 118 | form: 119 | cancel: "ألغاء" 120 | basic_info: "معلومات أساسية" 121 | required: "مطلوب" 122 | optional: "خياري" 123 | one_char: "محرف واحد" 124 | char_length_up_to: "length up to" 125 | char_length_of: "length of" 126 | save: "حفظ" 127 | save_and_add_another: "حفظ وإضافة جديد" 128 | save_and_edit: "حفظ وتعديل" 129 | all_of_the_following_related_items_will_be_deleted: "? The following related items may be deleted or orphaned:" 130 | are_you_sure_you_want_to_delete_the_object: "هل أنت متأكد من حذف %{model_name}" 131 | confirmation: "نعم، متأكد" 132 | bulk_delete: "The following objects will be deleted, which may delete or orphan some of their related dependencies:" 133 | new_model: "%{name} (new)" 134 | export: 135 | confirmation: "Export to %{name}" 136 | select: "Select fields to export" 137 | select_all_fields: "Select All Fields" 138 | fields_from: "Fields from %{name}" 139 | fields_from_associated: "Fields from associated %{name}" 140 | display: "Display %{name}: %{type}" 141 | options_for: "Options for %{name}" 142 | empty_value_for_associated_objects: "" 143 | click_to_reverse_selection: 'Click to reverse selection' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "Encode to" 148 | encoding_to_help: "Choose output encoding. Leave empty to let current input encoding untouched: (%{name})" 149 | skip_header: "No header" 150 | skip_header_help: "Do not output a header (no fields description)" 151 | default_col_sep: "," 152 | col_sep: "Column separator" 153 | col_sep_help: "Leave blank for default ('%{value}')" # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/es-MX.yml: -------------------------------------------------------------------------------- 1 | es-MX: 2 | admin: 3 | js: 4 | true: Verdadero 5 | false: Falso 6 | is_present: Está presente 7 | is_blank: Está en blanco 8 | date: Fecha ... 9 | between_and_: Entre ... y ... 10 | today: Hoy 11 | yesterday: Ayer 12 | this_week: Esta semana 13 | last_week: Semana pasada 14 | number: Número ... 15 | contains: Contiene 16 | is_exactly: Es exactamente 17 | starts_with: Comienza con 18 | ends_with: Acaba con 19 | loading: "Cargando..." 20 | home: 21 | name: "Inicio" 22 | pagination: 23 | previous: "« Anterior" 24 | next: "Siguiente »" 25 | truncate: "…" 26 | misc: 27 | filter_date_format: "dd/mm/yy" 28 | search: "Buscar" 29 | filter: "Filtrar" 30 | refresh: "Actualizar" 31 | show_all: "Mostrar todo" 32 | add_filter: "Agregar filtro" 33 | bulk_menu_title: "Elementos seleccionados" 34 | remove: "Quitar" 35 | add_new: "Agregar nuevo" 36 | chosen: "Elegido %{name}" 37 | chose_all: "Elegir todos" 38 | clear_all: "Borrar todos" 39 | up: "Arriba" 40 | down: "Abajo" 41 | navigation: "Navegación" 42 | navigation_static_label: "Enlaces" 43 | log_out: "Desconectar" 44 | ago: "atrás" 45 | flash: 46 | successful: "%{name} %{action} con éxito" 47 | error: "%{name} no se ha %{action}" 48 | noaction: "No se hizo ninguna acción" 49 | model_not_found: "El modelo '%{model}' no encontrado" 50 | object_not_found: "%{model} con ID '%{id}' no encontrado" 51 | table_headers: 52 | model_name: "Nombre del modelo" 53 | last_used: "Último uso" 54 | records: "Registros" 55 | username: "Usuario" 56 | changes: "Cambios" 57 | created_at: "Fecha/Hora" 58 | item: "Elemento" 59 | message: "Mensaje" 60 | actions: 61 | dashboard: 62 | title: "Administración del sitio" 63 | menu: "Panel de control" 64 | breadcrumb: "Panel de control" 65 | index: 66 | title: "Lista de %{model_label_plural}" 67 | menu: "Lista" 68 | breadcrumb: "%{model_label_plural}" 69 | show: 70 | title: "Detalles para %{model_label} '%{object_label}'" 71 | menu: "Ver" 72 | breadcrumb: "%{object_label}" 73 | show_in_app: 74 | menu: "Ver en la aplicación" 75 | new: 76 | title: "Nuevo %{model_label}" 77 | menu: "Agregar nuevo" 78 | breadcrumb: "Nuevo" 79 | link: "Adicionar un nuevo %{model_label}" 80 | done: "creado" 81 | edit: 82 | title: "Editar %{model_label} '%{object_label}'" 83 | menu: "Editar" 84 | breadcrumb: "Editar" 85 | link: "Editar este %{model_label}" 86 | done: "Actualizado" 87 | delete: 88 | title: "Eliminar %{model_label} '%{object_label}'" 89 | menu: "Eliminar" 90 | breadcrumb: "Eliminar" 91 | link: "Eliminar '%{object_label}'" 92 | done: "Eliminado" 93 | bulk_delete: 94 | title: "Eliminar %{model_label_plural}" 95 | menu: "Eliminación múltiple" 96 | breadcrumb: "Eliminación múltiple" 97 | bulk_link: "Eliminar los %{model_label_plural} seleccionados" 98 | export: 99 | title: "Exportar %{model_label_plural}" 100 | menu: "Exportar" 101 | breadcrumb: "Exportar" 102 | link: "Exportar %{model_label_plural} encontrados" 103 | bulk_link: "Exportar %{model_label_plural} seleccionados" 104 | done: "exportado" 105 | history_index: 106 | title: "Historial para %{model_label_plural}" 107 | menu: "Historial" 108 | breadcrumb: "Historial" 109 | history_show: 110 | title: "Historial para %{model_label} '%{object_label}'" 111 | menu: "Historial" 112 | breadcrumb: "Historial" 113 | form: 114 | cancel: "Cancelar" 115 | basic_info: "Información básica" 116 | required: "Requerido" 117 | optional: "Opcional" 118 | one_char: "carácter" 119 | char_length_up_to: "longitud de hasta" 120 | char_length_of: "longitud de" 121 | save: "Guardar" 122 | save_and_add_another: "Guardar y agregar otro" 123 | save_and_edit: "Guardar y editar" 124 | all_of_the_following_related_items_will_be_deleted: "? Los siguientes elementos relacionados pueden ser eliminados o quedar huérfanos:" 125 | are_you_sure_you_want_to_delete_the_object: "¿Estás seguro de querer eliminar este %{model_name}?" 126 | confirmation: "Sí, estoy seguro" 127 | bulk_delete: "Los siguientes objetos serán eliminados, lo cual puede eliminar o dejar huérfanas algunas de sus dependencias relacionadas:" 128 | new_model: "%{name} (nuevo)" 129 | export: 130 | confirmation: "Exportar a %{name}" 131 | select: "Seleccione los campos a exportar" 132 | select_all_fields: "Seleccionar todos los campos" 133 | fields_from: "Campos de %{name}" 134 | fields_from_associated: "Campos del %{name} asociado" 135 | display: "Mostrar %{name}: %{type}" 136 | options_for: "Opciones para %{name}" 137 | empty_value_for_associated_objects: "" 138 | click_to_reverse_selection: "Haga click para invertir la selección" 139 | csv: 140 | header_for_root_methods: "%{name}" 141 | header_for_association_methods: "%{name} [%{association}]" 142 | encoding_to: "Codificar a" 143 | encoding_to_help: 'Elija la codificación de salida. Deje en blanco para no cambiar la codificación actual: (%{name})' 144 | skip_header: "Sin cabecera" 145 | skip_header_help: "No incluir un encabezado (sin descripción de los campos)" 146 | default_col_sep: "," 147 | col_sep: "Separador de columnas" 148 | col_sep_help: "Deje en blanco para el valor por defecto ('%{value}')" 149 | -------------------------------------------------------------------------------- /locales/mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | admin: 3 | js: 4 | true: Вистина 5 | false: Невистина 6 | is_present: Е присутно 7 | is_blank: Е празно 8 | date: Датум ... 9 | between_and_: Помеѓу ... и ... 10 | today: Денес 11 | yesterday: Вчера 12 | this_week: Оваа недела 13 | last_week: Претходната недела 14 | number: Број ... 15 | contains: Содржи 16 | is_exactly: Е точно 17 | starts_with: Почнува со 18 | ends_with: Завршува со 19 | too_many_objects: "Премногу објекти, користете го пребарувачот" 20 | no_objects: "Објектите не се најдени" 21 | loading: "Вчитување..." 22 | toggle_navigation: Преврти навигација 23 | home: 24 | name: "Дома" 25 | pagination: 26 | previous: "« Претходно" 27 | next: "Следно »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Пребарување" 32 | filter: "Филтер" 33 | refresh: "Освежи" 34 | show_all: "Покажи сите" 35 | add_filter: "Додади филтер" 36 | bulk_menu_title: "Избрани предмети" 37 | remove: "Отстрани" 38 | add_new: "Додај нови" 39 | chosen: "Избран %{name}" 40 | chose_all: "Избери сите" 41 | clear_all: "Исчисти" 42 | up: "Горе" 43 | down: "Доле" 44 | navigation: "Навигација" 45 | navigation_static_label: "Линкови" 46 | log_out: "Одлогирај се" 47 | ago: "пред" 48 | more: "И %{count} повеќе %{models_name}" 49 | flash: 50 | successful: "%{name} успешно %{action}" 51 | error: "%{name} неможеше %{action}" 52 | noaction: "Не беа преземени акции" 53 | model_not_found: "Моделот '%{model}' неможеше да се најде" 54 | object_not_found: "%{model} со ИД '%{id}' неможеше да се најде" 55 | table_headers: 56 | model_name: "Име на модел" 57 | last_created: "Последно создаден" 58 | last_used: "Последно користен" 59 | records: "рекорди" 60 | username: "Корисник" 61 | changes: "Промени" 62 | created_at: "Датум/Време" 63 | item: "Предмет" 64 | message: "Порака" 65 | actions: 66 | dashboard: 67 | title: "Администрација на сајт" 68 | menu: "Табла" 69 | breadcrumb: "Табла" 70 | index: 71 | title: "Листа на %{model_label_plural}" 72 | menu: "Листа" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Детали за %{model_label} '%{object_label}'" 76 | menu: "Покажи" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Покажи во апликација" 80 | new: 81 | title: "Нов %{model_label}" 82 | menu: "Додади нов" 83 | breadcrumb: "Нов" 84 | link: "Додади нов %{model_label}" 85 | done: "создаден" 86 | edit: 87 | title: "Уреди %{model_label} '%{object_label}'" 88 | menu: "Уреди" 89 | breadcrumb: "Уреди" 90 | link: "Уреди %{model_label}" 91 | done: "ажуриран" 92 | delete: 93 | title: "Избриши %{model_label} '%{object_label}'" 94 | menu: "Избриши" 95 | breadcrumb: "Избриши" 96 | link: "Избриши '%{object_label}'" 97 | done: "избришан" 98 | bulk_delete: 99 | title: "Избриши %{model_label_plural}" 100 | menu: "Повеќекратно избришување" 101 | breadcrumb: "Повеќекратно избришување" 102 | bulk_link: "Избриши одбрани %{model_label_plural}" 103 | export: 104 | title: "Извези %{model_label_plural}" 105 | menu: "Извези" 106 | breadcrumb: "Извези" 107 | link: "Извод најден %{model_label_plural}" 108 | bulk_link: "Извези одбрани %{model_label_plural}" 109 | done: "извезен" 110 | history_index: 111 | title: "Историја за %{model_label_plural}" 112 | menu: "Историја" 113 | breadcrumb: "Историја" 114 | history_show: 115 | title: "Историја за %{model_label} '%{object_label}'" 116 | menu: "Историја" 117 | breadcrumb: "Историја" 118 | form: 119 | cancel: "Откажи" 120 | basic_info: "Основни информации" 121 | required: "Задолжитено" 122 | optional: "Незадолжително" 123 | one_char: "карактер" 124 | char_length_up_to: "должина до" 125 | char_length_of: "должина од" 126 | save: "Сними" 127 | save_and_add_another: "Сними и додај уште еден" 128 | save_and_edit: "Сними и уреди" 129 | all_of_the_following_related_items_will_be_deleted: "? Следните поврзани предмети можат да бидат избришани или осиротени:" 130 | are_you_sure_you_want_to_delete_the_object: "Дали сте сигурни дека сакате да избришете %{model_name}" 131 | confirmation: "Да, сигурено" 132 | bulk_delete: "Следните предмети ќе бидат избришани, што може да избрише или осироти следните поврзани зависности:" 133 | new_model: "%{name} (нов)" 134 | export: 135 | confirmation: "Извези во %{name}" 136 | select: "Избери полиња за извоз" 137 | select_all_fields: "Избери сите полиња" 138 | fields_from: "Полиња од %{name}" 139 | fields_from_associated: "Полиња од поврзан %{name}" 140 | display: "Покажи %{name}: %{type}" 141 | options_for: "Опции за %{name}" 142 | empty_value_for_associated_objects: "<празно>" 143 | click_to_reverse_selection: 'Кликни да обратите изборите' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "Енкодирај во" 148 | encoding_to_help: "Одберете излезно енкодирање. Остави празно да го оставите изборот недопрен: (%{name})" 149 | skip_header: "Без заглавие" 150 | skip_header_help: "Не извезувај со заглавие (Без опис на полињата)" 151 | default_col_sep: "," 152 | col_sep: "Колумна за сепарација" 153 | col_sep_help: "Остави празно за стандардно ('%{value}')" # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/de.yml: -------------------------------------------------------------------------------- 1 | de: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: Mehrere Objekte löschen 6 | bulk_link: Markierte %{model_label_plural} löschen 7 | menu: Mehrere Objekte löschen 8 | title: "%{model_label_plural} löschen" 9 | dashboard: 10 | breadcrumb: "Übersicht" 11 | menu: "Übersicht" 12 | title: Seite administrieren 13 | delete: 14 | breadcrumb: Löschen 15 | done: gelöscht 16 | link: '"%{object_label}" löschen' 17 | menu: Löschen 18 | title: '%{model_label} "%{object_label}" löschen' 19 | edit: 20 | breadcrumb: Bearbeiten 21 | done: geändert 22 | link: "%{model_label} bearbeiten" 23 | menu: Bearbeiten 24 | title: '%{model_label} "%{object_label}" bearbeiten' 25 | export: 26 | breadcrumb: Exportieren 27 | bulk_link: Markierte %{model_label_plural} exportieren 28 | done: exportiert 29 | link: Gefundene %{model_label_plural} exportieren 30 | menu: Exportieren 31 | title: "%{model_label_plural} exportieren" 32 | history_index: 33 | breadcrumb: Verlauf 34 | menu: Verlauf 35 | title: Verlauf für %{model_label_plural} 36 | history_show: 37 | breadcrumb: Verlauf 38 | menu: Verlauf 39 | title: Verlauf für %{model_label} "%{object_label}" 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: Liste 43 | title: Liste von %{model_label_plural} 44 | no_records: "Keine Einträge" 45 | new: 46 | breadcrumb: Neu 47 | done: erstellt 48 | link: "%{model_label} neu hinzufügen" 49 | menu: Neu hinzufügen 50 | title: "%{model_label} erstellen" 51 | show: 52 | breadcrumb: "%{object_label}" 53 | menu: Anzeigen 54 | title: Details für %{model_label} "%{object_label}" 55 | show_in_app: 56 | menu: In Applikation anzeigen 57 | title: "%{model_label} in Applikation anzeigen" 58 | export: 59 | click_to_reverse_selection: Klicken um die Markierung aufzuheben 60 | confirmation: Exportieren nach %{name} 61 | csv: 62 | col_sep: Spaltentrennzeichen 63 | col_sep_help: Lassen für Standardwert ('%{value}') 64 | default_col_sep: "," 65 | encoding_to: Kodieren zu 66 | encoding_to_help: 'Zielkodierung wählen. Leer lassen, um aktuelle Eingangskodierung zu übernehmen: (%{name})' 67 | header_for_association_methods: "%{name} [%{association}]" 68 | header_for_root_methods: "%{name}" 69 | skip_header: Keine Kopfzeile 70 | skip_header_help: Keine Kopfzeile erstellen (keine Spaltenbeschreibungen) 71 | display: 'Anzeigen von %{name}: %{type}' 72 | empty_value_for_associated_objects: "" 73 | fields_from: Spalten von %{name} 74 | fields_from_associated: Zugehörige Spalten von %{name} 75 | options_for: Optionen für %{name} 76 | select: Spalten zum Exportieren auswählen 77 | select_all_fields: Alle Spalten auswählen 78 | flash: 79 | error: Fehler beim %{action} von %{name} 80 | model_not_found: Modell "%{model}" konnte nicht gefunden werden 81 | noaction: Es wurden keine Änderungen ausgeführt 82 | object_not_found: '%{model} mit id "%{id}" konnte nicht gefunden werden' 83 | successful: "%{name} erfolgreich %{action}" 84 | form: 85 | all_of_the_following_related_items_will_be_deleted: "? Folgende zugehörige Ojekte werden gelöscht:" 86 | are_you_sure_you_want_to_delete_the_object: "%{model_name} sicher löschen?" 87 | basic_info: Grundlegende Informationen 88 | bulk_delete: 'Die folgenden Objekte werden gelöscht, zugehörige Objekte werden gelöscht oder können verwaisen:' 89 | cancel: Abbrechen 90 | char_length_of: Länge 91 | char_length_up_to: Länge bis zu 92 | confirmation: Ja, ich bin sicher 93 | new_model: "%{name} (neu)" 94 | one_char: Zeichen 95 | optional: optional 96 | required: Pflichtfeld 97 | save: Speichern 98 | save_and_add_another: Speichern und neu hinzufügen 99 | save_and_edit: Speichern und bearbeiten 100 | misc: 101 | add_filter: Filter hinzufügen 102 | reset_filters: Filter zurücksetzen 103 | add_new: Neu hinzufügen 104 | ago: vor 105 | bulk_menu_title: Markierte Elemente 106 | chose_all: Alle auswählen 107 | chosen: "%{name} in Auswahl" 108 | clear_all: Alles zurücksetzen 109 | down: Runter 110 | filter: Filter 111 | filter_date_format: mm/tt/jj 112 | log_out: Abmelden 113 | navigation: Navigation 114 | refresh: Neu laden 115 | remove: Löschen 116 | search: Suchen 117 | show_all: Alles anzeigen 118 | up: Hoch 119 | navigation_static_label: Links 120 | more: "Sowie %{count} weitere %{models_name}" 121 | table_headers: 122 | changes: "Änderungen" 123 | created_at: Datum/Zeit 124 | item: Element 125 | last_used: Zuletzt verwendet 126 | message: Nachricht 127 | model_name: Modellname 128 | records: Datensätze 129 | username: Anwender 130 | last_created: Zuletzt erstellt 131 | home: 132 | name: Start 133 | pagination: 134 | next: Vor » 135 | previous: "« Zurück" 136 | truncate: "..." 137 | js: 138 | true: Wahr 139 | false: Falsch 140 | is_present: Existiert 141 | is_blank: Ist leer 142 | date: Datum ... 143 | between_and_: Von ... bis ... 144 | today: Heute 145 | yesterday: Gestern 146 | this_week: Diese Woche 147 | last_week: Letzte Woche 148 | number: Nummer ... 149 | contains: Enthält 150 | is_exactly: Ist genau 151 | starts_with: Beginnt mit 152 | ends_with: Endet mit 153 | too_many_objects: "Zu viele Objekte, bitte Suchfeld verwenden" 154 | no_objects: "Keine Objekte gefunden" 155 | loading: Laden... 156 | toggle_navigation: Navigation umschalten 157 | -------------------------------------------------------------------------------- /locales/be.yml: -------------------------------------------------------------------------------- 1 | be: 2 | admin: 3 | js: 4 | true: Праўдзіва 5 | false: Ілжыва 6 | is_present: Прадстаўлена 7 | is_blank: Пуста 8 | date: Дата ... 9 | between_and_: Паміж ... і ... 10 | today: Сёння 11 | yesterday: Учора 12 | this_week: На гэтым тыдні 13 | last_week: На мінулым тыдні 14 | number: Лік ... 15 | contains: Ўключае 16 | is_exactly: Дакладна 17 | starts_with: Пачынаецца з 18 | ends_with: Заканчваецца на 19 | too_many_objects: "Занадта шмат аб'ектаў, выкарыстоўвайце акно пошуку вышэй" 20 | no_objects: "Аб'екты не знойдзены" 21 | loading: "Загрузка..." 22 | toggle_navigation: Пераключэнне навігацыі 23 | home: 24 | name: "Галоўная" 25 | pagination: 26 | previous: "« Назад" 27 | next: "Наперад »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Пошук" 32 | filter: "Фільтраванне" 33 | refresh: "Абнавіць" 34 | show_all: "Паказаць усе" 35 | add_filter: "Дадаць фільтр..." 36 | bulk_menu_title: "Выбраныя элементы..." 37 | remove: "Выдаліць" 38 | add_new: "Дадаць" 39 | chosen: "Абраны %{name}" 40 | chose_all: "Выбраць усе" 41 | clear_all: "Ачысціць ўсе" 42 | up: "Ўверх" 43 | down: "Ўніз" 44 | navigation: "Рух" 45 | navigation_static_label: "Спасылкі" 46 | log_out: "Выйсці" 47 | ago: "назад" 48 | more: "Плюс яшчэ %{count} %{models_name}" 49 | flash: 50 | successful: "%{name} паспяхова %{action}" 51 | error: "%{name} не ўдалося %{action}" 52 | noaction: "Ніякіх зменаў не выканана" 53 | model_not_found: "Мадэль '%{model}' не знойдзена" 54 | object_not_found: "Аб'ект %{model} с id '%{id}' не знойдзены" 55 | table_headers: 56 | model_name: "Назва мадэлі" 57 | last_created: "Апошні раз стваралася" 58 | last_used: "Апошні раз выкарыстоўвалася" 59 | records: "Запісы" 60 | username: "Карыстальнік" 61 | changes: "Змены" 62 | created_at: "Дата/Час" 63 | item: "Элемент" 64 | message: "Паведамленне" 65 | actions: 66 | dashboard: 67 | title: "Кіраванне сайтам" 68 | menu: "Панэль кіравання" 69 | breadcrumb: "Панэль кіравання" 70 | index: 71 | title: "Спіс %{model_label_plural}" 72 | menu: "Спіс" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Дэталі %{model_label} '%{object_label}'" 76 | menu: "Прагляд" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Паказаць у дадатку" 80 | new: 81 | title: "Новы %{model_label}" 82 | menu: "Стварэнне" 83 | breadcrumb: "новы" 84 | link: "Дадаць %{model_label}" 85 | done: "створана" 86 | edit: 87 | title: "Рэдагаванне %{model_label} '%{object_label}'" 88 | menu: "Рэдагаванне" 89 | breadcrumb: "рэдагаванне" 90 | link: "Рэдагаваць %{model_label}" 91 | done: "захавана" 92 | delete: 93 | title: "Выдаленне %{model_label} '%{object_label}'" 94 | menu: "Выдаленне" 95 | breadcrumb: "выдаленне" 96 | link: "Выдаліць '%{object_label}'" 97 | done: "выдалена" 98 | bulk_delete: 99 | title: "Выдаліць шмат %{model_label_plural}" 100 | menu: "Множнае выдаленне" 101 | breadcrumb: "Множнае выдаленне" 102 | bulk_link: "Выдаліць абраныя %{model_label_plural}" 103 | export: 104 | title: "Экспарт %{model_label}" 105 | menu: "Экспарт" 106 | breadcrumb: "экспарт" 107 | link: "Экспарт знойдзеных %{model_label_plural}" 108 | bulk_link: "Экспарт выбраных %{model_label_plural}" 109 | done: "экспартавана" 110 | history_index: 111 | title: "Гісторыя для %{model_label_plural}" 112 | menu: "Гісторыя" 113 | breadcrumb: "Гісторыя" 114 | history_show: 115 | title: "Гісторыя для %{model_label} '%{object_label}'" 116 | menu: "Гісторыя" 117 | breadcrumb: "Гісторыя" 118 | form: 119 | cancel: "Адмен" 120 | basic_info: "Асноўнае" 121 | required: "Патрабаванае" 122 | optional: "Неабавязковае" 123 | one_char: "сімвал" 124 | char_length_up_to: "даўжыня не больш" 125 | char_length_of: "даўжыня" 126 | save: "Захаваць" 127 | save_and_add_another: "Захаваць і дадаць новы" 128 | save_and_edit: "Захаваць і працягнуць рэдагаванне" 129 | all_of_the_following_related_items_will_be_deleted: "Наступныя аб'екты будуць выдалены:" 130 | are_you_sure_you_want_to_delete_the_object: "Вы ўпэўненыя, што хочаце выдаліць %{model_name}" 131 | confirmation: "Так, упэўнены" 132 | bulk_delete: "Наступныя аб'екты будуць выдаленыя. Гэта можа зламаць сувязі з іншымі аб'ектамі:" 133 | new_model: "%{name} (новы)" 134 | export: 135 | confirmation: "Экспартаваць як %{name}" 136 | select: "Абярыце поля для экспарту" 137 | select_all_fields: "Выбраць усе палі" 138 | fields_from: "Поля з %{name}" 139 | fields_from_associated: "Поля з асацыяванай %{name}" 140 | display: "Паказаць %{name}: %{type}" 141 | options_for: "Настройкі для %{name}" 142 | empty_value_for_associated_objects: "<пуста>" 143 | click_to_reverse_selection: 'Адмяніць вылучэнне' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "Дэкадаваць як" 148 | encoding_to_help: "Выберыце выніковую кадыроўку. Пакіньце пустой, каб захаваць бягучую кадыроўку: (%{name})" 149 | skip_header: "Без загалоўка" 150 | skip_header_help: "Не выводзіць загаловак (без апісанняў палёў)" 151 | default_col_sep: "," 152 | col_sep: "Падзельнік слупкоў" 153 | col_sep_help: "Пакіньце пустым, каб было па-змаўчанні ('%{value}')" # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/sk.yml: -------------------------------------------------------------------------------- 1 | --- 2 | sk: 3 | admin: 4 | actions: 5 | bulk_delete: 6 | breadcrumb: Viacnásobné mazanie 7 | bulk_link: Zmaž vybrané %{model_label_plural} 8 | menu: Viacnásobné mazanie 9 | title: Zmaž %{model_label_plural} 10 | dashboard: 11 | breadcrumb: Panel 12 | menu: Panel 13 | title: Administrácia stránky 14 | delete: 15 | breadcrumb: Zmazať 16 | done: vymazané 17 | link: Zmazať '%{object_label}' 18 | menu: Zmazať 19 | title: Zmaž %{model_label} '%{object_label}' 20 | edit: 21 | breadcrumb: Uprav 22 | done: upravené 23 | link: Uprav tento %{model_label} 24 | menu: Uprav 25 | title: Uprav %{model_label} '%{object_label}' 26 | export: 27 | breadcrumb: Export 28 | bulk_link: Exportovať vybrané %{model_label_plural} 29 | done: exportované 30 | link: Export nájdený %{model_label_plural} 31 | menu: Export 32 | title: Export %{model_label_plural} 33 | history_index: 34 | breadcrumb: História 35 | menu: História 36 | title: História pre %{model_label_plural} 37 | history_show: 38 | breadcrumb: História 39 | menu: História 40 | title: História pre %{model_label} '%{object_label}' 41 | index: 42 | breadcrumb: "%{model_label_plural}" 43 | menu: Zobraz zoznam 44 | no_records: Nenájdené žiadne záznamy 45 | title: Zoznam %{model_label_plural} 46 | new: 47 | breadcrumb: Nový 48 | done: vytvorené 49 | link: Pridaj nový %{model_label} 50 | menu: Pridaj nový 51 | title: Nový %{model_label} 52 | show: 53 | breadcrumb: "%{object_label}" 54 | menu: Zobraz 55 | title: Detaily pre %{model_label} '%{object_label}' 56 | show_in_app: 57 | menu: Zobraziť v aplikácii 58 | title: "Zobraziť %{model_label} v aplikácii" 59 | export: 60 | click_to_reverse_selection: Klikni na obrátenie výberu 61 | confirmation: Exportovať do %{name} 62 | csv: 63 | col_sep: Oddeľovač stĺpcov 64 | col_sep_help: Nechaj prázdne pre východzie ('%{value}') 65 | default_col_sep: "," 66 | encoding_to: Zakódovať do 67 | encoding_to_help: 'Vyberte výstupné kódovanie. Nechajte prázdne na nemenenie súčasného vstupného kódovania: (%{name}).' 68 | header_for_association_methods: "%{name} [%{association}]" 69 | header_for_root_methods: "%{name}" 70 | skip_header: Bez záhlavia 71 | skip_header_help: Nedať do výstupu hlavičku (nebude žiadny popis polí) 72 | display: 'Zobraz %{name}: %{type}' 73 | empty_value_for_associated_objects: "" 74 | fields_from: Polia z %{name} 75 | fields_from_associated: Polia zo zviazaného %{name} 76 | options_for: Voľby pre %{name} 77 | select: Vyber polia na exportovanie 78 | select_all_fields: Vyber všetky polia 79 | flash: 80 | error: Pri %{name} zlyhalo vykonanie akcie %{action} 81 | model_not_found: Model '%{model}' nemohol byť nájdený 82 | noaction: Neboli vykonané žiadne akcie 83 | object_not_found: "%{model} s id '%{id}' nemohol byť nájdený" 84 | successful: "%{name} úspešne vykonal %{action}" 85 | form: 86 | all_of_the_following_related_items_will_be_deleted: "? Nasledujúce súvisiace veci budú vymazané alebo opustené:" 87 | are_you_sure_you_want_to_delete_the_object: Naozaj chcete vymazať tento %{model_name} 88 | basic_info: Základné info 89 | bulk_delete: 'Nasledujúce objekty budú vymazané, ktoré môžu vymazať alebo opustiť niektoré zo súvisiacich objektov:' 90 | cancel: Zrušiť 91 | char_length_of: dĺžka 92 | char_length_up_to: dĺžka do 93 | confirmation: Áno, som si istý 94 | delete_file: "Vymazať '%{field_label}' #%{number}" 95 | new_model: "%{name} (nový)" 96 | one_char: znak 97 | optional: Nepovinné 98 | required: Vyžadované 99 | save: Uložiť 100 | save_and_add_another: Uložiť a pridať ďalší 101 | save_and_edit: Uložiť a upraviť 102 | home: 103 | name: Domov 104 | js: 105 | between_and_: Medzi ... a ... 106 | clear: Zmazať 107 | contains: Obsahuje 108 | date: Dátum ... 109 | does_not_contain: Neobsahuje 110 | ends_with: Ends with 111 | 'false': 'nie' 112 | is_blank: Je prázdny 113 | is_exactly: Je presne 114 | is_present: Je prítomný 115 | last_week: Posledný týždeň 116 | no_objects: Nenašli sa žiadne objekty 117 | number: Číslo ... 118 | starts_with: Začína na 119 | this_week: Tento týždeň 120 | time: Čas ... 121 | today: Dnes 122 | too_many_objects: Priveľa objektov, použite vyhľadávanie 123 | 'true': 'áno' 124 | yesterday: Včera 125 | loading: Loading... 126 | misc: 127 | add_filter: Pridaj filter 128 | add_new: Pridaj nový 129 | ago: pred 130 | bulk_menu_title: Vybrané položky 131 | chose_all: Vyber všetky 132 | chosen: Vybraný %{name} 133 | clear_all: Vymaž všetko 134 | down: Dole 135 | filter: Filter 136 | filter_date_format: dd.mm.yy 137 | log_out: Odhlásiť sa 138 | more: Plus %{count} viac %{models_name} 139 | navigation: Navigácia 140 | navigation_static_label: Odkazy 141 | refresh: Obnov 142 | remove: Odstráň 143 | reset_filters: Vymazať filtre 144 | root_navigation: Akcie 145 | search: Hľadať 146 | show_all: Ukáž všetky 147 | time_ago: "Pred %{time}" 148 | up: Hore 149 | pagination: 150 | next: Ďalej » 151 | previous: "« Späť" 152 | truncate: "…" 153 | table_headers: 154 | changes: Zmeny 155 | created_at: Dátum/čas 156 | item: Položka 157 | last_created: Naposledy vytvorené 158 | last_used: Naposledy použité 159 | message: Správa 160 | model_name: Názov modelu 161 | records: Záznamy 162 | username: Užívateľ 163 | toggle_navigation: Zobraziť navigáciu 164 | -------------------------------------------------------------------------------- /locales/ru.yml: -------------------------------------------------------------------------------- 1 | ru: 2 | admin: 3 | js: 4 | true: Истинно 5 | false: Ложно 6 | between_and_: Между ... и ... 7 | contains: Включает 8 | date: Дата ... 9 | ends_with: Заканчивается на 10 | is_blank: Пусто 11 | is_exactly: Точно 12 | is_present: Представлено 13 | last_week: На прошлой неделе 14 | no_objects: Нет объектов 15 | number: Число ... 16 | starts_with: Начинается с 17 | this_week: На этой неделе 18 | today: Сегодня 19 | too_many_objects: Слишком много объектов 20 | yesterday: Вчера 21 | loading: "Загрузка..." 22 | home: 23 | name: "Главная" 24 | pagination: 25 | previous: "« Назад" 26 | next: "Вперед »" 27 | truncate: "…" 28 | misc: 29 | add_filter: "Добавить фильтр..." 30 | add_new: "Добавить" 31 | ago: "назад" 32 | bulk_menu_title: "Выбранные элементы..." 33 | chose_all: "Выбрать все" 34 | chosen: "Выбран %{name}" 35 | clear_all: "Очистить все" 36 | down: "Вниз" 37 | filter: "Фильтрация" 38 | filter_date_format: "dd/mm/yy" 39 | log_out: "Выйти" 40 | more: "Больше" 41 | navigation: "Навигация" 42 | navigation_static_label: "Ссылки" 43 | refresh: "Обновить" 44 | remove: "Удалить" 45 | reset_filters: "Сбросить фильтры" 46 | search: "Поиск" 47 | show_all: "Показать все" 48 | up: "Вверх" 49 | flash: 50 | successful: "%{name} успешно %{action}" 51 | error: "%{name} не %{action} из-за ошибок" 52 | noaction: "Никаких изменений не выполнено" 53 | model_not_found: "Модель '%{model}' не найдена" 54 | object_not_found: "Объект %{model} с id '%{id}' не найден" 55 | table_headers: 56 | model_name: "Название модели" 57 | last_created: "Последнее создание" 58 | last_used: "Последний раз использовалось" 59 | records: "Записи" 60 | username: "Пользователь" 61 | changes: "Изменения" 62 | created_at: "Дата/Время" 63 | item: "Элемент" 64 | message: "Сообщение" 65 | toggle_navigation: Переключить навигацию 66 | actions: 67 | dashboard: 68 | title: "Управление сайтом" 69 | menu: "Панель управления" 70 | breadcrumb: "Панель управления" 71 | index: 72 | title: "Список %{model_label_plural}" 73 | menu: "Список" 74 | breadcrumb: "%{model_label_plural}" 75 | show: 76 | title: "Детали %{model_label} '%{object_label}'" 77 | menu: "Просмотр" 78 | breadcrumb: "%{object_label}" 79 | show_in_app: 80 | title: "Показать %{model_label} в приложении" 81 | menu: "Показать в приложении" 82 | new: 83 | title: "Новый %{model_label}" 84 | menu: "Создание" 85 | breadcrumb: "новый" 86 | link: "Добавить %{model_label}" 87 | done: "создано" 88 | edit: 89 | title: "Редактирование %{model_label} '%{object_label}'" 90 | menu: "Редактирование" 91 | breadcrumb: "редактирование" 92 | link: "Редактировать %{model_label}" 93 | done: "сохранено" 94 | delete: 95 | title: "Удаление %{model_label} '%{object_label}'" 96 | menu: "Удаление" 97 | breadcrumb: "удаление" 98 | link: "Удалить '%{object_label}'" 99 | done: "удалено" 100 | bulk_delete: 101 | title: "Удалить много %{model_label_plural}" 102 | menu: "Множественное удаление" 103 | breadcrumb: "Множественное удаление" 104 | bulk_link: "Удалить выбранные %{model_label_plural}" 105 | export: 106 | title: "Экспорт %{model_label}" 107 | menu: "Экспорт" 108 | breadcrumb: "экспорт" 109 | link: "Экспорт найденных %{model_label_plural}" 110 | bulk_link: "Экспорт выбраных %{model_label_plural}" 111 | done: "экспортировано" 112 | history_index: 113 | title: "История для %{model_label_plural}" 114 | menu: "История" 115 | breadcrumb: "История" 116 | history_show: 117 | title: "История для %{model_label} '%{object_label}'" 118 | menu: "История" 119 | breadcrumb: "История" 120 | form: 121 | cancel: "Отмена" 122 | basic_info: "Основное" 123 | required: "Требуемое" 124 | optional: "Необязательное" 125 | one_char: "символ" 126 | char_length_up_to: "длина не более" 127 | char_length_of: "длина" 128 | save: "Сохранить" 129 | save_and_add_another: "Сохранить и добавить новый" 130 | save_and_edit: "Сохранить и продолжить редактирование" 131 | all_of_the_following_related_items_will_be_deleted: "? Следующие объекты будут удалены или останутся без зависимости:" 132 | are_you_sure_you_want_to_delete_the_object: "Вы уверены, что хотите удалить %{model_name}" 133 | confirmation: "Да, уверен" 134 | bulk_delete: "Следующие объекты будут удалены. Это может сломать связи с другими объектами:" 135 | new_model: "%{name} (новый)" 136 | export: 137 | confirmation: "Экспортировать как %{name}" 138 | select: "Выберите поля для экспорта" 139 | select_all_fields: "Выбрать все поля" 140 | fields_from: "Поля из %{name}" 141 | fields_from_associated: "Поля из ассоциированной %{name}" 142 | display: "Показать %{name}: %{type}" 143 | options_for: "Настройки для %{name}" 144 | empty_value_for_associated_objects: "<пусто>" 145 | click_to_reverse_selection: 'Отменить выделение' 146 | csv: 147 | header_for_root_methods: "%{name}" # 'model' is available 148 | header_for_association_methods: "%{name} [%{association}]" 149 | encoding_to: "Декодировать как" 150 | encoding_to_help: "Выберите результирующую кодировку. Оставьте пустой, чтобы сохранить текущую кодировку: (%{name})" 151 | skip_header: "Без заголовка" 152 | skip_header_help: "Не выводить заголовок (без описаний полей)" 153 | default_col_sep: "," 154 | col_sep: "Разделитель столбцов" 155 | col_sep_help: "Оставьте пустым, чтобы было по-умолчанию ('%{value}')" # value is default_col_sep 156 | -------------------------------------------------------------------------------- /locales/id.yml: -------------------------------------------------------------------------------- 1 | id: 2 | admin: 3 | js: 4 | true: Benar 5 | false: Salah 6 | is_present: Apakah ada 7 | is_blank: Apakah kosong 8 | date: Tanggal ... 9 | between_and_: Di antara ... dan ... 10 | today: Hari ini 11 | yesterday: Kemarin 12 | this_week: Minggu ini 13 | last_week: Minggu lalu 14 | number: Angka ... 15 | contains: Mengandung 16 | is_exactly: Sama persis 17 | starts_with: Dimulai dengan 18 | ends_with: Diakhiri dengan 19 | too_many_objects: "Terlalu banyak objek, gunakan kotak pencarian di atas" 20 | no_objects: "Tidak ada objek yang ditemukan" 21 | loading: "Sedang memuat..." 22 | toggle_navigation: Navigasi Toggle 23 | home: 24 | name: "Home" 25 | pagination: 26 | previous: "« Sebelumnya" 27 | next: "Selanjutnya »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Cari" 32 | filter: "Filter" 33 | refresh: "Refresh" 34 | show_all: "Tampilkan semua" 35 | add_filter: "Tambah filter" 36 | bulk_menu_title: "Item-item terpilih" 37 | remove: "Hapus" 38 | add_new: "Tambah baru" 39 | chosen: "Terpilih %{name}" 40 | chose_all: "Pilih semua" 41 | clear_all: "Bersihkan semua" 42 | up: "Ke atas" 43 | down: "Ke bawah" 44 | navigation: "Navigasi" 45 | navigation_static_label: "Links" 46 | log_out: "Keluar" 47 | ago: "yang lalu" 48 | more: "Tambah lagi %{count} %{models_name}" 49 | flash: 50 | successful: "%{name} berhasil %{action}" 51 | error: "%{name} gagal untuk %{action}" 52 | noaction: "Tidak ada tindakan yang dilakukan" 53 | model_not_found: "Model '%{model}' tidak dapat ditemukan" 54 | object_not_found: "%{model} dengan id '%{id}' tidak dapat ditemukan" 55 | table_headers: 56 | model_name: "Nama model" 57 | last_created: "Terakhir dibuat" 58 | last_used: "Terakhir digunakan" 59 | records: "Records" 60 | username: "Pengguna" 61 | changes: "Perubahan" 62 | created_at: "Tanggal/Waktu" 63 | item: "Item" 64 | message: "Pesan" 65 | actions: 66 | dashboard: 67 | title: "Administrasi Situs" 68 | menu: "Dasbor" 69 | breadcrumb: "Dasbor" 70 | index: 71 | title: "Daftar %{model_label_plural}" 72 | menu: "Daftar" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Detail untuk %{model_label} '%{object_label}'" 76 | menu: "Tampilkan" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Tampilkan di aplikasi" 80 | new: 81 | title: "%{model_label} baru" 82 | menu: "Tambah baru" 83 | breadcrumb: "Baru" 84 | link: "Tambah %{model_label} baru" 85 | done: "sudah dibuat" 86 | edit: 87 | title: "Ubah %{model_label} '%{object_label}'" 88 | menu: "Ubah" 89 | breadcrumb: "Ubah" 90 | link: "Ubah %{model_label} ini" 91 | done: "sudah diperbarui" 92 | delete: 93 | title: "Hapus %{model_label} '%{object_label}'" 94 | menu: "Hapus" 95 | breadcrumb: "Hapus" 96 | link: "Hapus '%{object_label}'" 97 | done: "sudah dihapus" 98 | bulk_delete: 99 | title: "Hapus %{model_label_plural}" 100 | menu: "Hapus banyak" 101 | breadcrumb: "Hapus banyak" 102 | bulk_link: "Hapus %{model_label_plural} terpilih" 103 | export: 104 | title: "Export %{model_label_plural}" 105 | menu: "Export" 106 | breadcrumb: "Export" 107 | link: "Export ditemukan %{model_label_plural}" 108 | bulk_link: "Export dipilih %{model_label_plural}" 109 | done: "sudah diexport" 110 | history_index: 111 | title: "Riwayat untuk %{model_label_plural}" 112 | menu: "Riwayat" 113 | breadcrumb: "Riwayat" 114 | history_show: 115 | title: "Riwayat untuk %{model_label} '%{object_label}'" 116 | menu: "Riwayat" 117 | breadcrumb: "Riwayat" 118 | form: 119 | cancel: "Batalkan" 120 | basic_info: "Info dasar" 121 | required: "Wajib" 122 | optional: "Opsional" 123 | one_char: "Karakter" 124 | char_length_up_to: "panjangnya hingga" 125 | char_length_of: "panjang dari" 126 | save: "Simpan" 127 | save_and_add_another: "Simpan dan tambah lainnya" 128 | save_and_edit: "Simpan dan ubah" 129 | all_of_the_following_related_items_will_be_deleted: "? Item-item berikut ini akan dihapus:" 130 | are_you_sure_you_want_to_delete_the_object: "Apa kamu yakin ingin menghapus ini %{model_name}" 131 | confirmation: "Ya, saya yakin" 132 | bulk_delete: "Objek berikut ini akan dihapus dan mungkin menghapus atau menghilangkan beberapa dependensi terkait:" 133 | new_model: "%{name} (new)" 134 | export: 135 | confirmation: "Export ke %{name}" 136 | select: "Pilih field untuk di-export" 137 | select_all_fields: "Pilih Semua Field" 138 | fields_from: "Field dari %{name}" 139 | fields_from_associated: "Field yang terkait dengan %{name}" 140 | display: "Tampilkan %{name}: %{type}" 141 | options_for: "Pilihan untuk %{name}" 142 | empty_value_for_associated_objects: "" 143 | click_to_reverse_selection: 'Klik untuk membalikkan pilihan' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "Encode ke" 148 | encoding_to_help: "Pilih encoding output. Biarkan kosong untuk tidak mengubah encoding input saat ini: (%{name})" 149 | skip_header: "Tanpa header" 150 | skip_header_help: "Jangan tampilkan header (tidak ada deskripsi field)" 151 | default_col_sep: "," 152 | col_sep: "Pemisah kolom" 153 | col_sep_help: "Biarkan kosong untuk nilai default ('%{value}')" # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/uk.yml: -------------------------------------------------------------------------------- 1 | uk: 2 | admin: 3 | home: 4 | name: "Домашня" 5 | pagination: 6 | previous: "« Назад" 7 | next: "Вперед »" 8 | truncate: "…" 9 | misc: 10 | add_filter: "Додати фільтр" 11 | add_new: "Створити" 12 | ago: "тому" 13 | bulk_menu_title: "Вибрані елементи" 14 | chose_all: "Вибрати всі" 15 | chosen: "Обраний %{name}" 16 | clear_all: "Видалити всі" 17 | down: "Вниз" 18 | filter: "Фільтр" 19 | filter_date_format: "dd.mm.yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 20 | log_out: "Розлогінитись" 21 | more: "Більше" 22 | navigation: "Навігація" 23 | navigation_static_label: "Посилання" 24 | refresh: "Оновити" 25 | remove: "Видалити" 26 | reset_filters: "Скинути фільтри" 27 | search: "Пошук" 28 | show_all: "Показати всі" 29 | up: "Вверх" 30 | flash: 31 | successful: "%{name} успішно %{action}" 32 | error: "%{name} не %{action} через помилки" 33 | noaction: "Нічого не відбулось" 34 | model_not_found: "Модель '%{model}' не знайдено" 35 | object_not_found: "%{model} з id '%{id}' не знайдено" 36 | table_headers: 37 | model_name: "Назва моделі" 38 | last_created: "Востаннє створено" 39 | last_used: "Останній раз використовувався" 40 | records: "Записи" 41 | username: "Користувач" 42 | changes: "Зміни" 43 | created_at: "Дата/Час" 44 | item: "Елемент" 45 | message: "Повідомлення" 46 | actions: 47 | dashboard: 48 | title: "Адміністрування сайту" 49 | menu: "Дашборд" 50 | breadcrumb: "Дашборд" 51 | index: 52 | title: "Список %{model_label_plural}" 53 | menu: "Список" 54 | breadcrumb: "%{model_label_plural}" 55 | show: 56 | title: "Детально про %{model_label} «%{object_label}»" 57 | menu: "Показати" 58 | breadcrumb: "%{object_label}" 59 | show_in_app: 60 | title: "Показати %{model_label} у додатку" 61 | menu: "Показати у додатку" 62 | new: 63 | title: "Новий %{model_label}" 64 | menu: "Створити" 65 | breadcrumb: "Створення" 66 | link: "Створити %{model_label}" 67 | done: "створено" 68 | edit: 69 | title: "Редагування %{model_label} «%{object_label}»" 70 | menu: "Редагувати" 71 | breadcrumb: "Редагування" 72 | link: "Редагувати %{model_label}" 73 | done: "оновлено" 74 | delete: 75 | title: "Видалення %{model_label} «%{object_label}»" 76 | menu: "Видалити" 77 | breadcrumb: "Видалення" 78 | link: "Видалити %{object_label}" 79 | done: "видалено" 80 | bulk_delete: 81 | title: "Видалити %{model_label_plural}" 82 | menu: "Масове видалення" 83 | breadcrumb: "Масове видалення" 84 | bulk_link: "Видалити обрані %{model_label_plural}" 85 | export: 86 | title: "Експорт %{model_label_plural}" 87 | menu: "Експорт" 88 | breadcrumb: "Експорт" 89 | link: "Експортувати знайдені «%{model_label_plural}»" 90 | bulk_link: "Експортувати обрані «%{model_label_plural}»" 91 | done: "експортовано" 92 | history_index: 93 | title: "Історія для «%{model_label_plural}»" 94 | menu: "Історія" 95 | breadcrumb: "Історія" 96 | history_show: 97 | title: "Історія для %{model_label} «%{object_label}»" 98 | menu: "Історія" 99 | breadcrumb: "Історія" 100 | form: 101 | cancel: "Відмінити" 102 | basic_info: "Осоновна інформація" 103 | required: "Обов’язкове" 104 | optional: "Опціональне" 105 | one_char: "символ" 106 | char_length_up_to: "довжиною до" 107 | char_length_of: "довжина" 108 | save: "Зберегти" 109 | save_and_add_another: "Зберегти і додати новий елемент" 110 | save_and_edit: "Зберегти і редагувати" 111 | all_of_the_following_related_items_will_be_deleted: "? Всі зв’язані елементи буде видалено або відв’язано:" 112 | are_you_sure_you_want_to_delete_the_object: "Чи ви справді хочете видалити %{model_name}" 113 | confirmation: "Так, я впевнений" 114 | bulk_delete: "Наступні об’єкти буде видалено, що призведе до видалення наступних пов’язаних елементів (або лише зв’язку з ними):" 115 | new_model: "%{name} (new)" 116 | export: 117 | confirmation: "Експортувати в %{name}" 118 | select: "Виберіть поля для експорту" 119 | select_all_fields: "Обрати всі поля" 120 | fields_from: "Поля з %{name}" 121 | fields_from_associated: "Поля з пов'язаного %{name}" 122 | display: "Показати %{name}: %{type}" 123 | options_for: "Опції для %{name}" 124 | empty_value_for_associated_objects: "<пусто>" 125 | click_to_reverse_selection: "Клік для відміни вибору" 126 | csv: 127 | header_for_root_methods: "%{name}" # 'model' is available 128 | header_for_association_methods: "%{name} [%{association}]" 129 | encoding_to: "Кодувати" 130 | encoding_to_help: "Виберіть кодування виводу. Залиште поле порожнім, щоб поточне кодування не змінилось: (%{name})" 131 | skip_header: "Без заголовка" 132 | skip_header_help: "Не виводити заголовок (без опису полів)" 133 | default_col_sep: "," 134 | col_sep: "Роздільник стовпців" 135 | col_sep_help: "Залишити пустим по замовчуванню ('%{value}')" # value is default_col_sep 136 | js: 137 | true: Істинно 138 | false: Хибно 139 | is_present: Наявне 140 | is_blank: Порожнє 141 | date: Дата ... 142 | between_and_: Між ... та ... 143 | today: Сьогодні 144 | yesterday: Учора 145 | this_week: Цього тижня 146 | last_week: Попереднього тижня 147 | number: Номер ... 148 | contains: Містить 149 | is_exactly: Саме 150 | starts_with: Починається з 151 | ends_with: Закінчується на 152 | too_many_objects: "Забагато об'єктів, використовуйте вікно пошуку вище" 153 | no_objects: "Об'єктів не знайдено" 154 | loading: "Завантаження..." 155 | toggle_navigation: "Переключити навігацію" 156 | -------------------------------------------------------------------------------- /locales/uk-UA.yml: -------------------------------------------------------------------------------- 1 | uk-UA: 2 | admin: 3 | actions: 4 | bulk_delete: 5 | breadcrumb: "Масове видалення" 6 | bulk_link: "Видалити обрані %{model_label_plural}" 7 | menu: "Масове видалення" 8 | title: "Видалити %{model_label_plural}" 9 | dashboard: 10 | breadcrumb: "Дашборд" 11 | menu: "Дашборд" 12 | title: "Адміністрування сайту" 13 | delete: 14 | breadcrumb: "Видалення" 15 | done: "видалено" 16 | link: "Видалити %{object_label}" 17 | menu: "Видалити" 18 | title: "Видалення %{model_label} «%{object_label}»" 19 | edit: 20 | breadcrumb: "Редагування" 21 | done: "оновлено" 22 | link: "Редагувати %{model_label}" 23 | menu: "Редагувати" 24 | title: "Редагування %{model_label} «%{object_label}»" 25 | export: 26 | breadcrumb: "Експорт" 27 | bulk_link: "Експортувати обрані «%{model_label_plural}»" 28 | done: "експортовано" 29 | link: "Експортувати знайдені «%{model_label_plural}»" 30 | menu: "Експорт" 31 | title: "Експорт %{model_label_plural}" 32 | history_index: 33 | breadcrumb: "Історія" 34 | menu: "Історія" 35 | title: "Історія для «%{model_label_plural}»" 36 | history_show: 37 | breadcrumb: "Історія" 38 | menu: "Історія" 39 | title: "Історія для %{model_label} «%{object_label}»" 40 | index: 41 | breadcrumb: "%{model_label_plural}" 42 | menu: "Список" 43 | title: "Список %{model_label_plural}" 44 | new: 45 | breadcrumb: "Створення" 46 | done: "створено" 47 | link: "Створити %{model_label}" 48 | menu: "Створити" 49 | title: "Новий %{model_label}" 50 | show: 51 | breadcrumb: "%{object_label}" 52 | menu: "Показати" 53 | title: "Детально про %{model_label} «%{object_label}»" 54 | show_in_app: 55 | menu: "Показати у додатку" 56 | title: "Показати %{model_label} у додатку" 57 | export: 58 | click_to_reverse_selection: "Клік для відміни вибору" 59 | confirmation: "Експортувати в %{name}" 60 | display: "Показати %{name}: %{type}" 61 | empty_value_for_associated_objects: "<пусто>" 62 | fields_from: "Поля з %{name}" 63 | fields_from_associated: "Поля з пов'язаного %{name}" 64 | options_for: "Опції для %{name}" 65 | select: "Виберіть поля для експорту" 66 | select_all_fields: "Обрати всі поля" 67 | csv: 68 | col_sep: "Роздільник стовпців" 69 | col_sep_help: "Залишити пустим по замовчуванню ('%{value}')" # value is default_col_sep 70 | default_col_sep: "," 71 | encoding_to: "Кодувати" 72 | encoding_to_help: "Виберіть кодування виводу. Залиште поле порожнім, щоб поточне кодування не змінилось: (%{name})" 73 | header_for_association_methods: "%{name} [%{association}]" 74 | header_for_root_methods: "%{name}" # 'model' is available 75 | skip_header: "Без заголовка" 76 | skip_header_help: "Не виводити заголовок (без опису полів)" 77 | flash: 78 | error: "%{name} не %{action} через помилки" 79 | model_not_found: "Модель '%{model}' не знайдено" 80 | noaction: "Нічого не відбулось" 81 | object_not_found: "%{model} з id '%{id}' не знайдено" 82 | successful: "%{name} успішно %{action}" 83 | form: 84 | all_of_the_following_related_items_will_be_deleted: "? Всі зв’язані елементи буде видалено або відв’язано:" 85 | are_you_sure_you_want_to_delete_the_object: "Чи ви справді хочете видалити %{model_name}" 86 | basic_info: "Осоновна інформація" 87 | bulk_delete: "Наступні об’єкти буде видалено, що призведе до видалення наступних пов’язаних елементів (або лише зв’язку з ними):" 88 | cancel: "Відмінити" 89 | char_length_of: "довжина" 90 | char_length_up_to: "довжиною до" 91 | confirmation: "Так, я впевнений" 92 | new_model: "%{name} (new)" 93 | one_char: "символ" 94 | optional: "Опціональне" 95 | required: "Обов’язкове" 96 | save: "Зберегти" 97 | save_and_add_another: "Зберегти і додати новий елемент" 98 | save_and_edit: "Зберегти і редагувати" 99 | home: 100 | name: "Домашня" 101 | js: 102 | true: Істинно 103 | false: Хибно 104 | is_present: Наявне 105 | is_blank: Порожнє 106 | date: Дата ... 107 | between_and_: Між ... та ... 108 | today: Сьогодні 109 | yesterday: Учора 110 | this_week: Цього тижня 111 | last_week: Попереднього тижня 112 | number: Номер ... 113 | contains: Містить 114 | is_exactly: Саме 115 | starts_with: Починається з 116 | ends_with: Закінчується на 117 | too_many_objects: "Забагато об'єктів, використовуйте вікно пошуку вище" 118 | no_objects: "Об'єктів не знайдено" 119 | loading: "Завантаження..." 120 | misc: 121 | add_filter: "Додати фільтр" 122 | add_new: "Створити" 123 | ago: "тому" 124 | bulk_menu_title: "Вибрані елементи" 125 | chose_all: "Вибрати всі" 126 | chosen: "Обраний %{name}" 127 | clear_all: "Видалити всі" 128 | down: "Вниз" 129 | filter: "Фільтр" 130 | filter_date_format: "dd.mm.yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 131 | log_out: "Розлогінитись" 132 | more: "Додатково ще %{count} %{models_name}" 133 | navigation: "Навігація" 134 | navigation_static_label: "Посилання" 135 | refresh: "Оновити" 136 | remove: "Видалити" 137 | reset_filters: "Скинути фільтри" 138 | search: "Пошук" 139 | show_all: "Показати всі" 140 | up: "Вверх" 141 | pagination: 142 | next: "Вперед »" 143 | previous: "« Назад" 144 | truncate: "…" 145 | table_headers: 146 | changes: "Зміни" 147 | created_at: "Дата/Час" 148 | item: "Елемент" 149 | last_created: "Востаннє створено" 150 | last_used: "Востаннє використано" 151 | message: "Повідомлення" 152 | model_name: "Назва моделі" 153 | records: "Записи" 154 | username: "Користувач" 155 | toggle_navigation: "Переключити навігацію" 156 | -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- 1 | en: 2 | admin: 3 | js: 4 | true: "True" 5 | false: "False" 6 | is_present: Is present 7 | is_blank: Is blank 8 | date: Date ... 9 | between_and_: Between ... and ... 10 | today: Today 11 | yesterday: Yesterday 12 | this_week: This week 13 | last_week: Last week 14 | time: Time ... 15 | number: Number ... 16 | contains: Contains 17 | does_not_contain: Does not contain 18 | is_exactly: Is exactly 19 | starts_with: Starts with 20 | ends_with: Ends with 21 | too_many_objects: "Too many objects, use search box above" 22 | no_objects: "No objects found" 23 | clear: Clear 24 | loading: "Loading..." 25 | toggle_navigation: Toggle navigation 26 | home: 27 | name: "Home" 28 | pagination: 29 | previous: "« Prev" 30 | next: "Next »" 31 | truncate: "…" 32 | misc: 33 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 34 | search: "Search" 35 | filter: "Filter" 36 | refresh: "Refresh" 37 | show_all: "Show all" 38 | add_filter: "Add filter" 39 | reset_filters: "Reset filters" 40 | bulk_menu_title: "Selected items" 41 | remove: "Remove" 42 | add_new: "Add new" 43 | chosen: "Chosen %{name}" 44 | chose_all: "Choose all" 45 | clear_all: "Clear all" 46 | up: "Up" 47 | down: "Down" 48 | navigation: "Navigation" 49 | root_navigation: "Actions" 50 | navigation_static_label: "Links" 51 | log_out: "Log out" 52 | time_ago: "%{time} ago" 53 | ago: "ago" 54 | more: "Plus %{count} more %{models_name}" 55 | flash: 56 | successful: "%{name} successfully %{action}" 57 | error: "%{name} failed to be %{action}" 58 | noaction: "No actions were taken" 59 | model_not_found: "Model '%{model}' could not be found" 60 | object_not_found: "%{model} with id '%{id}' could not be found" 61 | table_headers: 62 | model_name: "Model name" 63 | last_created: "Last created" 64 | last_used: "Last used" 65 | records: "Records" 66 | username: "User" 67 | changes: "Changes" 68 | created_at: "Date/Time" 69 | item: "Item" 70 | message: "Message" 71 | actions: 72 | dashboard: 73 | title: "Site Administration" 74 | menu: "Dashboard" 75 | breadcrumb: "Dashboard" 76 | index: 77 | title: "List of %{model_label_plural}" 78 | menu: "List" 79 | breadcrumb: "%{model_label_plural}" 80 | no_records: "No records found" 81 | show: 82 | title: "Details for %{model_label} '%{object_label}'" 83 | menu: "Show" 84 | breadcrumb: "%{object_label}" 85 | show_in_app: 86 | menu: "Show in app" 87 | title: "Show %{model_label} in app" 88 | new: 89 | title: "New %{model_label}" 90 | menu: "Add new" 91 | breadcrumb: "New" 92 | link: "Add a new %{model_label}" 93 | done: "created" 94 | edit: 95 | title: "Edit %{model_label} '%{object_label}'" 96 | menu: "Edit" 97 | breadcrumb: "Edit" 98 | link: "Edit this %{model_label}" 99 | done: "updated" 100 | delete: 101 | title: "Delete %{model_label} '%{object_label}'" 102 | menu: "Delete" 103 | breadcrumb: "Delete" 104 | link: "Delete '%{object_label}'" 105 | done: "deleted" 106 | bulk_delete: 107 | title: "Delete %{model_label_plural}" 108 | menu: "Multiple delete" 109 | breadcrumb: "Multiple delete" 110 | bulk_link: "Delete selected %{model_label_plural}" 111 | export: 112 | title: "Export %{model_label_plural}" 113 | menu: "Export" 114 | breadcrumb: "Export" 115 | link: "Export found %{model_label_plural}" 116 | bulk_link: "Export selected %{model_label_plural}" 117 | done: "exported" 118 | history_index: 119 | title: "History for %{model_label_plural}" 120 | menu: "History" 121 | breadcrumb: "History" 122 | history_show: 123 | title: "History for %{model_label} '%{object_label}'" 124 | menu: "History" 125 | breadcrumb: "History" 126 | form: 127 | cancel: "Cancel" 128 | basic_info: "Basic info" 129 | required: "Required" 130 | optional: "Optional" 131 | one_char: "character" 132 | char_length_up_to: "length up to" 133 | char_length_of: "length of" 134 | save: "Save" 135 | save_and_add_another: "Save and add another" 136 | save_and_edit: "Save and edit" 137 | delete_file: "Delete '%{field_label}' #%{number}" 138 | all_of_the_following_related_items_will_be_deleted: "? The following related items may be deleted or orphaned:" 139 | are_you_sure_you_want_to_delete_the_object: "Are you sure you want to delete this %{model_name}" 140 | confirmation: "Yes, I'm sure" 141 | bulk_delete: "The following objects will be deleted, which may delete or orphan some of their related dependencies:" 142 | new_model: "%{name} (new)" 143 | export: 144 | confirmation: "Export to %{name}" 145 | select: "Select fields to export" 146 | select_all_fields: "Select All Fields" 147 | fields_from: "Fields from %{name}" 148 | fields_from_associated: "Fields from associated %{name}" 149 | display: "Display %{name}: %{type}" 150 | options_for: "Options for %{name}" 151 | empty_value_for_associated_objects: "" 152 | click_to_reverse_selection: 'Click to reverse selection' 153 | csv: 154 | header_for_root_methods: "%{name}" # 'model' is available 155 | header_for_association_methods: "%{name} [%{association}]" 156 | encoding_to: "Encode to" 157 | encoding_to_help: "Choose output encoding. Leave empty to let current input encoding untouched: (%{name})" 158 | skip_header: "No header" 159 | skip_header_help: "Do not output a header (no fields description)" 160 | default_col_sep: "," 161 | col_sep: "Column separator" 162 | col_sep_help: "Leave blank for default ('%{value}')" # value is default_col_sep 163 | -------------------------------------------------------------------------------- /locales/fr.yml: -------------------------------------------------------------------------------- 1 | fr: 2 | admin: 3 | js: 4 | true: Vrai 5 | false: Faux 6 | is_present: Est présent 7 | is_blank: Est vide 8 | date: Date ... 9 | between_and_: Entre le ... et le ... 10 | today: Aujourd'hui 11 | yesterday: Hier 12 | this_week: Cette semaine 13 | last_week: La semaine dernière 14 | number: Nombre ... 15 | contains: Contient 16 | is_exactly: Est exactement 17 | starts_with: Commence par 18 | ends_with: Se termine par 19 | loading: "Chargement..." 20 | home: 21 | name: "Accueil" 22 | pagination: 23 | previous: "« Préc." 24 | next: "Suiv. »" 25 | truncate: "…" 26 | misc: 27 | filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 28 | search: "Recherche" 29 | filter: "Filtre" 30 | refresh: "Rafraîchir" 31 | show_all: "Montrer tout" 32 | add_filter: "Ajouter un filtre" 33 | reset_filters: "Réinitialiser les filtres" 34 | bulk_menu_title: "Élements sélectionnés" 35 | remove: "Supprimer" 36 | add_new: "Ajouter" 37 | chosen: "Choisi %{name}" 38 | chose_all: "Choisir tout" 39 | clear_all: "Effacer tout" 40 | up: "Monter" 41 | down: "Descendre" 42 | navigation: "Navigation" 43 | navigation_static_label: "Liens" 44 | log_out: "Se déconnecter" 45 | ago: "il y a" 46 | flash: 47 | successful: "%{name} : %{action} avec succès" 48 | error: "%{name} : n'a pas pu être %{action}" 49 | noaction: "Aucune action n'a été effectuée" 50 | model_not_found: "Le modèle '%{model}' est introuvable" 51 | object_not_found: "%{model} avec l'ID '%{id}' est introuvable" 52 | table_headers: 53 | model_name: "Nom du modèle" 54 | last_created: "Créé" 55 | last_used: "Dernière utilisation" 56 | records: "Enregistrements" 57 | username: "Nom d'utilisateur" 58 | changes: "Changements" 59 | created_at: "Date/Heure" 60 | item: "Élement" 61 | message: "Message" 62 | actions: 63 | dashboard: 64 | title: "Administration" 65 | menu: "Panneau de contrôle" 66 | breadcrumb: "Panneau de contrôle" 67 | index: 68 | title: "Liste des %{model_label_plural}" 69 | menu: "Liste" 70 | breadcrumb: "%{model_label_plural}" 71 | no_records: "Aucun enregistrement trouvé" 72 | show: 73 | title: "Détails pour %{model_label} '%{object_label}'" 74 | menu: "Voir" 75 | breadcrumb: "%{object_label}" 76 | show_in_app: 77 | menu: "Voir dans l'application" 78 | new: 79 | title: "Nouveau %{model_label}" 80 | menu: "Ajouter nouveau" 81 | breadcrumb: "Nouveau" 82 | link: "Ajouter un nouveau %{model_label}" 83 | done: "créé(e)" 84 | edit: 85 | title: "Modifier %{model_label} '%{object_label}'" 86 | menu: "Modifier" 87 | breadcrumb: "Modifier" 88 | link: "Modifier ce %{model_label}" 89 | done: "mis(e) à jour" 90 | delete: 91 | title: "Supprimer %{model_label} '%{object_label}'" 92 | menu: "Supprimer" 93 | breadcrumb: "Supprimer" 94 | link: "Supprimer '%{object_label}'" 95 | done: "supprimé(e)" 96 | bulk_delete: 97 | title: "Supprimer %{model_label_plural}" 98 | menu: "Suppression multiple" 99 | breadcrumb: "Suppression multiple" 100 | bulk_link: "Supprimer les %{model_label_plural} sélectionné(e)s" 101 | export: 102 | title: "Exporter %{model_label_plural}" 103 | menu: "Exporter" 104 | breadcrumb: "Exporter" 105 | link: "Exporter les %{model_label_plural} trouvé(e)s" 106 | bulk_link: "Exporter les %{model_label_plural} trouvé(e)s" 107 | done: "exporté(e)s" 108 | history_index: 109 | title: "Historique des %{model_label_plural}" 110 | menu: "Historique" 111 | breadcrumb: "Historique" 112 | history_show: 113 | title: "Historique de %{model_label} '%{object_label}'" 114 | menu: "Historique" 115 | breadcrumb: "Historique" 116 | form: 117 | cancel: "Annuler" 118 | basic_info: "Infos de base" 119 | required: "Obligatoire" 120 | optional: "Optionnel" 121 | one_char: "caractère" 122 | char_length_up_to: "longueur maxi. :" 123 | char_length_of: "longueur :" 124 | save: "Enregistrer" 125 | save_and_add_another: "Enregistrer et ajouter un autre" 126 | save_and_edit: "Enregister et modifier" 127 | all_of_the_following_related_items_will_be_deleted: "Tous les éléments relatifs suivants peuvent être également supprimés ou rendus orphelins :" 128 | are_you_sure_you_want_to_delete_the_object: "Êtes-vous sûr(e) de vouloir supprimer ce(tte) %{model_name}" 129 | confirmation: "Oui, je suis sûr(e)" 130 | bulk_delete: "Les objets suivants vont être supprimés, ce qui pourrait supprimer ou rendre orphelin certaines de ces dépendances :" 131 | new_model: "%{name} (nouveau)" 132 | export: 133 | confirmation: "Exporter vers %{name}" 134 | select: "Sélectionnez les champs à exporter" 135 | select_all_fields: "Sélectionner tous les champs" 136 | fields_from: "Champs de %{name}" 137 | fields_from_associated: "Champ du (de la) %{name} associé" 138 | display: "Affichage %{name}: %{type}" 139 | options_for: "Options pour %{name}" 140 | empty_value_for_associated_objects: "" 141 | click_to_reverse_selection: 'Cliquer pour inverser la sélection' 142 | csv: 143 | header_for_root_methods: "%{name}" # 'model' is available 144 | header_for_association_methods: "%{name} [%{association}]" 145 | encoding_to: "Encoder en" 146 | encoding_to_help: "Choisissez l'encodage de sortie. Laissez vide pour laisser les données non-encodées (%{name})" 147 | skip_header: "Aucun en-tête" 148 | skip_header_help: "Ne pas afficher d'en-tête (pas de description de champ)" 149 | default_col_sep: "," 150 | col_sep: "Séparateur de colonne" 151 | col_sep_help: "Laisser blanc pour la valeur par défaut ('%{value}')" # value is default_col_sep 152 | -------------------------------------------------------------------------------- /locales/tl.yml: -------------------------------------------------------------------------------- 1 | tl: 2 | admin: 3 | js: 4 | true: Tunay 5 | false: Mali 6 | is_present: Ay ngayon 7 | is_blank: Ay blanko 8 | date: Pecha ... 9 | between_and_: Mula ... at ... 10 | today: Ngayong araw 11 | yesterday: Kahapon 12 | this_week: Ngayong linggo 13 | last_week: Nakaraang linggo 14 | number: Numero ... 15 | contains: Naglalaman ng 16 | is_exactly: Ay eksaktong 17 | starts_with: Nagsisimula sa 18 | ends_with: Nagtatapos sa 19 | too_many_objects: "Mashadong maraming objekt, gamitin ang search box sa itaas" 20 | no_objects: "Walang nahanap na objekt" 21 | loading: "Nag-loload..." 22 | toggle_navigation: I-Togel ang nabigasyon 23 | home: 24 | name: "Home" 25 | pagination: 26 | previous: "« Nakaraan" 27 | next: "Susunod »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Mag-hanap" 32 | filter: "Mag-filter" 33 | refresh: "I-refresh" 34 | show_all: "Ipakita lahat" 35 | add_filter: "Magdagdag ng filter" 36 | bulk_menu_title: "Mga napiling aytem" 37 | remove: "Tanggalin" 38 | add_new: "Magdagdag ng bago" 39 | chosen: "Napiling %{name}" 40 | chose_all: "Piliin lahat" 41 | clear_all: "I-klir lahat" 42 | up: "Taas" 43 | down: "Baba" 44 | navigation: "Nabigashon" 45 | navigation_static_label: "Mga link" 46 | log_out: "Mag-log awt" 47 | ago: "Nakaraang" 48 | more: "Magdagdag %{count} mas %{models_name}" 49 | flash: 50 | successful: "%{name} matangumpay %{action}" 51 | error: "%{name} nag-fail %{action}" 52 | noaction: "Walang akshon na nagawa" 53 | model_not_found: "Model '%{model}' ay hindi mahanap" 54 | object_not_found: "%{model} ng id '%{id}' ay hindi mahanap" 55 | table_headers: 56 | model_name: "Pangalan ng Model" 57 | last_created: "Huling na-kreeyt" 58 | last_used: "Huling ginamit" 59 | records: "Mga rekord" 60 | username: "Pangalan ng user" 61 | changes: "Mga pagbabago" 62 | created_at: "Pecha/Oras" 63 | item: "Aytem" 64 | message: "Mensahe" 65 | actions: 66 | dashboard: 67 | title: "Administrasyon ng Sayt" 68 | menu: "Dashbord" 69 | breadcrumb: "Dashbord" 70 | index: 71 | title: "Listahan ng %{model_label_plural}" 72 | menu: "Listahan" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Detalye ng %{model_label} '%{object_label}'" 76 | menu: "Ipakita" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Ipakita sa app" 80 | new: 81 | title: "Bago %{model_label}" 82 | menu: "Magdagdag ng bago" 83 | breadcrumb: "Bago" 84 | link: "Magdagdag ng bagong %{model_label}" 85 | done: "Na-kreeyt" 86 | edit: 87 | title: "I-edit %{model_label} '%{object_label}'" 88 | menu: "I-edit" 89 | breadcrumb: "I-edit" 90 | link: "I-edit ito %{model_label}" 91 | done: "na-updeyt" 92 | delete: 93 | title: "Burahin %{model_label} '%{object_label}'" 94 | menu: "Burahin" 95 | breadcrumb: "Burahin" 96 | link: "Burahin '%{object_label}'" 97 | done: "Nabura na" 98 | bulk_delete: 99 | title: "Burahin %{model_label_plural}" 100 | menu: "Maramihang pagbubura" 101 | breadcrumb: "Maramihang pagbubura" 102 | bulk_link: "Burahin ang selekted %{model_label_plural}" 103 | export: 104 | title: "I-eksport %{model_label_plural}" 105 | menu: "I-eksport" 106 | breadcrumb: "I-eksport" 107 | link: "Nahanap ang eksport %{model_label_plural}" 108 | bulk_link: "I-eksport ang selekted %{model_label_plural}" 109 | done: "Na-eksport" 110 | history_index: 111 | title: "Kasaysayan ng %{model_label_plural}" 112 | menu: "Kasaysayan" 113 | breadcrumb: "Kasaysayan" 114 | history_show: 115 | title: "Kasaysayan para %{model_label} '%{object_label}'" 116 | menu: "Kasaysayan" 117 | breadcrumb: "Kasaysayan" 118 | form: 119 | cancel: "I-kansel" 120 | basic_info: "Pangunahing impormasyon" 121 | required: "Kailangan" 122 | optional: "Opsyonal" 123 | one_char: "karakter" 124 | char_length_up_to: "Haba hanggang" 125 | char_length_of: "haba ng" 126 | save: "I-save" 127 | save_and_add_another: "I-save at magdagdag pa" 128 | save_and_edit: "I-save at i-edit" 129 | all_of_the_following_related_items_will_be_deleted: "? Ang mga sumusunod na releyted aytems ay maaaring mabura o ma-orfand:" 130 | are_you_sure_you_want_to_delete_the_object: "Sigurado kabang nais mo itong burahin %{model_name}" 131 | confirmation: "Oo, sigurado ako" 132 | bulk_delete: "Ang mga sumusunod na objects ay mabubura, maaaring mabura o ma-orfan ang ibang mga releyted dependensis:" 133 | new_model: "%{name} (bago)" 134 | export: 135 | confirmation: "I-eksport sa %{name}" 136 | select: "Pumili ng fields na i-eeksport" 137 | select_all_fields: "Piliin Lahat ng Fields" 138 | fields_from: "Fields mula %{name}" 139 | fields_from_associated: "Fields mula sa asosiyated %{name}" 140 | display: "I-display %{name}: %{type}" 141 | options_for: "Mga opsyons para %{name}" 142 | empty_value_for_associated_objects: "" 143 | click_to_reverse_selection: 'I-click para ma-rebers ang seleksyon' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' is available 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "I-encode sa" 148 | encoding_to_help: "Piliin ang awtput enkoding. Panatilihing blanko para hindi mabago ang kasalukuyang input enkoding: (%{name})" 149 | skip_header: "Walang heder" 150 | skip_header_help: "Huwag mag awtput ng heder (walang fields deskrisyon)" 151 | default_col_sep: "," 152 | col_sep: "Tiga-hiwalay ng kolum" 153 | col_sep_help: "Panatilihing blanko para sa defolt ('%{value}')" # value is default_col_sep 154 | -------------------------------------------------------------------------------- /locales/ca.yml: -------------------------------------------------------------------------------- 1 | ca: 2 | admin: 3 | js: 4 | true: Cert 5 | false: Fals 6 | is_present: És present 7 | is_blank: Està buit 8 | date: Data ... 9 | between_and_: Entre ... i ... 10 | today: Avui 11 | yesterday: Ahir 12 | this_week: Aquesta setmana 13 | last_week: La setmana passada 14 | number: Número ... 15 | contains: Conté 16 | is_exactly: És exactament 17 | starts_with: Comença per 18 | ends_with: Acaba amb 19 | too_many_objects: "Hi ha massa objectes, utilitza la cerca de sobre" 20 | no_objects: "No s'ha trobat cap objecte" 21 | loading: "Carregant..." 22 | toggle_navigation: "Mostrar/amagar navegació" 23 | home: 24 | name: "Inici" 25 | pagination: 26 | previous: "« Anterior" 27 | next: "Següent »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 31 | search: "Cerca" 32 | filter: "Filtra" 33 | refresh: "Recarrega" 34 | show_all: "Mostra tot" 35 | add_filter: "Afegeix filtre" 36 | reset_filters: "Reinicia filtres" 37 | bulk_menu_title: "Ítems seleccionats" 38 | remove: "Elimina" 39 | add_new: "Afegeix nou" 40 | chosen: "Has seleccionat %{name}" 41 | chose_all: "Selecciona tots" 42 | clear_all: "Esborra selecció" 43 | up: "Amunt" 44 | down: "Avall" 45 | navigation: "Navegació" 46 | navigation_static_label: "Enllaços" 47 | log_out: "Sortir" 48 | ago: "enrere" 49 | more: "I %{count} %{models_name} més" 50 | flash: 51 | successful: "%{name} %{action} correctament" 52 | error: "No s'ha pogut %{action} l'objecte %{name}" 53 | noaction: "No s'ha ejecutat cap acció" 54 | model_not_found: "El model '%{model}' no s'ha trobat" 55 | object_not_found: "%{model} amb id '%{id}' inexistent" 56 | table_headers: 57 | model_name: "Nom del model" 58 | last_created: "Últim creat" 59 | last_used: "Últim utilitzat" 60 | records: "Registres" 61 | username: "Usuari" 62 | changes: "Canvis" 63 | created_at: "Creat el" 64 | item: "Ítem" 65 | message: "Missatge" 66 | actions: 67 | dashboard: 68 | title: "Administració del lloc" 69 | menu: "Tauler de control" 70 | breadcrumb: "Tauler de control" 71 | index: 72 | title: "Llistat de %{model_label_plural}" 73 | menu: "Llistat" 74 | breadcrumb: "%{model_label_plural}" 75 | show: 76 | title: "Dades de %{model_label} '%{object_label}'" 77 | menu: "Veure" 78 | breadcrumb: "%{object_label}" 79 | show_in_app: 80 | menu: "Mostrar a la applicació" 81 | title: "Mostrar %{model_label} a la applicació" 82 | new: 83 | title: "Nou %{model_label}" 84 | menu: "Afegir nou" 85 | breadcrumb: "Nou" 86 | link: "Afegir nou %{model_label}" 87 | done: "creat" 88 | edit: 89 | title: "Editar %{model_label} '%{object_label}'" 90 | menu: "Editar" 91 | breadcrumb: "Editar" 92 | link: "Editar aquest %{model_label}" 93 | done: "editat" 94 | delete: 95 | title: "Eliminar %{model_label} '%{object_label}'" 96 | menu: "Eliminar" 97 | breadcrumb: "Eliminar" 98 | link: "Eliminar '%{object_label}'" 99 | done: "eliminat" 100 | bulk_delete: 101 | title: "Eliminar %{model_label_plural}" 102 | menu: "Eliminar massivament" 103 | breadcrumb: "Eliminar massivament" 104 | bulk_link: "Eliminats %{model_label_plural} seleccionats" 105 | export: 106 | title: "Exportar %{model_label_plural}" 107 | menu: "Exportar" 108 | breadcrumb: "Exportar" 109 | link: "Exportar %{model_label_plural} trobats" 110 | bulk_link: "Exportar %{model_label_plural} seleccionats" 111 | done: "exportat" 112 | history_index: 113 | title: "Historial de %{model_label_plural}" 114 | menu: "Historial" 115 | breadcrumb: "Historial" 116 | history_show: 117 | title: "Historial de %{model_label} '%{object_label}'" 118 | menu: "Historial" 119 | breadcrumb: "Historial" 120 | form: 121 | cancel: "Cancel·lar" 122 | basic_info: "Informació bàsica" 123 | required: "Obligatori" 124 | optional: "Opcional" 125 | one_char: "caràcter" 126 | char_length_up_to: "mida fins a" 127 | char_length_of: "mida de" 128 | save: "Guardar" 129 | save_and_add_another: "Guardar i afegir un altre" 130 | save_and_edit: "Guardar i editar" 131 | all_of_the_following_related_items_will_be_deleted: "? Els següents ítems relacionats poden ser esborrats o quedar orfes:" 132 | are_you_sure_you_want_to_delete_the_object: "Vols eliminar l'entitat %{model_name}" 133 | confirmation: "Sí, estic segur/a" 134 | bulk_delete: "Els següents objectes seran eliminats, que podria eliminar o deixar orfes algunes de les seves dependències relacionades:" 135 | new_model: "%{name} (nou)" 136 | export: 137 | confirmation: "Exportar a %{name}" 138 | select: "Selecciona els camps per exportar" 139 | select_all_fields: "Selecciona tots els camps" 140 | fields_from: "Camps de %{name}" 141 | fields_from_associated: "Camps de %{name} associat" 142 | display: "Mostrar %{name}: %{type}" 143 | options_for: "Opcions de %{name}" 144 | empty_value_for_associated_objects: "" 145 | click_to_reverse_selection: 'Clica per invertir la selecció' 146 | csv: 147 | header_for_root_methods: "%{name}" # 'model' is available 148 | header_for_association_methods: "%{name} [%{association}]" 149 | encoding_to: "Codifica a" 150 | encoding_to_help: "Selecciona la codificació de sortida. Deixa buit per a no modificar la codificació d'entrada: (%{name})" 151 | skip_header: "Sense capçaleres" 152 | skip_header_help: "No mostrar capçaleres (descripció dels camps)" 153 | default_col_sep: "," 154 | col_sep: "Separador de columnes" 155 | col_sep_help: "Deixar buit per utlitzar el valor per defecte ('%{value}')" # value is default_col_sep 156 | -------------------------------------------------------------------------------- /locales/el.yml: -------------------------------------------------------------------------------- 1 | el: 2 | admin: 3 | js: 4 | true: True 5 | false: False 6 | is_present: Υπάρχει 7 | is_blank: Δεν υπάρχει 8 | date: Ημερομηνία ... 9 | between_and_: Μεταξύ ... και ... 10 | today: Σήμερα 11 | yesterday: Εχθές 12 | this_week: Αυτή την εβδομάδα 13 | last_week: Προηγούμενη εβδομάδα 14 | number: Νούμερο ... 15 | contains: Περιέχει 16 | is_exactly: Είναι ακριβώς 17 | starts_with: Ξεκινάει με 18 | ends_with: Τελειώνει με 19 | too_many_objects: "Πάρα πολλά αντικείμενα, χρησιμοποιήστε το πεδίο αναζήτησης παραπάνω" 20 | no_objects: "Δεν βρέθηκαν αντικείμενα" 21 | loading: "Φόρτωση..." 22 | toggle_navigation: Εναλλαγή πλοήγησης 23 | home: 24 | name: "Αρχική" 25 | pagination: 26 | previous: "« Προηγούμενη" 27 | next: "Επόμενη »" 28 | truncate: "…" 29 | misc: 30 | filter_date_format: "ΜΜ/μμ/εε" # συνδυασμός 'μμ'(μέρα), 'ΜΜ'(μήνας) and 'εε'(έτος) με οποιονδήποτε οριοθέτη. Δεν θα γίνει άλλη παρεμβολή (interpolation)! 31 | search: "Αναζήτηση" 32 | filter: "Φίλτρο" 33 | refresh: "Ανανέωση" 34 | show_all: "Προβολή όλων" 35 | add_filter: "Προσθήκη φίλτρου" 36 | bulk_menu_title: "Επιλεγμένα στοιχεία" 37 | remove: "Αφαίρεση" 38 | add_new: "Προσθήκη νέου" 39 | chosen: "Επιλεγμένο %{name}" 40 | chose_all: "Επιλογή όλων" 41 | clear_all: "Καθαρισμός όλων" 42 | up: "Πάνω" 43 | down: "Κάτω" 44 | navigation: "Πλοήγηση" 45 | navigation_static_label: "Συνδέσεις" 46 | log_out: "Αποσύνδεση" 47 | ago: "πριν" 48 | more: "Συν %{count} περισσότερα %{models_name}" 49 | flash: 50 | successful: "%{name} επιτυχώς %{action}" 51 | error: "%{name} απέτυχε να %{action}" 52 | noaction: "Δεν πραγματοποιήθηκε καμία ενέργεια" 53 | model_not_found: "Model '%{model}' δεν βρέθηκε" 54 | object_not_found: "%{model} με id '%{id}' δεν βρέθηκε" 55 | table_headers: 56 | model_name: "Όνομα μοντέλου" 57 | last_created: "Δημιουργήθηκε τελευταία" 58 | last_used: "Χρησιμοποιήθηκε τελευταία" 59 | records: "Αρχεία" 60 | username: "Χρήστης" 61 | changes: "Αλλαγές" 62 | created_at: "Ημερομηνία/Ώρα" 63 | item: "Στοιχείο" 64 | message: "Μήνυμα" 65 | actions: 66 | dashboard: 67 | title: "Διαχείριση Site" 68 | menu: "Πίνακας ελέγχου" 69 | breadcrumb: "Πίνακας ελέγχου" 70 | index: 71 | title: "Λίστα %{model_label_plural}" 72 | menu: "Λίστα" 73 | breadcrumb: "%{model_label_plural}" 74 | show: 75 | title: "Λεπτομέρειες για %{model_label} '%{object_label}'" 76 | menu: "Προβολή" 77 | breadcrumb: "%{object_label}" 78 | show_in_app: 79 | menu: "Προβολή στην εφαρμογή" 80 | new: 81 | title: "Νέο %{model_label}" 82 | menu: "Προσθήκη νέου" 83 | breadcrumb: "Νέο" 84 | link: "Προσθήκη νέου %{model_label}" 85 | done: "δημιουργήθηκε" 86 | edit: 87 | title: "Επεξεργασία %{model_label} '%{object_label}'" 88 | menu: "Επεξεργασία" 89 | breadcrumb: "Επεξεργασία" 90 | link: "Επεξεργασία %{model_label}" 91 | done: "επεξεργάστηκε" 92 | delete: 93 | title: "Διαγραφή %{model_label} '%{object_label}'" 94 | menu: "Διαγραφή" 95 | breadcrumb: "Διαγραφή" 96 | link: "Διαγραφή '%{object_label}'" 97 | done: "διαγράφηκε" 98 | bulk_delete: 99 | title: "Διαγραφή %{model_label_plural}" 100 | menu: "Πολλαπλή διαγραφή" 101 | breadcrumb: "Πολλαπλή διαγραφή" 102 | bulk_link: "Διαγραφή επιλεγμένων %{model_label_plural}" 103 | export: 104 | title: "Εξαγωγή %{model_label_plural}" 105 | menu: "Εξαγωγή" 106 | breadcrumb: "Εξαγωγή" 107 | link: "Εξαγωγή βρέθηκε %{model_label_plural}" 108 | bulk_link: "Εξαγωγή επιλεγμένων %{model_label_plural}" 109 | done: "εξάχθηκε" 110 | history_index: 111 | title: "Ιστορικό για %{model_label_plural}" 112 | menu: "Ιστορικό" 113 | breadcrumb: "Ιστορικό" 114 | history_show: 115 | title: "Ιστορικό για %{model_label} '%{object_label}'" 116 | menu: "Ιστορικό" 117 | breadcrumb: "Ιστορικό" 118 | form: 119 | cancel: "Ακύρωση" 120 | basic_info: "Βασικές πληροφορίες" 121 | required: "Απαιτείται" 122 | optional: "Προαιρετικό" 123 | one_char: "χαρακτήρας" 124 | char_length_up_to: "μέγεθος μέχρι" 125 | char_length_of: "μέγεθος του" 126 | save: "Αποθήκευση" 127 | save_and_add_another: "Αποθήκευση και προσθήκη νέου" 128 | save_and_edit: "Αποθήκευση και επεξεργασία" 129 | all_of_the_following_related_items_will_be_deleted: "? Τα παρακάτω συσχετισμένα στοιχεία ενδέχεται να διαγραφούν ή να μείνουν 'ορφανά':" 130 | are_you_sure_you_want_to_delete_the_object: "Είστε σιγουρος/η οτι θέλετε να διαγράψετε το %{model_name}" 131 | confirmation: "Ναί, είμαι σίγουρος/η" 132 | bulk_delete: "Τα παρακάτω στοιχεία θα διαγραφούν, τα οποία ενδέχεται να διαγράψουν ή να αφήσουν 'ορφανά' κάποια από τα συσχετισμένα τους αρχεία:" 133 | new_model: "%{name} (new)" 134 | export: 135 | confirmation: "Εξαγωγή σε %{name}" 136 | select: "Επιλογή πεδίων για εξαγωγή" 137 | select_all_fields: "Επιλογή όλων των πεδίων" 138 | fields_from: "Πεδία από %{name}" 139 | fields_from_associated: "Πεδία από συσχετισμένα %{name}" 140 | display: "Απεικόνιση %{name}: %{type}" 141 | options_for: "Επιλογές για %{name}" 142 | empty_value_for_associated_objects: "<κενό>" 143 | click_to_reverse_selection: 'Κλίκ για αντιστροφή επιλογής' 144 | csv: 145 | header_for_root_methods: "%{name}" # 'model' είναι διαθέσιμο 146 | header_for_association_methods: "%{name} [%{association}]" 147 | encoding_to: "Κωδικοποιήστε σε" 148 | encoding_to_help: "Επιλέξτε κωδικοποίηση εξόδου. Αφήστε κενό για να αφήσετε την τρέχουσα κωδικοποίηση εισόδου ανέπαφη: (%{name})" 149 | skip_header: "Χωρίς κεφαλίδα" 150 | skip_header_help: "Μην εξάγετε κεφαλίδα (χωρίς λεπτομέρειες πεδίων)" 151 | default_col_sep: "," 152 | col_sep: "Διαχωριστικό στήλης" 153 | col_sep_help: "Αφήστε κενό για προκαθορισμένη ('%{value}')" # η τιμή είναι default_col_sep 154 | -------------------------------------------------------------------------------- /locales/bn.yml: -------------------------------------------------------------------------------- 1 | bn: 2 | admin: 3 | js: 4 | true: "True" 5 | false: "False" 6 | is_present: উপস্থিত আছে 7 | is_blank: ফাঁকা আছে 8 | date: তারিখ ... 9 | between_and_: ... এবং ... এর মধ্যে 10 | today: আজ 11 | yesterday: গতকাল 12 | this_week: এই সপ্তাহ 13 | last_week: গত সপ্তাহ 14 | time: সময় ... 15 | number: নাম্বার ... 16 | contains: ধারণ করে 17 | does_not_contain: ধারণ করে না 18 | is_exactly: ঠিক আছে 19 | starts_with: দিয়ে শুরু হয় 20 | ends_with: দিয়ে শেষ হয় 21 | too_many_objects: "অনেকগুলি অব্জেক্ট, উপরে সার্চ বাক্স ব্যবহার করুন" 22 | no_objects: "কোন অব্জেক্ট পাওয়া যায়নি" 23 | clear: ক্লিয়ার 24 | loading: "লোডিং..." 25 | toggle_navigation: নেভিগেশন টগল করুন 26 | home: 27 | name: "হোম" 28 | pagination: 29 | previous: "« পূর্বে" 30 | next: "পরে »" 31 | truncate: "…" 32 | misc: 33 | filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 34 | search: "সার্চ" 35 | filter: "ফিল্টার" 36 | refresh: "রিফ্রেশ" 37 | show_all: "সব দেখান" 38 | add_filter: "ফিল্টার যোগ করুন" 39 | reset_filters: "ফিল্টার রিসেট করুন" 40 | bulk_menu_title: "সিলেক্টেড আইটেম" 41 | remove: "রিমুভ" 42 | add_new: "নতুন যোগ করুন" 43 | chosen: "%{name} বেছে নেওয়া হয়েছে" 44 | chose_all: "সব বেছে নেওয়া হয়েছে" 45 | clear_all: "সব ক্লিয়ার করুন" 46 | up: "উপরে" 47 | down: "নিচে" 48 | navigation: "নেভিগেশন" 49 | root_navigation: "অ্যাকশন" 50 | navigation_static_label: "লিংক" 51 | log_out: "লগ আউট" 52 | time_ago: "%{time} পূর্বে" 53 | ago: "পূর্বে" 54 | more: "প্লাস %{count} আরো %{models_name}" 55 | flash: 56 | successful: "%{name} সফলভাবে %{action} করেছে" 57 | error: "%{name} ব্যর্থ হয়েছে %{action} করতে" 58 | noaction: "কোনো অ্যাকশন নেওয়া হয়নি" 59 | model_not_found: "মডেল '%{model}' পাওয়া যায়নি" 60 | object_not_found: "'%{id}' আইডি সহ %{model} খুঁজে পাওয়া যায়নি" 61 | table_headers: 62 | model_name: "মডেলের নাম" 63 | last_created: "সর্বশেষ তৈরি হয়েছে" 64 | last_used: "সর্বশেষ ব্যবহার করা হয়েছে" 65 | records: "রেকর্ড" 66 | username: "ইউজার" 67 | changes: "পরিবর্তন" 68 | created_at: "তারিখ/সময়" 69 | item: "আইটেম" 70 | message: "মেসেজ" 71 | actions: 72 | dashboard: 73 | title: "সাইট অ্যাডমিনিস্ট্রেশন" 74 | menu: "ড্যাশবোর্ড" 75 | breadcrumb: "ড্যাশবোর্ড" 76 | index: 77 | title: "%{model_label_plural}-এর তালিকা" 78 | menu: "তালিকা" 79 | breadcrumb: "%{model_label_plural}" 80 | no_records: "কোন রেকর্ড পাওয়া যায়নি" 81 | show: 82 | title: "%{model_label} '%{object_label}' এর ডিটেইল" 83 | menu: "দেখান" 84 | breadcrumb: "%{object_label}" 85 | show_in_app: 86 | menu: "অ্যাপে দেখান" 87 | title: "অ্যাপে %{model_label} দেখান" 88 | new: 89 | title: "নতুন %{model_label}" 90 | menu: "নতুন যোগ করুন" 91 | breadcrumb: "নতুন" 92 | link: "একটি নতুন %{model_label} যোগ করুন" 93 | done: "তৈরি হয়েছে" 94 | edit: 95 | title: "এডিট %{model_label} '%{object_label}'" 96 | menu: "এডিট" 97 | breadcrumb: "এডিট" 98 | link: "%{model_label} এডিট করুন" 99 | done: "আপডেট করা হয়েছে" 100 | delete: 101 | title: "ডিলিট %{model_label} '%{object_label}'" 102 | menu: "ডিলিট" 103 | breadcrumb: "ডিলিট" 104 | link: "ডিলিট '%{object_label}'" 105 | done: "ডিলিট করা হয়েছে" 106 | bulk_delete: 107 | title: "ডিলিট %{model_label_plural}" 108 | menu: "একাধিক ডিলিট" 109 | breadcrumb: "একাধিক ডিলিট" 110 | bulk_link: "%{model_label_plural} সিলেক্টগুলো ডিলিট করুন" 111 | export: 112 | title: "এক্সপোর্ট %{model_label_plural}" 113 | menu: "এক্সপোর্ট" 114 | breadcrumb: "এক্সপোর্ট" 115 | link: "%{model_label_plural} এক্সপোর্ট পাওয়া গেছে" 116 | bulk_link: "%{model_label_plural} সিলেক্টগুলো এক্সপোর্ট করুন" 117 | done: "এক্সপোর্ট করা হয়েছে" 118 | history_index: 119 | title: "%{model_label_plural} এর ইতিহাস" 120 | menu: "ইতিহাস" 121 | breadcrumb: "ইতিহাস" 122 | history_show: 123 | title: "%{model_label} '%{object_label}' এর ইতিহাস" 124 | menu: "ইতিহাস" 125 | breadcrumb: "ইতিহাস" 126 | form: 127 | cancel: "বাতিল করুন" 128 | basic_info: "মৌলিক তথ্য" 129 | required: "অত্যাবশ্যকীয়" 130 | optional: "অপশনাল" 131 | one_char: "অক্ষর" 132 | char_length_up_to: "পর্যন্ত দৈর্ঘ্য" 133 | char_length_of: "এর দৈর্ঘ্য" 134 | save: "সংরক্ষণ করুন" 135 | save_and_add_another: "সংরক্ষণ এবং আরেকটি যোগ করুন" 136 | save_and_edit: "সংরক্ষণ এডিট করুন" 137 | delete_file: "'%{field_label}' #%{number} ডিলিট করুন" 138 | all_of_the_following_related_items_will_be_deleted: "? নিম্নলিখিত সম্পর্কিত আইটেম ডিলিট বা অনাথ হতে পারে:" 139 | are_you_sure_you_want_to_delete_the_object: "আপনি কি এই %{model_name} ডিলিট করতে নিশ্চিত?" 140 | confirmation: "হ্যাঁ, আমি নিশ্চিত" 141 | bulk_delete: "নিম্নলিখিত বস্তুগুলি ডিলিট করা হবে, যা তাদের কিছু সম্পর্কিত ডিপেন্ডেন্সিস ডিলিট করতে বা অনাথ করতে পারে:" 142 | new_model: "%{name} (new)" 143 | export: 144 | confirmation: "%{name}-এ এক্সপোর্ট করুন" 145 | select: "এক্সপোর্ট করার জন্য ফিল্ড সিলেক্ট করুন" 146 | select_all_fields: "সব ফিল্ড সিলেক্ট করুন" 147 | fields_from: "%{name} থেকে ফিল্ড" 148 | fields_from_associated: "সংশ্লিষ্ট %{name} থেকে ফিল্ড" 149 | display: "ডিসপ্লে %{name}: %{type}" 150 | options_for: "%{name} এর জন্য অপশন" 151 | empty_value_for_associated_objects: "<ফাঁকা>" 152 | click_to_reverse_selection: 'সিলেকশন রিভার্স করতে ক্লিক করুন' 153 | csv: 154 | header_for_root_methods: "%{name}" # 'model' is available 155 | header_for_association_methods: "%{name} [%{association}]" 156 | encoding_to: "এনকোড করুন" 157 | encoding_to_help: "আউটপুট এনকোডিং নির্বাচন করুন। বর্তমান ইনপুট এনকোডিংকে স্পর্শ না করার জন্য খালি ছেড়ে দিন: (%{name})" 158 | skip_header: "হেডার নেই" 159 | skip_header_help: "হেডার আউটপুট করবেন না (কোন ফিল্ড ডেসক্রিপশন নেই)" 160 | default_col_sep: "," 161 | col_sep: "কলাম বিভাজক" 162 | col_sep_help: "ডিফল্টের জন্য ফাঁকা রাখুন ('%{value}')" # value is default_col_sep 163 | -------------------------------------------------------------------------------- /locales/nl.yml: -------------------------------------------------------------------------------- 1 | nl: 2 | admin: 3 | js: 4 | true: "Ja" 5 | false: "Nee" 6 | is_present: Is aanwezig 7 | is_blank: Is leeg 8 | date: Datum ... 9 | between_and_: Tussen ... en ... 10 | today: Vandaag 11 | yesterday: Gisteren 12 | this_week: Deze week 13 | last_week: Vorige week 14 | time: Tijd ... 15 | number: Getal ... 16 | contains: Bevat 17 | does_not_contain: Bevat niet 18 | is_exactly: Is precies 19 | starts_with: Begint met 20 | ends_with: Eindigt met 21 | too_many_objects: "Te veel objecten, gebruik de zoekfunctie hierboven" 22 | no_objects: "Geen objecten gevonden" 23 | clear: Leegmaken 24 | loading: "Laden..." 25 | toggle_navigation: Navigatie wisselen 26 | home: 27 | name: "Home" 28 | pagination: 29 | previous: "« Vorige" 30 | next: "Volgende »" 31 | truncate: "…" 32 | misc: 33 | filter_date_format: "dd-mm-yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done! 34 | search: "Zoeken" 35 | filter: "Filteren" 36 | refresh: "Vernieuwen" 37 | show_all: "Toon alles" 38 | add_filter: "Voeg filter toe" 39 | reset_filters: "Filters weghalen" 40 | bulk_menu_title: "Geselecteerde items" 41 | remove: "Verwijder" 42 | add_new: "Nieuwe toevoegen" 43 | chosen: "Gekozen %{name}" 44 | chose_all: "Kies alles" 45 | clear_all: "Verwijder alles" 46 | up: "Omhoog" 47 | down: "Omlaag" 48 | navigation: "Navigatie" 49 | root_navigation: "Acties" 50 | navigation_static_label: "Links" 51 | log_out: "Log uit" 52 | time_ago: "%{time} geleden" 53 | ago: "geleden" 54 | more: "Plus %{count} meer %{models_name}" 55 | flash: 56 | successful: "%{name} successvol %{action}" 57 | error: "%{name} mislukt om %{action} te doen" 58 | noaction: "Er zijn geen acties uitgevoerd" 59 | model_not_found: "Model '%{model}' kon niet gevonden worden" 60 | object_not_found: "%{model} met id '%{id}' kon niet gevonden worden" 61 | table_headers: 62 | model_name: "Modelnaam" 63 | last_created: "Laatst toegevoegd" 64 | last_used: "Laatst gebruikt" 65 | records: "Records" 66 | username: "Gebruikersnaam" 67 | changes: "Veranderingen" 68 | created_at: "Datum/Tijd" 69 | item: "Item" 70 | message: "Bericht" 71 | actions: 72 | dashboard: 73 | title: "Site beheer" 74 | menu: "Dashboard" 75 | breadcrumb: "Dashboard" 76 | index: 77 | title: "Lijst van %{model_label_plural}" 78 | menu: "Lijst" 79 | breadcrumb: "%{model_label_plural}" 80 | no_records: "Geen records gevonden" 81 | show: 82 | title: "Details voor %{model_label} '%{object_label}'" 83 | menu: "Toon" 84 | breadcrumb: "%{object_label}" 85 | show_in_app: 86 | menu: "Toon in applicatie" 87 | title: "Toon %{model_name} in applicatie" 88 | new: 89 | title: "Nieuw %{model_label}" 90 | menu: "Nieuwe toevoegen" 91 | breadcrumb: "Nieuw" 92 | link: "Voeg een nieuwe %{model_label} toe" 93 | done: "toegevoegd" 94 | edit: 95 | title: "Wijzig %{model_label} '%{object_label}'" 96 | menu: "Wijzig" 97 | breadcrumb: "Wijzig" 98 | link: "Wijzig dit %{model_label}" 99 | done: "gewijzigd" 100 | delete: 101 | title: "Verwijder %{model_label} '%{object_label}'" 102 | menu: "Verwijder" 103 | breadcrumb: "Verijwder" 104 | link: "Verwijder '%{object_label}'" 105 | done: "verwijderd" 106 | bulk_delete: 107 | title: "Verwijder %{model_label_plural}" 108 | menu: "Bulk verwijderen" 109 | breadcrumb: "Bulk verwijderen" 110 | bulk_link: "Verwijder geselecteerde %{model_label_plural}" 111 | export: 112 | title: "Exporteer %{model_label_plural}" 113 | menu: "Exporteer" 114 | breadcrumb: "Exporteer" 115 | link: "Export gevonden %{model_label_plural}" 116 | bulk_link: "Export geselecteerd %{model_label_plural}" 117 | done: "geëxporteerd" 118 | history_index: 119 | title: "Geschiedenis voor %{model_label_plural}" 120 | menu: "Geschiedenis" 121 | breadcrumb: "Geschiedenis" 122 | history_show: 123 | title: "Geschiedenis voor %{model_label} '%{object_label}'" 124 | menu: "Geschiedenis" 125 | breadcrumb: "Geschiedenis" 126 | form: 127 | cancel: "Annuleren" 128 | basic_info: "Basisgegevens" 129 | required: "Verplicht" 130 | optional: "Optioneel" 131 | one_char: "karakter" 132 | char_length_up_to: "lengte tot aan" 133 | char_length_of: "lengte van" 134 | save: "Opslaan" 135 | save_and_add_another: "Opslaan en nog één toevoegen" 136 | save_and_edit: "Opslaan en bewerken" 137 | delete_file: "Verwijder '%{field_label}' #%{number}" 138 | all_of_the_following_related_items_will_be_deleted: "? De volgende geasocieerde items kunnen verweesd of verwijderd worden:" 139 | are_you_sure_you_want_to_delete_the_object: "Weet je zeker dat je %{model_name} wilt verwijderen" 140 | confirmation: "Ja, ik weet het zeker" 141 | bulk_delete: "De volgende objecten worden verwijderd, hierdoor kunnen sommige gerelateerde object worden verwijderd of verweesd:" 142 | new_model: "%{name} (nieuw)" 143 | export: 144 | confirmation: "Exporteer naar %{name}" 145 | select: "Selecteer velden om te exporteren" 146 | select_all_fields: "Selecteer alle velden" 147 | fields_from: "Velden van %{name}" 148 | fields_from_associated: "Velden van geassocieerde %{name}" 149 | display: "Toon %{name}: %{type}" 150 | options_for: "Opties voor %{name}" 151 | empty_value_for_associated_objects: "" 152 | click_to_reverse_selection: 'Klik om de actie ongedaan te maken' 153 | csv: 154 | header_for_root_methods: "%{name}" # 'model' is available 155 | header_for_association_methods: "%{name} [%{association}]" 156 | encoding_to: "Encoderen naar" 157 | encoding_to_help: "Kies een uitvoer encodering. Laat leeg om de huidige encodering te gebruiken: (%{name})" 158 | skip_header: "Geen headers" 159 | skip_header_help: "Voer geen headers uit (geen veld beschrijvingen)" 160 | default_col_sep: "," 161 | col_sep: "Kolom afscheidingsteken" 162 | col_sep_help: "Laat leeg voor standaard waarde ('%{value}')" # value is default_col_sep 163 | --------------------------------------------------------------------------------