radiant-dutch_language_pack-extension 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +3 -0
- data/Rakefile +123 -0
- data/config/locales/nl.yml +238 -0
- data/config/locales/nl_available_tags.yml +553 -0
- data/dutch_language_pack_extension.rb +9 -0
- data/lib/radiant-dutch_language_pack-extension.rb +8 -0
- data/lib/tasks/i18n_nl_extension_tasks.rake +28 -0
- data/radiant-dutch_language_pack-extension.gemspec +24 -0
- metadata +75 -0
data/README
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
# I think this is the one that should be moved to the extension Rakefile template
|
2
|
+
|
3
|
+
# In rails 1.2, plugins aren't available in the path until they're loaded.
|
4
|
+
# Check to see if the rspec plugin is installed first and require
|
5
|
+
# it if it is. If not, use the gem version.
|
6
|
+
|
7
|
+
# Determine where the RSpec plugin is by loading the boot
|
8
|
+
unless defined? RADIANT_ROOT
|
9
|
+
ENV["RAILS_ENV"] = "test"
|
10
|
+
case
|
11
|
+
when ENV["RADIANT_ENV_FILE"]
|
12
|
+
require File.dirname(ENV["RADIANT_ENV_FILE"]) + "/boot"
|
13
|
+
when File.dirname(__FILE__) =~ %r{vendor/radiant/vendor/extensions}
|
14
|
+
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../")}/config/boot"
|
15
|
+
else
|
16
|
+
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../")}/config/boot"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
require 'rake'
|
21
|
+
require 'rake/rdoctask'
|
22
|
+
require 'rake/testtask'
|
23
|
+
|
24
|
+
rspec_base = File.expand_path(RADIANT_ROOT + '/vendor/plugins/rspec/lib')
|
25
|
+
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base)
|
26
|
+
require 'spec/rake/spectask'
|
27
|
+
require 'cucumber'
|
28
|
+
require 'cucumber/rake/task'
|
29
|
+
|
30
|
+
# Cleanup the RADIANT_ROOT constant so specs will load the environment
|
31
|
+
Object.send(:remove_const, :RADIANT_ROOT)
|
32
|
+
|
33
|
+
extension_root = File.expand_path(File.dirname(__FILE__))
|
34
|
+
|
35
|
+
task :default => :spec
|
36
|
+
task :stats => "spec:statsetup"
|
37
|
+
|
38
|
+
desc "Run all specs in spec directory"
|
39
|
+
Spec::Rake::SpecTask.new(:spec) do |t|
|
40
|
+
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
|
41
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
42
|
+
end
|
43
|
+
|
44
|
+
task :features => 'spec:integration'
|
45
|
+
|
46
|
+
namespace :spec do
|
47
|
+
desc "Run all specs in spec directory with RCov"
|
48
|
+
Spec::Rake::SpecTask.new(:rcov) do |t|
|
49
|
+
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
|
50
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
51
|
+
t.rcov = true
|
52
|
+
t.rcov_opts = ['--exclude', 'spec', '--rails']
|
53
|
+
end
|
54
|
+
|
55
|
+
desc "Print Specdoc for all specs"
|
56
|
+
Spec::Rake::SpecTask.new(:doc) do |t|
|
57
|
+
t.spec_opts = ["--format", "specdoc", "--dry-run"]
|
58
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
59
|
+
end
|
60
|
+
|
61
|
+
[:models, :controllers, :views, :helpers].each do |sub|
|
62
|
+
desc "Run the specs under spec/#{sub}"
|
63
|
+
Spec::Rake::SpecTask.new(sub) do |t|
|
64
|
+
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
|
65
|
+
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
desc "Run the Cucumber features"
|
70
|
+
Cucumber::Rake::Task.new(:integration) do |t|
|
71
|
+
t.fork = true
|
72
|
+
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'pretty')]
|
73
|
+
# t.feature_pattern = "#{extension_root}/features/**/*.feature"
|
74
|
+
t.profile = "default"
|
75
|
+
end
|
76
|
+
|
77
|
+
# Setup specs for stats
|
78
|
+
task :statsetup do
|
79
|
+
require 'code_statistics'
|
80
|
+
::STATS_DIRECTORIES << %w(Model\ specs spec/models)
|
81
|
+
::STATS_DIRECTORIES << %w(View\ specs spec/views)
|
82
|
+
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers)
|
83
|
+
::STATS_DIRECTORIES << %w(Helper\ specs spec/views)
|
84
|
+
::CodeStatistics::TEST_TYPES << "Model specs"
|
85
|
+
::CodeStatistics::TEST_TYPES << "View specs"
|
86
|
+
::CodeStatistics::TEST_TYPES << "Controller specs"
|
87
|
+
::CodeStatistics::TEST_TYPES << "Helper specs"
|
88
|
+
::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/}
|
89
|
+
end
|
90
|
+
|
91
|
+
namespace :db do
|
92
|
+
namespace :fixtures do
|
93
|
+
desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y"
|
94
|
+
task :load => :environment do
|
95
|
+
require 'active_record/fixtures'
|
96
|
+
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
|
97
|
+
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(RAILS_ROOT, 'spec', 'fixtures', '*.{yml,csv}'))).each do |fixture_file|
|
98
|
+
Fixtures.create_fixtures('spec/fixtures', File.basename(fixture_file, '.*'))
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
desc 'Generate documentation for the nl extension.'
|
106
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
107
|
+
rdoc.rdoc_dir = 'rdoc'
|
108
|
+
rdoc.title = 'I18nNlExtension'
|
109
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
110
|
+
rdoc.rdoc_files.include('README')
|
111
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
112
|
+
end
|
113
|
+
|
114
|
+
# For extensions that are in transition
|
115
|
+
desc 'Test the nl extension.'
|
116
|
+
Rake::TestTask.new(:test) do |t|
|
117
|
+
t.libs << 'lib'
|
118
|
+
t.pattern = 'test/**/*_test.rb'
|
119
|
+
t.verbose = true
|
120
|
+
end
|
121
|
+
|
122
|
+
# Load any custom rakefiles for extension
|
123
|
+
Dir[File.dirname(__FILE__) + '/tasks/*.rake'].sort.each { |f| require f }
|
@@ -0,0 +1,238 @@
|
|
1
|
+
---
|
2
|
+
nl:
|
3
|
+
'no': 'Neen'
|
4
|
+
'yes': 'Ja'
|
5
|
+
account: 'Account'
|
6
|
+
activerecord:
|
7
|
+
errors:
|
8
|
+
messages:
|
9
|
+
blank: 'dit mag niet leeg zijn' # required
|
10
|
+
invalid: 'dit komt niet overeen met de verwachtte indeling' #invalid_format
|
11
|
+
not_a_number: 'dit moet een getal zijn' # must be number
|
12
|
+
not_a_page: "there must be a page at this address"
|
13
|
+
not_permitted: 'dit moet één van de toegelaten waarden zijn' # this must be one of the permitted values
|
14
|
+
taken: 'deze naam reeds in gebruik' # name_in_use
|
15
|
+
too_long: 'dit mag maximum %{count} tekens bevatten' # character_limit
|
16
|
+
too_short: 'dit moet minimum %{count} tekens bevatten' # character_minimum
|
17
|
+
models:
|
18
|
+
page:
|
19
|
+
attributes:
|
20
|
+
slug:
|
21
|
+
taken: 'de URL voor deze pagina (slug) reeds in gebruik' # slug_in_use
|
22
|
+
user:
|
23
|
+
attributes:
|
24
|
+
email:
|
25
|
+
invalid: 'dit is een ongeldig e-mailadres' # invalid_email
|
26
|
+
login:
|
27
|
+
taken: 'deze gebruikersnaam is reeds in gebruik' # login already in use
|
28
|
+
password:
|
29
|
+
confirmation: 'dit moet overeen komen' # password_confirmation
|
30
|
+
add_child: 'Pagina Toevoegen'
|
31
|
+
add_field: 'Eigenschap Toevoegen'
|
32
|
+
add_part: 'Part Toevoegen'
|
33
|
+
add_tab: 'Tab Toevoegen'
|
34
|
+
admin: 'Beheerder'
|
35
|
+
available_tags: 'Beschikbare Tags'
|
36
|
+
available_tags_for: 'Beschikbare Tags voor %{name}'
|
37
|
+
body: 'Body'
|
38
|
+
breadcrumb: 'Breadcrumb'
|
39
|
+
buttons:
|
40
|
+
create: '%{name} Aanmaken'
|
41
|
+
save_and_continue: 'Opslaan en verder bewerken'
|
42
|
+
save_changes: 'Opslaan'
|
43
|
+
cancel: 'Annuleren'
|
44
|
+
change: 'Wijzigen'
|
45
|
+
close: 'Sluiten'
|
46
|
+
config:
|
47
|
+
admin:
|
48
|
+
title: 'admin hoofding titel'
|
49
|
+
defaults:
|
50
|
+
locale: 'standaard taal'
|
51
|
+
page:
|
52
|
+
fields: "pagina velden"
|
53
|
+
filter: "pagina filter"
|
54
|
+
parts: "page parts"
|
55
|
+
status: "pagina status"
|
56
|
+
snippet:
|
57
|
+
filter: "snippet filter"
|
58
|
+
dev:
|
59
|
+
host: "dev site domeinnaam"
|
60
|
+
local:
|
61
|
+
timezone: "lokale tijdzone"
|
62
|
+
site:
|
63
|
+
host: "site domein"
|
64
|
+
title: "site titel"
|
65
|
+
user:
|
66
|
+
allow_password_reset?: "Paswoord-reset toestaan?"
|
67
|
+
content: 'Inhoud'
|
68
|
+
content_type: 'InhoudsType'
|
69
|
+
creating_status: '%{model}… aan het maken'
|
70
|
+
date:
|
71
|
+
abbr_day_names: [zo, ma, di, wo, do, vr, za]
|
72
|
+
abbr_month_names: [~, jan, feb, mar, apr, mei, jun, jul, aug, sep, okt, nov, dec]
|
73
|
+
day_names: [zondag, maandag, dinsdag, woensdag, donderdag, vrijdag, zaterdag]
|
74
|
+
formats:
|
75
|
+
default: "%d/%m/%Y"
|
76
|
+
long: "%e %B %Y"
|
77
|
+
only_day: "%e"
|
78
|
+
short: "%e %b"
|
79
|
+
month_names: [~, januari, februari, maart, april, mei, juni, juli, augustus, september, october, november, december]
|
80
|
+
order: [ :day, :month, :year ]
|
81
|
+
delete_layout: 'Layout verwijderen'
|
82
|
+
delete_pages: '%{pages} verwijderen'
|
83
|
+
delete_snippet: 'Snippet verwijderen'
|
84
|
+
delete_user: 'Gebruiker verwijderen'
|
85
|
+
description: 'Omschrijving'
|
86
|
+
design: 'Ontwerp'
|
87
|
+
designer: 'Ontwerper'
|
88
|
+
draft: 'Ontwerp'
|
89
|
+
edit: 'Aanpassen'
|
90
|
+
edit_configuration: 'Configuratie Wijzigen'
|
91
|
+
edit_layout: 'Layout Wijzigen'
|
92
|
+
edit_page: 'Pagina Wijzigen'
|
93
|
+
edit_preferences: 'Voorkeuren Wijzigen'
|
94
|
+
edit_settings: 'Instellingen Wijzigen'
|
95
|
+
edit_snippet: 'Snippet Wijzigen'
|
96
|
+
edit_user: 'Gebruiker Wijzigen'
|
97
|
+
email_address: 'E-mailadres'
|
98
|
+
extension: 'Module'
|
99
|
+
extensions: 'Modules'
|
100
|
+
filter: 'Filter'
|
101
|
+
hidden: 'Verborgen'
|
102
|
+
hide: 'Verbergen'
|
103
|
+
keywords: 'Sleutelwoorden'
|
104
|
+
language: 'Taal'
|
105
|
+
layout: 'Layout'
|
106
|
+
layouts: 'Layouts'
|
107
|
+
log_out: 'Uitloggen'
|
108
|
+
logged_in_as: 'Ingelogd als'
|
109
|
+
login: 'Inloggen'
|
110
|
+
modify: 'Bewerken'
|
111
|
+
more: 'Meer'
|
112
|
+
more_info: 'Meer Info'
|
113
|
+
name: 'Naam'
|
114
|
+
new_homepage: 'Nieuwe homepage'
|
115
|
+
new_layout: 'Nieuwe Layout'
|
116
|
+
new_page: 'Nieuwe Pagina'
|
117
|
+
new_password: 'Nieuw Wachtwoord'
|
118
|
+
new_snippet: 'Nieuwe Snippet'
|
119
|
+
new_user: 'Nieuwe Gebruiker'
|
120
|
+
no_layouts: 'Geen Layouts'
|
121
|
+
no_pages: "Geen Pagina's"
|
122
|
+
no_snippets: "Geen Snippets"
|
123
|
+
normal_page: 'Gewone Pagina'
|
124
|
+
notes: 'Notities'
|
125
|
+
optional: 'Optioneel'
|
126
|
+
or: 'of'
|
127
|
+
page: 'Pagina'
|
128
|
+
page_hierarchy: 'Pagina-hiërarchie van de website'
|
129
|
+
page_page: 'Page Part'
|
130
|
+
page_title: 'Pagina Titel'
|
131
|
+
page_type: 'Pagina Type'
|
132
|
+
pages: "Pagina's"
|
133
|
+
pages_controller:
|
134
|
+
removed_many: "De pagina's werden verwijderd van de site."
|
135
|
+
removed_one: "De pagina is verwijderd van de site."
|
136
|
+
saved: "Je pagina is hieronder opgeslagen."
|
137
|
+
password: 'Wachtwoord'
|
138
|
+
password_confirmation: 'Bevestig Nieuw Wachtwoord'
|
139
|
+
personal: 'Instellingen'
|
140
|
+
personal_preferences: 'Persoonlijke Voorkeuren'
|
141
|
+
please_login: 'Inloggen'
|
142
|
+
powered_by: ''
|
143
|
+
preferences: 'Voorkeuren'
|
144
|
+
preferences_controller:
|
145
|
+
error_updating: 'Er is een fout opgetreden bij het opslaan van je voorkeuren.'
|
146
|
+
updated: 'Je voorkeuren zijn bijgewerkt.'
|
147
|
+
preview: 'Voorbeeld'
|
148
|
+
published: 'Gepubliceerd'
|
149
|
+
published_at: 'Gepuliceerd op'
|
150
|
+
published_on: 'Gepuliceerd op'
|
151
|
+
reference: 'Referentie'
|
152
|
+
remember_me: 'Onthoud mij'
|
153
|
+
remember_me_in_this_browser: 'Onthoud mij'
|
154
|
+
remove: 'Verwijderen'
|
155
|
+
remove_field: 'Eigenschap Verwijderen'
|
156
|
+
remove_layout: 'Layout Verwijderen'
|
157
|
+
remove_page: 'Pagina Verwijderen'
|
158
|
+
remove_pages: '%{pages} Verwijderen'
|
159
|
+
remove_snippet: 'Snippet Verwijderen'
|
160
|
+
remove_tab: 'Tab Verwijderen'
|
161
|
+
remove_user: 'Gebruiker verwijderen'
|
162
|
+
required: 'Vereist'
|
163
|
+
resource_controller:
|
164
|
+
not_found: "%{humanized_model_name} is niet gevonden."
|
165
|
+
removed: "%{humanized_model_name} is verwijderd."
|
166
|
+
saved: "%{humanized_model_name} is hieronder opgelsagen."
|
167
|
+
update_conflict: "%{humanized_model_name} is bijgewerkt sinds sinds het laden. De wijzigingen kunnen niet opgeslagen worden zonder mogelijk verlies van gegevens."
|
168
|
+
validation_errors: "Er zijn validatiefouten opgetreden tijdens het verwerken van dit formulier. Kijk het formulier aub na en verbeter eventuele fouten om verder te gaan."
|
169
|
+
reviewed: 'Nagekeken'
|
170
|
+
roles: 'Rollen'
|
171
|
+
saving_changes: 'Aan het bijwerken'
|
172
|
+
saving_preferences: 'Voorkeuren aan het bijwerken'
|
173
|
+
scheduled: "Gepland"
|
174
|
+
search_tags: 'Tags doorzoeken:'
|
175
|
+
select:
|
176
|
+
default: '<default>'
|
177
|
+
inherit: '<erven>'
|
178
|
+
none: '<geen>'
|
179
|
+
normal: '<normaal>'
|
180
|
+
settings: 'Instellingen'
|
181
|
+
show_all: 'Alle tonen'
|
182
|
+
slug: 'Slug'
|
183
|
+
snippet: 'Snippet'
|
184
|
+
snippets: 'Snippets'
|
185
|
+
status: 'Status'
|
186
|
+
# Warnings and info text:
|
187
|
+
testing: Testing
|
188
|
+
text:
|
189
|
+
layouts:
|
190
|
+
remove_warning: 'Ben je zeker dat je de volgende layout <strong class="warning">definitief</strong> wil <strong class="warning">verwijderen</strong>?'
|
191
|
+
pages:
|
192
|
+
remove_warning: 'Ben je zeker dat je de volgende pagina <strong class="warning">definitief</strong> wil <strong class="warning">verwijderen</strong>?'
|
193
|
+
snippets:
|
194
|
+
remove_warning: 'Ben je zeker dat je de volgende snippet <strong class="warning">definitief</strong> wil <strong class="warning">verwijderen</strong>?'
|
195
|
+
users:
|
196
|
+
remove_warning: 'Ben je zeker dat je de volgende gebruiker <strong class="warning">definitief</strong> wil <strong class="warning">verwijderen</strong>?'
|
197
|
+
this_file_language: "Nederlands"
|
198
|
+
time:
|
199
|
+
am: 'am'
|
200
|
+
formats:
|
201
|
+
datetime:
|
202
|
+
formats:
|
203
|
+
default: "%Y-%m-%dT%H:%M:%S%Z"
|
204
|
+
default: "%a %d %b %H:%M:%S %Z %Y"
|
205
|
+
long: "%d %B %Y %H:%M"
|
206
|
+
only_second: "%S"
|
207
|
+
short: "%d %b %H:%M"
|
208
|
+
time: "%H:%M"
|
209
|
+
timestamp: "%H:%M op %d %B %Y"
|
210
|
+
pm: 'pm'
|
211
|
+
timestamp:
|
212
|
+
at: 'om'
|
213
|
+
by: 'door'
|
214
|
+
last_updated: 'Laatst bijgewerkt'
|
215
|
+
type: 'Type'
|
216
|
+
units:
|
217
|
+
GB: "GB"
|
218
|
+
KB: "KB"
|
219
|
+
MB: "MB"
|
220
|
+
days: "dagen"
|
221
|
+
hours: "uren"
|
222
|
+
minutes: "minuten"
|
223
|
+
months: "maanden"
|
224
|
+
seconds: "seconden"
|
225
|
+
weeks: "weken"
|
226
|
+
user: 'Gebruiker'
|
227
|
+
username: 'Gebruikersnaam'
|
228
|
+
username_or_email: 'Gebruikersnaam of e-mailadres'
|
229
|
+
users: 'Gebruikers'
|
230
|
+
users_controller:
|
231
|
+
cannot_delete_self: 'Je kan jezelf niet verwijderen.'
|
232
|
+
version: 'Versie'
|
233
|
+
view_site: 'Bekijk Site'
|
234
|
+
warning: "Waarschuwing: "
|
235
|
+
website: 'Website'
|
236
|
+
welcome_controller:
|
237
|
+
invalid_user: 'Onbekende gebruikersnaam, e-mailadres of wachtwoord.'
|
238
|
+
logged_out: 'Je bent nu afgemeld.'
|
@@ -0,0 +1,553 @@
|
|
1
|
+
---
|
2
|
+
nl:
|
3
|
+
desc:
|
4
|
+
author:
|
5
|
+
Renders the name of the author of the current page.
|
6
|
+
|
7
|
+
breadcrumb:
|
8
|
+
Renders the @breadcrumb@ attribute of the current page.
|
9
|
+
|
10
|
+
breadcrumbs:
|
11
|
+
Renders a trail of breadcrumbs to the current page. The separator attribute
|
12
|
+
specifies the HTML fragment that is inserted between each of the breadcrumbs. By
|
13
|
+
default it is set to @>@. The boolean nolinks attribute can be specified to render
|
14
|
+
breadcrumbs in plain text, without any links (useful when generating title tag).
|
15
|
+
|
16
|
+
*Usage:*
|
17
|
+
|
18
|
+
<pre><code><r:breadcrumbs [separator="separator_string"] [nolinks="true"] /></code></pre>
|
19
|
+
|
20
|
+
children-count:
|
21
|
+
Renders the total number of children.
|
22
|
+
|
23
|
+
children-each-child:
|
24
|
+
Page attribute tags inside of this tag refer to the current child. This is occasionally
|
25
|
+
useful if you are inside of another tag (like <r:find>) and need to refer back to the
|
26
|
+
current child.
|
27
|
+
|
28
|
+
*Usage:*
|
29
|
+
|
30
|
+
<pre><code><r:children:each>
|
31
|
+
<r:child>...</r:child>
|
32
|
+
</r:children:each>
|
33
|
+
</code></pre>
|
34
|
+
|
35
|
+
children-each-header:
|
36
|
+
Renders the tag contents only if the contents do not match the previous header. This
|
37
|
+
is extremely useful for rendering date headers for a list of child pages.
|
38
|
+
|
39
|
+
If you would like to use several header blocks you may use the @name@ attribute to
|
40
|
+
name the header. When a header is named it will not restart until another header of
|
41
|
+
the same name is different.
|
42
|
+
|
43
|
+
Using the @restart@ attribute you can cause other named headers to restart when the
|
44
|
+
present header changes. Simply specify the names of the other headers in a semicolon
|
45
|
+
separated list.
|
46
|
+
|
47
|
+
*Usage:*
|
48
|
+
|
49
|
+
<pre><code><r:children:each>
|
50
|
+
<r:header [name="header_name"] [restart="name1[;name2;...]"]>
|
51
|
+
...
|
52
|
+
</r:header>
|
53
|
+
</r:children:each>
|
54
|
+
</code></pre>
|
55
|
+
|
56
|
+
children-each-if_first:
|
57
|
+
Renders the tag contents only if the current page is the first child in the context of
|
58
|
+
a children:each tag
|
59
|
+
|
60
|
+
*Usage:*
|
61
|
+
|
62
|
+
<pre><code><r:children:each>
|
63
|
+
<r:if_first >
|
64
|
+
...
|
65
|
+
</r:if_first>
|
66
|
+
</r:children:each>
|
67
|
+
</code></pre>
|
68
|
+
|
69
|
+
|
70
|
+
children-each-if_last:
|
71
|
+
Renders the tag contents only if the current page is the last child in the context of
|
72
|
+
a children:each tag
|
73
|
+
|
74
|
+
*Usage:*
|
75
|
+
|
76
|
+
<pre><code><r:children:each>
|
77
|
+
<r:if_last >
|
78
|
+
...
|
79
|
+
</r:if_last>
|
80
|
+
</r:children:each>
|
81
|
+
</code></pre>
|
82
|
+
|
83
|
+
|
84
|
+
children-each-unless_first:
|
85
|
+
Renders the tag contents unless the current page is the first child in the context of
|
86
|
+
a children:each tag
|
87
|
+
|
88
|
+
*Usage:*
|
89
|
+
|
90
|
+
<pre><code><r:children:each>
|
91
|
+
<r:unless_first >
|
92
|
+
...
|
93
|
+
</r:unless_first>
|
94
|
+
</r:children:each>
|
95
|
+
</code></pre>
|
96
|
+
|
97
|
+
|
98
|
+
children-each-unless_last:
|
99
|
+
Renders the tag contents unless the current page is the last child in the context of
|
100
|
+
a children:each tag
|
101
|
+
|
102
|
+
*Usage:*
|
103
|
+
|
104
|
+
<pre><code><r:children:each>
|
105
|
+
<r:unless_last >
|
106
|
+
...
|
107
|
+
</r:unless_last>
|
108
|
+
</r:children:each>
|
109
|
+
</code></pre>
|
110
|
+
|
111
|
+
|
112
|
+
children-each:
|
113
|
+
Cycles through each of the children. Inside this tag all page attribute tags
|
114
|
+
are mapped to the current child page.
|
115
|
+
|
116
|
+
*Usage:*
|
117
|
+
|
118
|
+
<pre><code><r:children:each [offset="number"] [limit="number"]
|
119
|
+
[by="published_at|updated_at|created_at|slug|title|keywords|description"]
|
120
|
+
[order="asc|desc"] [status="draft|reviewed|published|hidden|all"]>
|
121
|
+
...
|
122
|
+
</r:children:each>
|
123
|
+
</code></pre>
|
124
|
+
|
125
|
+
children-first:
|
126
|
+
Returns the first child. Inside this tag all page attribute tags are mapped to
|
127
|
+
the first child. Takes the same ordering options as @<r:children:each>@.
|
128
|
+
|
129
|
+
*Usage:*
|
130
|
+
|
131
|
+
<pre><code><r:children:first>...</r:children:first></code></pre>
|
132
|
+
|
133
|
+
children-last:
|
134
|
+
Returns the last child. Inside this tag all page attribute tags are mapped to
|
135
|
+
the last child. Takes the same ordering options as @<r:children:each>@.
|
136
|
+
|
137
|
+
*Usage:*
|
138
|
+
|
139
|
+
<pre><code><r:children:last>...</r:children:last></code></pre>
|
140
|
+
|
141
|
+
children:
|
142
|
+
Gives access to a page's children.
|
143
|
+
|
144
|
+
*Usage:*
|
145
|
+
|
146
|
+
<pre><code><r:children>...</r:children></code></pre>
|
147
|
+
|
148
|
+
comment:
|
149
|
+
Nothing inside a set of comment tags is rendered.
|
150
|
+
|
151
|
+
*Usage:*
|
152
|
+
|
153
|
+
<pre><code><r:comment>...</r:comment></code></pre>
|
154
|
+
|
155
|
+
content:
|
156
|
+
Renders the main content of a page. Use the @part@ attribute to select a specific
|
157
|
+
page part. By default the @part@ attribute is set to body. Use the @inherit@
|
158
|
+
attribute to specify that if a page does not have a content part by that name that
|
159
|
+
the tag should render the parent's content part. By default @inherit@ is set to
|
160
|
+
@false@. Use the @contextual@ attribute to force a part inherited from a parent
|
161
|
+
part to be evaluated in the context of the child page. By default 'contextual'
|
162
|
+
is set to true.
|
163
|
+
|
164
|
+
*Usage:*
|
165
|
+
|
166
|
+
<pre><code><r:content [part="part_name"] [inherit="true|false"] [contextual="true|false"] /></code></pre>
|
167
|
+
|
168
|
+
cycle:
|
169
|
+
Renders one of the passed values based on a global cycle counter. Use the @reset@
|
170
|
+
attribute to reset the cycle to the beginning. Use the @name@ attribute to track
|
171
|
+
multiple cycles; the default is @cycle@.
|
172
|
+
|
173
|
+
*Usage:*
|
174
|
+
|
175
|
+
<pre><code><r:cycle values="first, second, third" [reset="true|false"] [name="cycle"] /></code></pre>
|
176
|
+
|
177
|
+
date:
|
178
|
+
Renders the date based on the current page (by default when it was published or created).
|
179
|
+
The format attribute uses the same formating codes used by the Ruby @strftime@ function. By
|
180
|
+
default it's set to @%A, %B %d, %Y@. The @for@ attribute selects which date to render. Valid
|
181
|
+
options are @published_at@, @created_at@, @updated_at@, and @now@. @now@ will render the
|
182
|
+
current date/time, regardless of the page.
|
183
|
+
|
184
|
+
*Usage:*
|
185
|
+
|
186
|
+
<pre><code><r:date [format="%A, %B %d, %Y"] [for="published_at"]/></code></pre>
|
187
|
+
|
188
|
+
escape_html:
|
189
|
+
Escapes angle brackets, etc. for rendering in an HTML document.
|
190
|
+
|
191
|
+
*Usage:*
|
192
|
+
|
193
|
+
<pre><code><r:escape_html>...</r:escape_html></code></pre>
|
194
|
+
|
195
|
+
find:
|
196
|
+
Inside this tag all page related tags refer to the page found at the @url@ attribute.
|
197
|
+
@url@s may be relative or absolute paths.
|
198
|
+
|
199
|
+
*Usage:*
|
200
|
+
|
201
|
+
<pre><code><r:find url="value_to_find">...</r:find></code></pre>
|
202
|
+
|
203
|
+
if_ancestor_or_self:
|
204
|
+
Renders the contained elements if the current contextual page is either the actual page or one of its parents.
|
205
|
+
|
206
|
+
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up if the child element is or descends from the current page.
|
207
|
+
|
208
|
+
*Usage:*
|
209
|
+
|
210
|
+
<pre><code><r:if_ancestor_or_self>...</r:if_ancestor_or_self></code></pre>
|
211
|
+
|
212
|
+
if_children:
|
213
|
+
Renders the contained elements only if the current contextual page has one or
|
214
|
+
more child pages. The @status@ attribute limits the status of found child pages
|
215
|
+
to the given status, the default is @"published"@. @status="all"@ includes all
|
216
|
+
non-virtual pages regardless of status.
|
217
|
+
|
218
|
+
*Usage:*
|
219
|
+
|
220
|
+
<pre><code><r:if_children [status="published"]>...</r:if_children></code></pre>
|
221
|
+
|
222
|
+
if_content:
|
223
|
+
Renders the containing elements if all of the listed parts exist on a page.
|
224
|
+
By default the @part@ attribute is set to @body@, but you may list more than one
|
225
|
+
part by separating them with a comma. Setting the optional @inherit@ to true will
|
226
|
+
search ancestors independently for each part. By default @inherit@ is set to @false@.
|
227
|
+
|
228
|
+
When listing more than one part, you may optionally set the @find@ attribute to @any@
|
229
|
+
so that it will render the containing elements if any of the listed parts are found.
|
230
|
+
By default the @find@ attribute is set to @all@.
|
231
|
+
|
232
|
+
*Usage:*
|
233
|
+
|
234
|
+
<pre><code><r:if_content [part="part_name, other_part"] [inherit="true"] [find="any"]>...</r:if_content></code></pre>
|
235
|
+
|
236
|
+
if_dev:
|
237
|
+
Renders the containing elements only if Radiant in is development mode.
|
238
|
+
|
239
|
+
*Usage:*
|
240
|
+
|
241
|
+
<pre><code><r:if_dev>...</r:if_dev></code></pre>
|
242
|
+
|
243
|
+
if_parent:
|
244
|
+
Renders the contained elements only if the current contextual page has a parent, i.e.
|
245
|
+
is not the root page.
|
246
|
+
|
247
|
+
*Usage:*
|
248
|
+
|
249
|
+
<pre><code><r:if_parent>...</r:if_parent></code></pre>
|
250
|
+
|
251
|
+
if_self:
|
252
|
+
Renders the contained elements if the current contextual page is also the actual page.
|
253
|
+
|
254
|
+
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up if the child element is the current page.
|
255
|
+
|
256
|
+
*Usage:*
|
257
|
+
|
258
|
+
<pre><code><r:if_self>...</r:if_self></code></pre>
|
259
|
+
|
260
|
+
if_url:
|
261
|
+
Renders the containing elements only if the page's url matches the regular expression
|
262
|
+
given in the @matches@ attribute. If the @ignore_case@ attribute is set to false, the
|
263
|
+
match is case sensitive. By default, @ignore_case@ is set to true.
|
264
|
+
|
265
|
+
*Usage:*
|
266
|
+
|
267
|
+
<pre><code><r:if_url matches="regexp" [ignore_case="true|false"]>...</r:if_url></code></pre>
|
268
|
+
|
269
|
+
link:
|
270
|
+
Renders a link to the page. When used as a single tag it uses the page's title
|
271
|
+
for the link name. When used as a double tag the part in between both tags will
|
272
|
+
be used as the link text. The link tag passes all attributes over to the HTML
|
273
|
+
@a@ tag. This is very useful for passing attributes like the @class@ attribute
|
274
|
+
or @id@ attribute. If the @anchor@ attribute is passed to the tag it will
|
275
|
+
append a pound sign (<code>#</code>) followed by the value of the attribute to
|
276
|
+
the @href@ attribute of the HTML @a@ tag--effectively making an HTML anchor.
|
277
|
+
|
278
|
+
*Usage:*
|
279
|
+
|
280
|
+
<pre><code><r:link [anchor="name"] [other attributes...] /></code></pre>
|
281
|
+
|
282
|
+
or
|
283
|
+
|
284
|
+
<pre><code><r:link [anchor="name"] [other attributes...]>link text here</r:link></code></pre>
|
285
|
+
|
286
|
+
markdown:
|
287
|
+
Filters its contents with the Markdown filter.
|
288
|
+
|
289
|
+
*Usage:*
|
290
|
+
|
291
|
+
<pre><code><r:markdown>** bold text **</r:markdown></code></pre>
|
292
|
+
|
293
|
+
produces
|
294
|
+
|
295
|
+
<pre><code><strong> bold text </strong></code></pre>
|
296
|
+
|
297
|
+
meta-description:
|
298
|
+
Emits the page description field in a meta tag, unless attribute
|
299
|
+
'tag' is set to 'false'.
|
300
|
+
|
301
|
+
*Usage:*
|
302
|
+
|
303
|
+
<pre><code> <r:meta:description [tag="false"] /> </code></pre>
|
304
|
+
|
305
|
+
meta-keywords:
|
306
|
+
Emits the page keywords field in a meta tag, unless attribute
|
307
|
+
'tag' is set to 'false'.
|
308
|
+
|
309
|
+
*Usage:*
|
310
|
+
|
311
|
+
<pre><code> <r:meta:keywords [tag="false"] /> </code></pre>
|
312
|
+
|
313
|
+
meta:
|
314
|
+
The namespace for 'meta' attributes. If used as a singleton tag, both the description
|
315
|
+
and keywords fields will be output as <meta /> tags unless the attribute 'tag' is set to 'false'.
|
316
|
+
|
317
|
+
*Usage:*
|
318
|
+
|
319
|
+
<pre><code> <r:meta [tag="false"] />
|
320
|
+
<r:meta>
|
321
|
+
<r:description [tag="false"] />
|
322
|
+
<r:keywords [tag="false"] />
|
323
|
+
</r:meta>
|
324
|
+
</code></pre>
|
325
|
+
|
326
|
+
navigation-if_first:
|
327
|
+
Renders the containing elements if the element is the first
|
328
|
+
in the navigation list
|
329
|
+
|
330
|
+
*Usage:*
|
331
|
+
|
332
|
+
<pre><code><r:normal><r:if_first>...</r:if_first></r:normal></code></pre>
|
333
|
+
|
334
|
+
navigation-if_last:
|
335
|
+
Renders the containing elements if the element is the last
|
336
|
+
in the navigation list
|
337
|
+
|
338
|
+
*Usage:*
|
339
|
+
|
340
|
+
<pre><code><r:normal><r:if_last>...</r:if_last></r:normal></code></pre>
|
341
|
+
|
342
|
+
navigation:
|
343
|
+
Renders a list of links specified in the @urls@ attribute according to three
|
344
|
+
states:
|
345
|
+
|
346
|
+
* @normal@ specifies the normal state for the link
|
347
|
+
* @here@ specifies the state of the link when the url matches the current
|
348
|
+
page's URL
|
349
|
+
* @selected@ specifies the state of the link when the current page matches
|
350
|
+
is a child of the specified url
|
351
|
+
# @if_last@ renders its contents within a @normal@, @here@ or
|
352
|
+
@selected@ tag if the item is the last in the navigation elements
|
353
|
+
# @if_first@ renders its contents within a @normal@, @here@ or
|
354
|
+
@selected@ tag if the item is the first in the navigation elements
|
355
|
+
|
356
|
+
The @between@ tag specifies what should be inserted in between each of the links.
|
357
|
+
|
358
|
+
*Usage:*
|
359
|
+
|
360
|
+
<pre><code><r:navigation urls="[Title: url | Title: url | ...]">
|
361
|
+
<r:normal><a href="<r:url />"><r:title /></a></r:normal>
|
362
|
+
<r:here><strong><r:title /></strong></r:here>
|
363
|
+
<r:selected><strong><a href="<r:url />"><r:title /></a></strong></r:selected>
|
364
|
+
<r:between> | </r:between>
|
365
|
+
</r:navigation>
|
366
|
+
</code></pre>
|
367
|
+
|
368
|
+
page:
|
369
|
+
Causes the tags referring to a page's attributes to refer to the current page.
|
370
|
+
|
371
|
+
*Usage:*
|
372
|
+
|
373
|
+
<pre><code><r:page>...</r:page></code></pre>
|
374
|
+
|
375
|
+
parent:
|
376
|
+
Page attribute tags inside this tag refer to the parent of the current page.
|
377
|
+
|
378
|
+
*Usage:*
|
379
|
+
|
380
|
+
<pre><code><r:parent>...</r:parent></code></pre>
|
381
|
+
|
382
|
+
random:
|
383
|
+
Randomly renders one of the options specified by the @option@ tags.
|
384
|
+
|
385
|
+
*Usage:*
|
386
|
+
|
387
|
+
<pre><code><r:random>
|
388
|
+
<r:option>...</r:option>
|
389
|
+
<r:option>...</r:option>
|
390
|
+
...
|
391
|
+
<r:random>
|
392
|
+
</code></pre>
|
393
|
+
|
394
|
+
rfc1123_date:
|
395
|
+
Outputs the published date using the format mandated by RFC 1123. (Ideal for RSS feeds.)
|
396
|
+
|
397
|
+
*Usage:*
|
398
|
+
|
399
|
+
<pre><code><r:rfc1123_date /></code></pre>
|
400
|
+
|
401
|
+
slug:
|
402
|
+
Renders the @slug@ attribute of the current page.
|
403
|
+
|
404
|
+
smarty_pants:
|
405
|
+
Filters its contents with the SmartyPants filter.
|
406
|
+
|
407
|
+
*Usage:*
|
408
|
+
|
409
|
+
<pre><code><r:smarty_pants>"A revolutionary quotation."</r:smarty_pants></code></pre>
|
410
|
+
|
411
|
+
produces
|
412
|
+
|
413
|
+
<pre><code>“A revolutionary quotation.”</code></pre>
|
414
|
+
|
415
|
+
snippet:
|
416
|
+
Renders the snippet specified in the @name@ attribute within the context of a page.
|
417
|
+
|
418
|
+
*Usage:*
|
419
|
+
|
420
|
+
<pre><code><r:snippet name="snippet_name" /></code></pre>
|
421
|
+
|
422
|
+
When used as a double tag, the part in between both tags may be used within the
|
423
|
+
snippet itself, being substituted in place of @<r:yield/>@.
|
424
|
+
|
425
|
+
*Usage:*
|
426
|
+
|
427
|
+
<pre><code><r:snippet name="snippet_name">Lorem ipsum dolor...</r:snippet></code></pre>
|
428
|
+
|
429
|
+
status:
|
430
|
+
Prints the page's status as a string. Optional attribute 'downcase'
|
431
|
+
will cause the status to be all lowercase.
|
432
|
+
|
433
|
+
*Usage:*
|
434
|
+
|
435
|
+
<pre><code><r:status [downcase='true'] /></code></pre>
|
436
|
+
|
437
|
+
textile:
|
438
|
+
Filters its contents with the Textile filter.
|
439
|
+
|
440
|
+
*Usage*:
|
441
|
+
|
442
|
+
<pre><code><r:textile>
|
443
|
+
* First
|
444
|
+
* Second
|
445
|
+
</r:textile></code></pre>
|
446
|
+
|
447
|
+
produces:
|
448
|
+
|
449
|
+
<pre><code><ul>
|
450
|
+
<li>First</li>
|
451
|
+
<li>Second</li>
|
452
|
+
</ul></code></pre>
|
453
|
+
|
454
|
+
title:
|
455
|
+
Renders the @title@ attribute of the current page.
|
456
|
+
|
457
|
+
unless_ancestor_or_self:
|
458
|
+
Renders the contained elements unless the current contextual page is either the actual page or one of its parents.
|
459
|
+
|
460
|
+
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up unless the child element is or descends from the current page.
|
461
|
+
|
462
|
+
*Usage:*
|
463
|
+
|
464
|
+
<pre><code><r:unless_ancestor_or_self>...</r:unless_ancestor_or_self></code></pre>
|
465
|
+
|
466
|
+
unless_children:
|
467
|
+
Renders the contained elements only if the current contextual page has no children.
|
468
|
+
The @status@ attribute limits the status of found child pages to the given status,
|
469
|
+
the default is @"published"@. @status="all"@ includes all non-virtual pages
|
470
|
+
regardless of status.
|
471
|
+
|
472
|
+
*Usage:*
|
473
|
+
|
474
|
+
<pre><code><r:unless_children [status="published"]>...</r:unless_children></code></pre>
|
475
|
+
|
476
|
+
unless_content:
|
477
|
+
The opposite of the @if_content@ tag. It renders the contained elements if all of the
|
478
|
+
specified parts do not exist. Setting the optional @inherit@ to true will search
|
479
|
+
ancestors independently for each part. By default @inherit@ is set to @false@.
|
480
|
+
|
481
|
+
When listing more than one part, you may optionally set the @find@ attribute to @any@
|
482
|
+
so that it will not render the containing elements if any of the listed parts are found.
|
483
|
+
By default the @find@ attribute is set to @all@.
|
484
|
+
|
485
|
+
*Usage:*
|
486
|
+
|
487
|
+
<pre><code><r:unless_content [part="part_name, other_part"] [inherit="false"] [find="any"]>...</r:unless_content></code></pre>
|
488
|
+
|
489
|
+
unless_dev:
|
490
|
+
The opposite of the @if_dev@ tag.
|
491
|
+
|
492
|
+
*Usage:*
|
493
|
+
|
494
|
+
<pre><code><r:unless_dev>...</r:unless_dev></code></pre>
|
495
|
+
|
496
|
+
unless_parent:
|
497
|
+
Renders the contained elements only if the current contextual page has no parent, i.e.
|
498
|
+
is the root page.
|
499
|
+
|
500
|
+
*Usage:*
|
501
|
+
|
502
|
+
<pre><code><r:unless_parent>...</r:unless_parent></code></pre>
|
503
|
+
|
504
|
+
unless_self:
|
505
|
+
Renders the contained elements unless the current contextual page is also the actual page.
|
506
|
+
|
507
|
+
This is typically used inside another tag (like <r:children:each>) to add conditional mark-up unless the child element is the current page.
|
508
|
+
|
509
|
+
*Usage:*
|
510
|
+
|
511
|
+
<pre><code><r:unless_self>...</r:unless_self></code></pre>
|
512
|
+
|
513
|
+
unless_url:
|
514
|
+
The opposite of the @if_url@ tag.
|
515
|
+
|
516
|
+
*Usage:*
|
517
|
+
|
518
|
+
<pre><code><r:unless_url matches="regexp" [ignore_case="true|false"]>...</r:unless_url></code></pre>
|
519
|
+
|
520
|
+
url:
|
521
|
+
Renders the @url@ attribute of the current page.
|
522
|
+
|
523
|
+
yield:
|
524
|
+
Used within a snippet as a placeholder for substitution of child content, when
|
525
|
+
the snippet is called as a double tag.
|
526
|
+
|
527
|
+
*Usage (within a snippet):*
|
528
|
+
|
529
|
+
<pre><code>
|
530
|
+
<div id="outer">
|
531
|
+
<p>before</p>
|
532
|
+
<r:yield/>
|
533
|
+
<p>after</p>
|
534
|
+
</div>
|
535
|
+
</code></pre>
|
536
|
+
|
537
|
+
If the above snippet was named "yielding", you could call it from any Page,
|
538
|
+
Layout or Snippet as follows:
|
539
|
+
|
540
|
+
<pre><code><r:snippet name="yielding">Content within</r:snippet></code></pre>
|
541
|
+
|
542
|
+
Which would output the following:
|
543
|
+
|
544
|
+
<pre><code>
|
545
|
+
<div id="outer">
|
546
|
+
<p>before</p>
|
547
|
+
Content within
|
548
|
+
<p>after</p>
|
549
|
+
</div>
|
550
|
+
</code></pre>
|
551
|
+
|
552
|
+
When called in the context of a Page or a Layout, @<r:yield/>@ outputs nothing.
|
553
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
module RadiantDutchLanguagePackExtension
|
2
|
+
VERSION = "1.0.0"
|
3
|
+
SUMMARY = "Dutch language pack for Radiant CMS"
|
4
|
+
DESCRIPTION = "Adds Dutch translations to the Radiant CMS interface."
|
5
|
+
URL = "https://github.com/radiant/radiant-dutch_language_pack-extension"
|
6
|
+
AUTHORS = ["Benny Degezelle"]
|
7
|
+
EMAIL = ["hi@monkeypatch.be"]
|
8
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
namespace :radiant do
|
2
|
+
namespace :extensions do
|
3
|
+
namespace :nl do
|
4
|
+
|
5
|
+
desc "Runs the migration of the I18n Nl extension"
|
6
|
+
task :migrate => :environment do
|
7
|
+
require 'radiant/extension_migrator'
|
8
|
+
if ENV["VERSION"]
|
9
|
+
I18nNlExtension.migrator.migrate(ENV["VERSION"].to_i)
|
10
|
+
else
|
11
|
+
I18nNlExtension.migrator.migrate
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
desc "Copies public assets of the I18n Nl to the instance public/ directory."
|
16
|
+
task :update => :environment do
|
17
|
+
is_svn_or_dir = proc {|path| path =~ /\.svn/ || File.directory?(path) }
|
18
|
+
puts "Copying assets from I18nNlExtension"
|
19
|
+
Dir[I18nNlExtension.root + "/public/**/*"].reject(&is_svn_or_dir).each do |file|
|
20
|
+
path = file.sub(I18nNlExtension.root, '')
|
21
|
+
directory = File.dirname(path)
|
22
|
+
mkdir_p RAILS_ROOT + directory, :verbose => false
|
23
|
+
cp file, RAILS_ROOT + path, :verbose => false
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "radiant-dutch_language_pack-extension"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "radiant-dutch_language_pack-extension"
|
7
|
+
s.version = RadiantDutchLanguagePackExtension::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = RadiantDutchLanguagePackExtension::AUTHORS
|
10
|
+
s.email = RadiantDutchLanguagePackExtension::EMAIL
|
11
|
+
s.homepage = RadiantDutchLanguagePackExtension::URL
|
12
|
+
s.summary = RadiantDutchLanguagePackExtension::SUMMARY
|
13
|
+
s.description = RadiantDutchLanguagePackExtension::DESCRIPTION
|
14
|
+
|
15
|
+
ignores = if File.exist?('.gitignore')
|
16
|
+
File.read('.gitignore').split("\n").inject([]) {|a,p| a + Dir[p] }
|
17
|
+
else
|
18
|
+
[]
|
19
|
+
end
|
20
|
+
s.files = Dir['**/*'] - ignores
|
21
|
+
s.test_files = Dir['test/**/*','spec/**/*','features/**/*'] - ignores
|
22
|
+
# s.executables = Dir['bin/*'] - ignores
|
23
|
+
s.require_paths = ["lib"]
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: radiant-dutch_language_pack-extension
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Benny Degezelle
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-09-18 00:00:00 +02:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: Adds Dutch translations to the Radiant CMS interface.
|
23
|
+
email:
|
24
|
+
- hi@monkeypatch.be
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- config/locales/nl.yml
|
33
|
+
- config/locales/nl_available_tags.yml
|
34
|
+
- dutch_language_pack_extension.rb
|
35
|
+
- lib/radiant-dutch_language_pack-extension.rb
|
36
|
+
- lib/tasks/i18n_nl_extension_tasks.rake
|
37
|
+
- radiant-dutch_language_pack-extension.gemspec
|
38
|
+
- Rakefile
|
39
|
+
- README
|
40
|
+
has_rdoc: true
|
41
|
+
homepage: https://github.com/radiant/radiant-dutch_language_pack-extension
|
42
|
+
licenses: []
|
43
|
+
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options: []
|
46
|
+
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
hash: 3
|
55
|
+
segments:
|
56
|
+
- 0
|
57
|
+
version: "0"
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 3
|
64
|
+
segments:
|
65
|
+
- 0
|
66
|
+
version: "0"
|
67
|
+
requirements: []
|
68
|
+
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 1.3.7
|
71
|
+
signing_key:
|
72
|
+
specification_version: 3
|
73
|
+
summary: Dutch language pack for Radiant CMS
|
74
|
+
test_files: []
|
75
|
+
|