card 1.103.4 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/config/environments/development.rb +4 -2
- data/config/environments/test.rb +1 -1
- data/config/initializers/01_core_extensions/array.rb +4 -1
- data/config/initializers/01_core_extensions/object.rb +1 -1
- data/config/initializers/02_patches/active_record.rb +16 -17
- data/config/locales/de.yml +8 -564
- data/config/locales/es.yml +2 -3
- data/db/migrate/20110511221913_require_earlier_migrations.rb +1 -1
- data/db/migrate/20120105203350_require_1_8_migrations.rb +1 -1
- data/db/migrate/20121111025347_require_1_10_migrations.rb +1 -1
- data/db/migrate/20211128040849_virtuals_updated_at.rb +11 -0
- data/db/migrate_core_cards/20190502130029_add_shark_and_help_desk_role.rb +0 -1
- data/db/schema.rb +19 -16
- data/db/seed/new/card_actions.yml +1323 -2091
- data/db/seed/new/card_acts.yml +2 -2
- data/db/seed/new/card_references.yml +629 -741
- data/db/seed/new/cards.yml +2593 -5557
- data/db/seed/new/schema_migrations.yml +2 -0
- data/db/seed/new/schema_migrations_core_cards.yml +8 -0
- data/db/seed/test/fixtures/card_actions.yml +2555 -3395
- data/db/seed/test/fixtures/card_acts.yml +606 -666
- data/db/seed/test/fixtures/card_changes.yml +101 -101
- data/db/seed/test/fixtures/card_references.yml +1609 -1686
- data/db/seed/test/fixtures/cards.yml +4363 -7541
- data/db/seed/test/fixtures/schema_migrations.yml +2 -0
- data/db/seed/test/fixtures/schema_migrations_core_cards.yml +8 -0
- data/db/test_seed.rb +1 -4
- data/db/version.txt +1 -1
- data/db/version_core_cards.txt +1 -1
- data/lib/card/auth/current.rb +1 -1
- data/lib/card/auth/permissions.rb +37 -35
- data/lib/card/content/all.rb +3 -3
- data/lib/card/content/chunk.rb +1 -0
- data/lib/card/director/act_direction.rb +1 -3
- data/lib/card/director/card_methods.rb +0 -1
- data/lib/card/director/phases.rb +1 -0
- data/lib/card/director.rb +1 -0
- data/lib/card/fetch/all.rb +3 -3
- data/lib/card/fetch/card_class.rb +5 -11
- data/lib/card/fetch/results.rb +2 -2
- data/lib/card/model/save_helper.rb +2 -2
- data/lib/card/name/all/descendants.rb +9 -7
- data/lib/card/name/all/parts.rb +1 -1
- data/lib/card/name/all.rb +4 -3
- data/lib/card/name/card_class.rb +1 -0
- data/lib/card/name/fields_and_traits.rb +6 -30
- data/lib/card/name/name_variants.rb +5 -1
- data/lib/card/name.rb +0 -8
- data/lib/card/query/abstract_query/tie.rb +2 -3
- data/lib/card/query/card_query/normalization.rb +1 -1
- data/lib/card/query/sql_statement/order.rb +5 -6
- data/lib/card/query/value.rb +10 -7
- data/lib/card/reference/all.rb +9 -7
- data/lib/card/reference.rb +36 -41
- data/lib/card/rule/all.rb +3 -3
- data/lib/card/set/advanced_api.rb +5 -0
- data/lib/card/set/event/delayed_event.rb +8 -1
- data/lib/card/set/event.rb +1 -0
- data/lib/card/set/helpers.rb +30 -17
- data/lib/card/set/pattern/all.rb +13 -4
- data/lib/card/set/pattern/base.rb +12 -18
- data/lib/card/set/pattern/class_methods.rb +13 -13
- data/lib/card/set/pattern.rb +30 -19
- data/lib/card/set/trait.rb +16 -1
- data/lib/card/set/type.rb +3 -0
- data/lib/card/subcards/add.rb +1 -3
- data/lib/card/subcards/all.rb +30 -56
- data/lib/card/view/options.rb +7 -5
- data/lib/cardio/cli.rb +1 -0
- data/lib/cardio/commands/custom.rb +60 -0
- data/lib/cardio/commands/rake_command/parser.rb +49 -48
- data/lib/cardio/commands/rake_command.rb +17 -15
- data/lib/cardio/commands/rspec_command.rb +2 -0
- data/lib/cardio/commands.rb +69 -69
- data/lib/cardio/generators.rb +56 -3
- data/lib/cardio/migration/deck.rb +0 -0
- data/lib/cardio/migration/deck_structure.rb +2 -0
- data/lib/cardio/migration/import/import_data/card_content.rb +1 -1
- data/lib/cardio/migration/import.rb +2 -2
- data/lib/cardio/migration.rb +26 -2
- data/lib/cardio/mod/class_methods.rb +112 -0
- data/lib/cardio/mod/dirs.rb +15 -11
- data/lib/cardio/mod/eat/edibles.rb +92 -0
- data/lib/cardio/mod/eat.rb +81 -0
- data/lib/cardio/mod/load_strategy/tmp_files.rb +1 -1
- data/lib/cardio/mod/modfile_api.rb +5 -0
- data/lib/cardio/mod/poop.rb +135 -0
- data/lib/cardio/mod.rb +20 -80
- data/lib/cardio/railtie.rb +15 -3
- data/lib/cardio/schema.rb +11 -10
- data/lib/cardio/version.rb +35 -0
- data/lib/cardio.rb +4 -0
- data/lib/generators/deck/templates/Gemfile.erb +0 -4
- data/lib/generators/deck/templates/rspec.erb +1 -1
- data/lib/generators/deck/templates/spec/javascripts/support/decko_jasmine.yml.erb +0 -1
- data/lib/generators/mod/USAGE +1 -0
- data/lib/tasks/card/migrate.rake +41 -1
- data/lib/tasks/card/mod.rake +15 -8
- data/lib/tasks/card.rake +47 -87
- data/mod/admin/locales/de.yml +4 -0
- data/mod/admin/set/self/admin.rb +10 -8
- data/mod/core/data/production.yml +7 -0
- data/mod/core/data/test.yml +30 -0
- data/mod/core/locales/de.yml +28 -0
- data/mod/core/set/all/assign_attributes.rb +1 -33
- data/mod/core/set/all/content.rb +3 -1
- data/mod/core/set/all/initialize.rb +1 -4
- data/mod/core/set/all/name_events.rb +3 -18
- data/mod/core/set/all/reference_events.rb +29 -28
- data/mod/core/set/all/subcards.rb +6 -2
- data/mod/core/set/all/trash.rb +2 -3
- data/mod/core/set/all/type.rb +67 -18
- data/mod/core/set/self/version.rb +1 -1
- data/mod/core/spec/set/self/trash_spec.rb +1 -1
- data/mod/standard/{file → data/files}/favicon/image-icon.png +0 -0
- data/mod/standard/{file → data/files}/favicon/image-large.png +0 -0
- data/mod/standard/{file → data/files}/favicon/image-medium.png +0 -0
- data/mod/standard/{file → data/files}/favicon/image-original.png +0 -0
- data/mod/standard/{file → data/files}/favicon/image-small.png +0 -0
- data/mod/standard/{file → data/files}/logo/image-original.svg +0 -0
- metadata +37 -28
- data/db/migrate_core_cards/20150605115802_add_performance_log_card.rb +0 -7
- data/lib/card/set/code_nest.rb +0 -15
- data/lib/card/version.rb +0 -11
- data/lib/cardio/commands/USAGE +0 -28
- data/lib/cardio/generators/class_methods.rb +0 -35
- data/lib/tasks/card/asset.rake +0 -22
- data/mod/core/spec/set/all/clean_me_spec.rb +0 -258
- data/mod/core/spec/set/all/export_spec.rb +0 -71
- data/tmpsets/set_pattern/100-all.rb +0 -22
- data/tmpsets/set_pattern/101-all_plus.rb +0 -24
- data/tmpsets/set_pattern/102-type.rb +0 -40
- data/tmpsets/set_pattern/103-star.rb +0 -26
- data/tmpsets/set_pattern/104-rstar.rb +0 -28
- data/tmpsets/set_pattern/105-rule.rb +0 -28
- data/tmpsets/set_pattern/106-right.rb +0 -35
- data/tmpsets/set_pattern/107-type_plus_right.rb +0 -43
- data/tmpsets/set_pattern/108-self.rb +0 -34
data/config/locales/de.yml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
#
|
5
5
|
# key name prefixes:
|
6
6
|
# 'exception_' begins key of text to be used in a raised exception
|
7
|
-
# 'error_' begins key of text to be added to an error list (
|
7
|
+
# 'error_' begins key of text to be added to an error list (usually)
|
8
8
|
# 'search_' begins key of text to be used in CQL search comment
|
9
9
|
# 'deny_' begins key of text to be used in denying action due to permissions
|
10
10
|
# (Not all key names begin with a prefix. In the absence of a prefix,
|
@@ -20,7 +20,7 @@
|
|
20
20
|
# with either 'lib.card' or 'mod.0d_modname' and these patterns are
|
21
21
|
# sufficiently distinctive that key collisions with translations
|
22
22
|
# for applications or other gems are believed to be unlikely.
|
23
|
-
# Format names for time and date are begun with a 'card_'
|
23
|
+
# Format names for time and date are begun with a 'card_' prefix to
|
24
24
|
# minimize the chances of interference with other gems or applications.
|
25
25
|
---
|
26
26
|
de:
|
@@ -29,566 +29,10 @@ de:
|
|
29
29
|
card_dayofwk_min_tz: '%A, %e. %B %Y, %k:%M %Z'
|
30
30
|
card_date_seconds: '%e. %B %Y, %k:%M:%S'
|
31
31
|
card_date_only: '%e. %B %Y'
|
32
|
-
lib:
|
33
|
-
card:
|
34
|
-
active_record_ext:
|
35
|
-
exception_not_implemented: "%{func} nicht implementiert"
|
36
|
-
codename:
|
37
|
-
exception_unknown_codename: "unbekannter %{codename}"
|
38
|
-
error:
|
39
|
-
exception_for_card: "für Karte %{cardname}: %{message}"
|
40
|
-
format:
|
41
|
-
error:
|
42
|
-
exception_bad_arg: "falsches %{category} Argument: %{arg}"
|
43
|
-
exception_bad_args: "falsche %{category} Argumente: %{args}"
|
44
|
-
no_cardname: unbekannte Karte
|
45
|
-
error_rendering: "Render-Fehler: %{cardname} (%{view} view)"
|
46
|
-
exception_init_without_card: Format ohne Karte initialisiert
|
47
|
-
query:
|
48
|
-
attributes:
|
49
|
-
exception_bad_query: '"%{found_by}" value must be valid Search, aber %{name} ist ein %{type}' # TODO
|
50
|
-
clause:
|
51
|
-
exception_bad_chars: "CQL enthält nicht erlaubte Zeichen: %{text}"
|
52
|
-
interpretation:
|
53
|
-
exception_invalid_attribute: Ungültiges Attribut %{key}
|
54
|
-
exception_invalid_args: Invalid query args %{items}
|
55
|
-
exception_unknown_valtype: "unbekannter CQL value type: %{klass}"
|
56
|
-
join:
|
57
|
-
exception_to_not_join: "%{to} cannot be %{join}"
|
58
|
-
exception_invalid_option: "invalid %{side} option: %{object}"
|
59
|
-
sorting:
|
60
|
-
exception_sort_not_implemented: "sort item: %{item} not yet implemented"
|
61
|
-
value:
|
62
|
-
exception_bad_condition_clause: Invalid Condition Clause %{item}
|
63
|
-
exception_invalid_operator: Invalid Operator %{operator}
|
64
|
-
set:
|
65
|
-
format:
|
66
|
-
exception_alias_fail: cannot find %{optview} view in %{optmod}; failed to alias %{view} in %{self}
|
67
|
-
mod:
|
68
|
-
:core:
|
69
|
-
format:
|
70
|
-
html_format:
|
71
|
-
unknown_layout: "Unbekanntes Layout: %{name}"
|
72
|
-
built_in: "Built-in Layouts: %{built_in_layouts}"
|
73
|
-
available_layouts: "Verfügbare Layouts: %{available_layouts}"
|
74
|
-
set:
|
75
|
-
all:
|
76
|
-
codename:
|
77
|
-
only_admins_codename: cur Administratoren können Codenamen festlegen
|
78
|
-
error_code_in_use: codename %{codename} wird bereits benutzt
|
79
|
-
event:
|
80
|
-
outside_event_phases: phase method %{method} called outside of event phases
|
81
|
-
called_in_stage: "%{item} method %{method} called in stage %{stage}"
|
82
|
-
called_on_action: "on: %{xaction} method %{method} called on %{yaction}"
|
83
|
-
fetch:
|
84
|
-
exception_fetch_arg_skipvirt: "%{func} called with new arguments and %{sv}"
|
85
|
-
name_events:
|
86
|
-
error_name_exists: muss eindeutig sein; '%{name}' existiert bereits.
|
87
|
-
error_too_long: ist zu lang (%{length} Zeichen; erlaubt sind maximal 255)
|
88
|
-
error_blank_name: darf nicht frei bleiben
|
89
|
-
error_blank_key: darf nicht frei bleiben
|
90
|
-
error_banned_characters: "darf keine der folgenden Zeichen enthalten: %{banned}"
|
91
|
-
error_name_tag: "%{name} bereits als Tag benutzt"
|
92
|
-
error_wrong_key: falscher Schlüssel '%{key}' für Name %{name}
|
93
|
-
is_incomplete: ist unvollständig
|
94
|
-
name:
|
95
|
-
search_children: "(%{side}) Kinder von %{parent_name}"
|
96
|
-
rename:
|
97
|
-
cannot_change_content: inhalt kann nicht geändert werden, während der Name geändert wird
|
98
|
-
cannot_change_type: kann den Typ beim Ändern des Namens nicht ändern
|
99
|
-
permissions:
|
100
|
-
error_no_action_rule: Keine %{action} Regel für %{name}
|
101
|
-
you_cant: Du hast keine Berechtigung zu %{what}
|
102
|
-
deny_read_only: Zur Zeit im Nur-Lesen-Modus
|
103
|
-
deny_verb_name: Du hast keine Berechtigung %{name} zu %{verb} # TODO looks like the verb is English. I don't see it here
|
104
|
-
deny_verb_this: Du hast keine Berechtigung das zu %{verb}
|
105
|
-
deny_create: Du hast keine Berechtigung %{part_card_name} zu erstellen
|
106
|
-
deny_read_this: Du hast keine Berechtigung das zu lesen
|
107
|
-
deny_change_to_type: Du hast keine Berechtigung diesen Typ zu ändern (benötigt Erstell-Berechtigung)
|
108
|
-
deny_no_comment_template: Kommentare für Templates nicht erlaubt
|
109
|
-
deny_no_comment_structured: Kommentare für strukturierten Inhalt nicht erlaubt
|
110
|
-
references:
|
111
|
-
exception_need_id: id benötigt um Verweise zu löschen
|
112
|
-
rules:
|
113
|
-
search_userprefcards: "Einstellungs-Karte für User: %{name}"
|
114
|
-
stages:
|
115
|
-
exception_no_override_act: no not allowed to override current act
|
116
|
-
tracked_attributes:
|
117
|
-
error_unknown_type: "%{type} ist kein bekannter Typ."
|
118
|
-
trash:
|
119
|
-
error_system_card: "%{name} ist eine Systemkarte. (%{codename})"
|
120
|
-
error_indestructible: "%{name} ist eine unzerstörbare Regel"
|
121
|
-
error_user_edits: "Wurde bearbeitet mit %{name}s Account.\nLöschen würde den Verlauf durcheinander bringen."
|
122
|
-
error_cant_delete_child: "kann %{child_name} nicht löschen: %{message}"
|
123
|
-
exception_almost_deleted: Die aktuelle Datei wurde nur knapp entfernt
|
124
|
-
type:
|
125
|
-
error_cant_change_errors: "von %{name} kann nicht geändert werden; Fehler beim Erstellen von %{type_id}: %{error_messages}"
|
126
|
-
error_no_such_type: Typ existiert nicht
|
127
|
-
error_hard_templated: kann nicht geändert werden da %{name} festgelegt ist auf %{type_name}
|
128
|
-
utils:
|
129
|
-
exception_almost_deleted: Narrowly averted deleting current file
|
130
|
-
set_pattern:
|
131
|
-
:01_all:
|
132
|
-
label_set_all_cards: Alle Karten
|
133
|
-
label_setfollow_all_cards: alles
|
134
|
-
:02_all_plus:
|
135
|
-
label_set_plus_cards: Alle "+" Karten
|
136
|
-
label_setfollow_plus_cards: alle "+" Karten
|
137
|
-
:03_type:
|
138
|
-
label_set_type_cards: Alle "%{name}" Karten
|
139
|
-
label_setfollow_type_cards: all "%{name}s"
|
140
|
-
:04_star:
|
141
|
-
label_set_star_cards: Alle "*" Karten
|
142
|
-
label_setfollow_star_cards: alle "*" Karten
|
143
|
-
:05_rstar:
|
144
|
-
label_set_rstar_cards: Alle "+*" Karten
|
145
|
-
label_setfollow_rstar_cards: alle "+*" Karten
|
146
|
-
:06_right:
|
147
|
-
label_set_right_cards: Alle "+%{name}" Karten
|
148
|
-
label_setfollow_right_cards: alle "+%{name}s"
|
149
|
-
:07_type_plus_right:
|
150
|
-
label_set_typeplusright_cards: Alle "+%{right}" Karten an "%{type}" Karten
|
151
|
-
label_setfollow_typeplusright_cards: alle "+%{right}" an "%{type}s"
|
152
|
-
:08_self:
|
153
|
-
label_set_self_card: Die Karte "%{name}"
|
154
|
-
:history:
|
155
|
-
set:
|
156
|
-
all:
|
157
|
-
content_history:
|
158
|
-
error_not_latest_revision: Änderungen basieren nicht auf letzter Version
|
159
|
-
history:
|
160
|
-
time_ago: "vor %{elapsed__time_in_words}"
|
161
|
-
current: Aktuelle Fassung
|
162
|
-
added: Hinzugefügt
|
163
|
-
deleted: Gelöscht
|
164
|
-
save_as_current: Als aktuelle Fassung speichern
|
165
|
-
show_changes: Zeige Änderungen
|
166
|
-
hide_changes: Verstecke Änderungen
|
167
|
-
:basic_formats:
|
168
|
-
set:
|
169
|
-
all:
|
170
|
-
base:
|
171
|
-
too_deep: Man, you're too deep. (Zu viele Level von Nester auf einmal)
|
172
|
-
:basic_types:
|
173
|
-
set:
|
174
|
-
abstract:
|
175
|
-
code_file:
|
176
|
-
exception_not_set_path: "not a set path: %{path}"
|
177
|
-
content_in_file: Inhalt is in einer Datei gespeichert und kann nicht verändert werden.
|
178
|
-
all:
|
179
|
-
all_css:
|
180
|
-
comment_style_card: Style-Karte
|
181
|
-
comment_missing_style_card: MISSING Style-Karte
|
182
|
-
file:
|
183
|
-
file_not_supported: File rendering of this card not yet supported
|
184
|
-
type:
|
185
|
-
pointer:
|
186
|
-
label_select: Auswählen
|
187
|
-
#description: Beschreibung
|
188
|
-
comment_style_group: STYLE GROUP
|
189
|
-
search_opt_names_ptr: option names for pointer
|
190
|
-
json:
|
191
|
-
invalid_json: invalid json
|
192
|
-
:bootstrap:
|
193
|
-
set:
|
194
|
-
type:
|
195
|
-
customized_bootswatch_skin:
|
196
|
-
not_valid_theme: kein gültiges Thema %{theme_name}
|
197
|
-
cannot_source_theme: Quelle für das Thema kann nicht gefunden werden %{theme_name}
|
198
|
-
:carrierwave:
|
199
|
-
set:
|
200
|
-
abstract:
|
201
|
-
attachment:
|
202
|
-
url_is_missing: URL fehlt
|
203
|
-
is_missing: fehlt
|
204
|
-
storage_type:
|
205
|
-
mod_argument_needed_to_save: mod Argument benötigt, um die Karte als codiert zu speichern
|
206
|
-
codename_needed_for_storage: codename für den codierten Speichertyp erforderlich
|
207
|
-
unknown_storage_type: unbekannter Speichertyp %{new_storage_type}
|
208
|
-
moving_files_is_not_supported: das Verschieben von Dateien aus der Cloud an anderer Stelle wird nicht unterstützt
|
209
|
-
#:03_machines: # No language-specific items known to be present in Ruby files
|
210
|
-
:settings:
|
211
|
-
lib:
|
212
|
-
card:
|
213
|
-
setting:
|
214
|
-
templating: Templating
|
215
|
-
permission: Berechtigungen
|
216
|
-
webpage: Webseite
|
217
|
-
pointer: Zeiger
|
218
|
-
editing_cue: Bearbeitungshinweise
|
219
|
-
event: Ereignisse
|
220
|
-
other: Anderes
|
221
|
-
config: Konfiguration
|
222
|
-
set:
|
223
|
-
abstract:
|
224
|
-
permission:
|
225
|
-
search_roles_by_name: Rollen nach Name
|
226
|
-
use_lefts_rule: use left's %{tag} rule
|
227
|
-
groups: Gruppen
|
228
|
-
individuals: Individuals
|
229
|
-
inherit_links: Inherit ( %{links} )
|
230
|
-
inherit: Inherit
|
231
|
-
inherit_from_left: Inherit from left card
|
232
|
-
type:
|
233
|
-
setting:
|
234
|
-
search_all_setting: Alle Einstellungs-Karten
|
235
|
-
:email:
|
236
|
-
set:
|
237
|
-
all:
|
238
|
-
follow:
|
239
|
-
emails_stop: sende keine weiteren E-Mails zu Änderungen von %{cardlabel}
|
240
|
-
emails_send: sende E-Mails zu Änderungen von %{cardlabel}
|
241
|
-
unfollow: nicht folgen
|
242
|
-
follow: folgen
|
243
|
-
notify:
|
244
|
-
follow_included: follow cards included by %{cardname}
|
245
|
-
followed_card: verfolgte Karte
|
246
|
-
follower: follower
|
247
|
-
new: neu
|
248
|
-
deleted: gelöscht
|
249
|
-
update_changes: "\nDieses Update beinhaltet folgende Änderungen:%{changes}"
|
250
|
-
right:
|
251
|
-
follow:
|
252
|
-
more_options: mehr Optionen
|
253
|
-
heading_get_notified: Get notified about changes
|
254
|
-
following:
|
255
|
-
no_preference: No following preference
|
256
|
-
self:
|
257
|
-
always:
|
258
|
-
following: Following
|
259
|
-
follow: follow
|
260
|
-
created:
|
261
|
-
following_created: Folge von dir erstellten Inhalten
|
262
|
-
follow_if_created: folge wenn von mir erstellt
|
263
|
-
thing_created: "%{label} von mir erstellt"
|
264
|
-
edited:
|
265
|
-
following_edited: Folge von dir geänderten Inhalten
|
266
|
-
follow_if_edited: folge wenn von mir geändert
|
267
|
-
thing_edited: "%{label} von mir geändert"
|
268
|
-
follow_defaults:
|
269
|
-
confirm_update_all_heading: Are you sure you want to change the default follow rules?
|
270
|
-
confirm_update_all_text: You may choose to update all existing users. This may take a while.
|
271
|
-
submit_update: Speichern und alle User aktualisieren
|
272
|
-
updating: Wird aktualisiert
|
273
|
-
submit: Speichern
|
274
|
-
never:
|
275
|
-
ignoring: Ignoring
|
276
|
-
ignore: ignoriere
|
277
|
-
type_plus_right:
|
278
|
-
user:
|
279
|
-
follow:
|
280
|
-
problems_card: Probleme mit %{cardname}
|
281
|
-
sign_in: anmelden
|
282
|
-
please_sign_in: Bitte %{sign_in}
|
283
|
-
:standard:
|
284
|
-
set:
|
285
|
-
all:
|
286
|
-
comment:
|
287
|
-
author_not_signed_in: "%{comment_author} (Nicht angemeldet)"
|
288
|
-
anonymous: Anonym
|
289
|
-
my_name_is: "<label>Mein Name ist:</label> %{author_field}"
|
290
|
-
comment: Kommentieren
|
291
|
-
commenting: Kommentieren...
|
292
|
-
error:
|
293
|
-
unsupported_view: Ansicht (%{view}) nicht unterstützt für %{cardname}
|
294
|
-
not_found_named: Konnte %{cardname} nicht finden.
|
295
|
-
not_found_no_name: die geforderte Karte
|
296
|
-
server_error: "\nWagn Störung! Server Error. Ups, entschuldige bitte.\nTo tell us more and follow the fix,\nadd a support ticket at %{ticket_link}\n"
|
297
|
-
se_hitch: 'Wagn Störung :('
|
298
|
-
se_sorry: Server Error. Yuck, sorry about that.
|
299
|
-
se_ticket: <a href="%{ticket_link}">Erstelle ein Support-Ticket</a> to tell us more and follow the fix.
|
300
|
-
denial: Zugriff verweigert
|
301
|
-
bad_address: "404: Bad Address"
|
302
|
-
too_slow: Timed out! %{showname} hat zu lange zum Laden gebraucht.
|
303
|
-
error_rendering: error rendering
|
304
|
-
error_message: Fehlermeldung (nur für Administratoren sichtbar)
|
305
|
-
add_thing: Füge %{title} hinzu
|
306
|
-
conflict: Konflikt!
|
307
|
-
not_found: Nicht gefunden
|
308
|
-
also_changes: "%{actor_link} hat gleichzeitig Änderungen gemacht."
|
309
|
-
conflict_instruction: Bitte überprüfe den Konflikt unten, behebe ihn oben, und sende erneut.
|
310
32
|
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
content:
|
318
|
-
action_verb_added: hinzugefügt
|
319
|
-
action_verb_deleted: gelöscht
|
320
|
-
action_verb_edited: geändert
|
321
|
-
updated_how_when_who: "%{action_verb} vor %{elapsed_time_in_words} von %{who}"
|
322
|
-
editing:
|
323
|
-
new_type: Neue Karte vom Typ %{type_name}
|
324
|
-
new: Neu
|
325
|
-
confirm_rename: Bist du sicher, dass du %{cardname} umbennen möchtest?
|
326
|
-
alter_related:
|
327
|
-
one: ändere automatisch 1 verwandten Namen.
|
328
|
-
other: ändere automatisch %{count} verwandte Namen.
|
329
|
-
affect_refs:
|
330
|
-
one: betrifft mindestens 1 Verweis zu "%{cardname}"
|
331
|
-
other: betrifft mindestens %{count} Verweise zu "%{cardname}"
|
332
|
-
update_ignore: Du kannst die Verweise hierher <em>aktualisieren oder ignorieren</em>.
|
333
|
-
change_will: Diese Änderung wird...
|
334
|
-
rename_update: Umbenennen und aktualisieren
|
335
|
-
renaming: Wird umbenannt
|
336
|
-
rename: Umbenennen
|
337
|
-
error:
|
338
|
-
problems_name: Probleme mit %{cardname}
|
339
|
-
please: Bitte
|
340
|
-
sign_in: anmelden
|
341
|
-
or: oder
|
342
|
-
sign_up: registrieren
|
343
|
-
read_only: Wir sind im Moment im Nur-Lese-Modus. Versuche es später noch einmal.
|
344
|
-
sorry: Sorry!
|
345
|
-
need_permission_task: Sie habe nicht die Berechtigung, %{task}.
|
346
|
-
to_do_that: das zu tun
|
347
|
-
denied_task: dies zu %{denied_task}
|
348
|
-
form:
|
349
|
-
unsupported_action_class: "unsupported card_form action class: %{actionclass}"
|
350
|
-
submit: Speichern
|
351
|
-
submitting: Wird gespeichert
|
352
|
-
cancel: Abbrechen
|
353
|
-
menu:
|
354
|
-
edit: bearbeiten
|
355
|
-
discuss: diskutieren
|
356
|
-
page: Seite
|
357
|
-
rules: regeln
|
358
|
-
account: Account
|
359
|
-
modal:
|
360
|
-
close: Schliessen
|
361
|
-
toolbar:
|
362
|
-
account: Account
|
363
|
-
activity: Aktivität
|
364
|
-
all: Alle
|
365
|
-
autosaved_draft: automatisch gespeicherter Entwurf
|
366
|
-
by_group: nach Kategorie
|
367
|
-
by_name: nach Name
|
368
|
-
cancel: abbrechen
|
369
|
-
card_delete_confirm: Bist du sicher, dass du %{cardname}? löschen möchtest?
|
370
|
-
card_deleted: "%{cardname} gelöscht"
|
371
|
-
children: Kinder
|
372
|
-
common: häufig gebraucht
|
373
|
-
content: Inhalt
|
374
|
-
created: erstellt
|
375
|
-
delete: gelöscht
|
376
|
-
details: Details
|
377
|
-
discuss: diskutieren
|
378
|
-
edit: bearbeiten
|
379
|
-
edited: bearbetet
|
380
|
-
editors: Bearbeiter
|
381
|
-
engage: beteiligen
|
382
|
-
follow: folgen
|
383
|
-
history: Verlauf
|
384
|
-
mates: Partner
|
385
|
-
name: Name
|
386
|
-
nests: Nester
|
387
|
-
pin_pin: anheften
|
388
|
-
pin_unpin: losheften
|
389
|
-
recent: kürzlich benutzt
|
390
|
-
references_out: Verweise her
|
391
|
-
references_in: Verweise weg
|
392
|
-
refresh: aktualisieren
|
393
|
-
roles: Rollen
|
394
|
-
rules: Regeln
|
395
|
-
structure: Struktur
|
396
|
-
type: Typ
|
397
|
-
wrapper:
|
398
|
-
close: Schliessen
|
399
|
-
rstar:
|
400
|
-
rules_editor:
|
401
|
-
not_a_rule: keine Regel
|
402
|
-
applies_to: "<label>Betrifft</label> %{card_link}:"
|
403
|
-
no_current_rule: Keine aktuelle Regel
|
404
|
-
cancel: Abbrechen
|
405
|
-
delete_revert_rule: Löschen wird %{card_label} zur %{rule_setting_name}-Regel zurückkehren lassen
|
406
|
-
delete: Löschen
|
407
|
-
set: Menge
|
408
|
-
related_set: Verwandte Menge
|
409
|
-
current: aktuell
|
410
|
-
delete_narrower:
|
411
|
-
one: Diese Regel ist wirkungslos für diese Karte solange die nicht die engere Regel für %{rules_sentence} löschst.
|
412
|
-
other: Diese Regel ist wirkungslos für diese Karte solange die nicht die engeren Regeln für %{rules_sentence} löschst.
|
413
|
-
submit: Speichern
|
414
|
-
self:
|
415
|
-
head:
|
416
|
-
edit_page: Ändere diese Seite!
|
417
|
-
recent:
|
418
|
-
recent_changes: Letzte Änderungen
|
419
|
-
search:
|
420
|
-
results_for: "Suchergebnis für: %{keyword}"
|
421
|
-
search_goto_items: "Gehe zu Ergebnis für Ausdruck: %{term}" # TODO
|
422
|
-
stats:
|
423
|
-
stat: Stat
|
424
|
-
value: Value
|
425
|
-
action: Aktion
|
426
|
-
cards: Karten
|
427
|
-
trashed_cards: Karten im Papierkorb
|
428
|
-
delete_all: Papierkorb leeren
|
429
|
-
actions: actions
|
430
|
-
delete_old: delete old
|
431
|
-
references: Verweise
|
432
|
-
repair_all: alle reparieren
|
433
|
-
view_cache: view cache
|
434
|
-
clear_view_cache: clear view cache
|
435
|
-
memory_now: memory now
|
436
|
-
clear_cache: clear cache
|
437
|
-
# memory previous
|
438
|
-
memory_prev: memory prev
|
439
|
-
# memory difference
|
440
|
-
memory_diff: memory diff
|
441
|
-
megabyte_suffix: M
|
442
|
-
type:
|
443
|
-
basic:
|
444
|
-
toc: Inhaltsverzeichnis
|
445
|
-
cardtype:
|
446
|
-
cards_exist: Entschuldigung, diese Karten muss ein Kartentyp bleiben, solange es noch %{cardname}-Karten gibt.
|
447
|
-
add_card: Füge %{cardname} hinzu
|
448
|
-
configure_card: Configuriere %{cardname}
|
449
|
-
error_cant_alter: kann dieseh Typ nicht ändern; es gibt noch %{name}-Karten
|
450
|
-
error_invalid_character_in_cardtype: "die folgenden Zeichen sind nicht erlaubt: %{banned}"
|
451
|
-
number:
|
452
|
-
not_numeric: "'%{content}' ist nicht numerisch"
|
453
|
-
search_type:
|
454
|
-
no_limit_exception: OH NEIN.. kein Limit gesetzt
|
455
|
-
no_content_exception: "Fehler in Karte '%{name}': kann keine Suche mit leerem Inhalt durchführen"
|
456
|
-
no_results: nichts gefunden
|
457
|
-
previous: Zurück
|
458
|
-
next: Weiter
|
459
|
-
set:
|
460
|
-
cant_edit: Cannot currently edit Sets
|
461
|
-
rules: Regeln
|
462
|
-
set: Menge
|
463
|
-
field: Feld
|
464
|
-
common: oft benötigt
|
465
|
-
by_group: nach Kategorie
|
466
|
-
by_name: nach Name
|
467
|
-
recent: zuletzt benutzt
|
468
|
-
toggle:
|
469
|
-
# Warning: unless careful, yes/no get converted to true/false
|
470
|
-
:yes: 'yes'
|
471
|
-
:no: 'no'
|
472
|
-
#:bootstrap: #No known language-specfic messages
|
473
|
-
|
474
|
-
:account:
|
475
|
-
set:
|
476
|
-
right:
|
477
|
-
account:
|
478
|
-
events:
|
479
|
-
sorry_email_reset: Entschuldigung, %{error_msg}. Please check your email for a new password reset link.
|
480
|
-
email:
|
481
|
-
error_invalid_address: ungültige Adresse
|
482
|
-
search_email_duplicate: E-Mail-Duplikat? (%{content})
|
483
|
-
error_not_unique: existiert bereits
|
484
|
-
deny_email_restricted: E-Mail-Adresse ist nur für Administratoren und den Accountinhaber sichtbar
|
485
|
-
password:
|
486
|
-
encrypted: verschlüsselt
|
487
|
-
password_length: mindestens 4 Zeichen
|
488
|
-
salt:
|
489
|
-
private_data: Private data
|
490
|
-
stats:
|
491
|
-
field: Field
|
492
|
-
cache_value: Cache Val
|
493
|
-
db_value: Database Val
|
494
|
-
cache_db_compare: Cache/DB Comparison
|
495
|
-
cached_card: Cached Card Inspect
|
496
|
-
db_card: Database Card Inspect
|
497
|
-
status:
|
498
|
-
deny_not_change_own_account: Du bist nicht berechtigt den Status deines eigenen Accounts zu ändern.
|
499
|
-
api_key:
|
500
|
-
private_data: Private data
|
501
|
-
error_token_not_found: kein Token gefunden
|
502
|
-
error_token_expired: Token abgelaufen
|
503
|
-
error_incorrect_token: Token passt nicht
|
504
|
-
exception_bad_expiration: ungültiger Wert für Ablaufdatum (z.B. '%{example}')
|
505
|
-
self:
|
506
|
-
account_links:
|
507
|
-
sign_up: Registrieren
|
508
|
-
sign_in: Anmelden
|
509
|
-
invite: Einladen
|
510
|
-
sign_out: Abmelden
|
511
|
-
signin:
|
512
|
-
sign_in_title: Anmelden
|
513
|
-
sign_in: Anmelden
|
514
|
-
or_sign_up: '...oder registrieren!'
|
515
|
-
reset_password: PASSWORT ZURÜCKSETZEN
|
516
|
-
forgot_password: Passwort vergessen
|
517
|
-
reset_my_password: Setze mein Passwort zurück
|
518
|
-
check_email: Sie erhalten in Kürze eine E-Mail mit einem Link um ihr Passwort zurück zu setzen.
|
519
|
-
error_unknown_email: Unbekannte E-Mail-Adresse.
|
520
|
-
error_not_active: Entschuldigung, der Account ist nicht aktiviert.
|
521
|
-
error_wrong_password: Falsches Passwort
|
522
|
-
error_blank: fehlt
|
523
|
-
email_missing: E-Mail-Addresse fehlt
|
524
|
-
password_missing: Passwort fehlt
|
525
|
-
error_not_active: nicht aktiviert
|
526
|
-
error_not_recognized: unbekannt
|
527
|
-
type:
|
528
|
-
signup:
|
529
|
-
views:
|
530
|
-
sign_up: Registrieren
|
531
|
-
invite: Einladen
|
532
|
-
missing_account: "ERROR: Signup-Karte ohne Account"
|
533
|
-
send_invite: Sende Einladung
|
534
|
-
first_last_help: üblicherweise Vor- und Nachname
|
535
|
-
signed_up_on: "%{name} hat sich registriert am %{date}"
|
536
|
-
was_signed_up_on: "%{name} wurde registriert am %{date}"
|
537
|
-
send: Senden
|
538
|
-
resend: Wieder senden
|
539
|
-
verification: Eine E-Mail zur Verifikation wurde verschickt.
|
540
|
-
verification_to: Eine E-Mail zur Verifikation wurde gesendet an %{email}.
|
541
|
-
action_verify_email: "%{action} Verifikations-E-Maill"
|
542
|
-
approve_without: Akzeptieren ohne Verifikation
|
543
|
-
deny_delete: Ablehnen und löschen
|
544
|
-
field_manip_abort: keine Feldänderungen während der Aktivierung
|
545
|
-
no_account_abort: kein Account verknüpft mit %{name}
|
546
|
-
illegal_approval_abort: ungültige Genehmigung
|
547
|
-
check_email_reset: Please check your email for a new password reset link.
|
548
|
-
errors_message: Sorry, %{item}. %{message}
|
549
|
-
user:
|
550
|
-
help_first_last: üblicherweise Vor- und Nachname
|
551
|
-
welcome: Willkommen, Decker!
|
552
|
-
get_started: Um loszulegen, erstelle einen Account.
|
553
|
-
email_off: "WARNING: E-Mail-Versand ist deaktiviert. Ändere die Einstellung in %{path} um bei neuen Registrierungen Benachrichtigungen zu senden."
|
554
|
-
set_up: Anlegen
|
555
|
-
setting_up: Lege an
|
556
|
-
:carrierwave:
|
557
|
-
set:
|
558
|
-
abstract:
|
559
|
-
attachment:
|
560
|
-
error_invalid_storage_type: "%{type} is not a valid file storage option"
|
561
|
-
type:
|
562
|
-
file:
|
563
|
-
file_error: Dateifehler
|
564
|
-
download: Download %{title}
|
565
|
-
delete: Löschen
|
566
|
-
add_item: Füge %{attachment_name} hinzu...
|
567
|
-
replace_item: Ersetze %{attachment_name}...
|
568
|
-
###### REVIEW PAUSED HERE
|
569
|
-
:admin:
|
570
|
-
set:
|
571
|
-
self:
|
572
|
-
admin_info:
|
573
|
-
email_off: E-Mail-Versand ist ausgeschaltet. Ändere die Einstellungen in %{path}, damit Benachrichtigungen verschickt werden, wenn sich neue Nutzer registrieren.
|
574
|
-
admin_warn: ADMINISTRATOR WARNUNG
|
575
|
-
captcha_temp: Dein Deck arbeitet mit provisorischen Captcha-Einstellungen. Das ist kein Problem für eine lokale Installation, aber falls du diese Seite online stellst, benötigst Du neue %{recaptcha_link}.
|
576
|
-
captcha_keys: Dein Deck ist so konfiguriert, dass es %{captcha_link} nutzt, aber damit das funktioniert, benötigst Du neue %{recaptcha_link}.
|
577
|
-
recaptcha_keys: Recaptcha-Schlüssel
|
578
|
-
instructions: Anleitungen
|
579
|
-
howto_add_keys: "Neue Recaptcha-Schlüssel hinzufügen:"
|
580
|
-
howto_register: Registriere deine Domain bei %{recaptcha_link}
|
581
|
-
howto_add: Füge deine Schlüssel zu %{recaptcha_settings} hinzu
|
582
|
-
howto_turn_off: 'Captcha ausschalten:'
|
583
|
-
howto_go: Gehe zu %{captcha_card}
|
584
|
-
howto_update: Ändere alle *captcha-Regeln zu "no".
|
585
|
-
:pointer:
|
586
|
-
set:
|
587
|
-
type:
|
588
|
-
mirrored_list:
|
589
|
-
cardtype_right: benötigt einen Kartentypnamen als rechten Teil
|
590
|
-
conflict_item_type: name conflicts with list items' type; delete content first
|
591
|
-
only_type_allowed: "%{cardname} has wrong cardtype; only cards of type %{cardtype} are allowed"
|
592
|
-
mirror_listed:
|
593
|
-
cardtype_right: benötigt einen Kartentypnamen als rechten Teil
|
594
|
-
only_type: "%{cardname} hat falschen Kartentyp; nur Karten mit Typ %{cardtype} sind erlaubt"
|
33
|
+
lib_error_rendering: "Fehler beim Rendern: %{cardname} (%{view} Ansicht)"
|
34
|
+
lib_exception_for_card: "für Karte %{cardname}: %{message}"
|
35
|
+
lib_exception_init_without_card: Format initialisiert ohne Karte
|
36
|
+
lib_exception_not_implemented: "%{func} nicht implementiert"
|
37
|
+
lib_exception_unknown_codename: "unbekannter Codename: %{codename}"
|
38
|
+
lib_no_cardname: unbekannte Karte
|
data/config/locales/es.yml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
#
|
5
5
|
# key name prefixes:
|
6
6
|
# 'exception_' begins key of text to be used in a raised exception
|
7
|
-
# 'error_' begins key of text to be added to an error list (
|
7
|
+
# 'error_' begins key of text to be added to an error list (usually)
|
8
8
|
# 'search_' begins key of text to be used in CQL search comment
|
9
9
|
# 'deny_' begins key of text to be used in denying action due to permissions
|
10
10
|
# (Not all key names begin with a prefix. In the absence of a prefix,
|
@@ -15,7 +15,7 @@
|
|
15
15
|
# translation lookup occurs, relative to the root of the 'card' gem,
|
16
16
|
# with slashes replaced by dots and the final .rb extension omitted.
|
17
17
|
# So, a scope might be
|
18
|
-
# 'lib.card.format.render' or 'mod.01_core.set.all.
|
18
|
+
# 'lib.card.format.render' or 'mod.01_core.set.all.permissions'
|
19
19
|
# Although there isn't a common prefix for all scopes, scopes begin
|
20
20
|
# with either 'lib.card' or 'mod.0d_modname' and these patterns are
|
21
21
|
# sufficiently distinctive that key collisions with translations
|
@@ -590,7 +590,6 @@ es:
|
|
590
590
|
set:
|
591
591
|
mirrored_list:
|
592
592
|
cardtype_right: debe tener un nombre de cardtype como parte derecha
|
593
|
-
conflict_item_type: el nombre entra en conflicto con elementos de la lista' tipo; eliminar contenido primero
|
594
593
|
only_type_allowed: "%{cardname} tiene un tipo de tarjeta incorrecto; solo cartas de tipo %{cardtype} están permitidos"
|
595
594
|
mirror_list:
|
596
595
|
cardtype_right: debe tener un nombre de tipo de tarjeta como parte derecha
|
@@ -3,7 +3,7 @@
|
|
3
3
|
class RequireEarlierMigrations < ActiveRecord::Migration[4.2]
|
4
4
|
def self.up
|
5
5
|
raise %(
|
6
|
-
Your database is not ready to be migrated to #{
|
6
|
+
Your database is not ready to be migrated to #{Cardio::Version.release}.
|
7
7
|
You will need to do incremental upgrades.
|
8
8
|
Please first install version 1.6.1 and run `rake db:migrate`.
|
9
9
|
Then install version 1.8.0 and run `rake db:migrate`.
|
@@ -3,7 +3,7 @@
|
|
3
3
|
class Require18Migrations < ActiveRecord::Migration[4.2]
|
4
4
|
def self.up
|
5
5
|
raise %(
|
6
|
-
Your database is not ready to be migrated to #{
|
6
|
+
Your database is not ready to be migrated to #{Cardio::Version.release}.
|
7
7
|
Please first install version 1.8.0 and run `rake db:migrate`.
|
8
8
|
|
9
9
|
Sorry about this! We're working to minimize these hassles in the future.
|
@@ -3,7 +3,7 @@
|
|
3
3
|
class Require110Migrations < ActiveRecord::Migration[4.2]
|
4
4
|
def self.up
|
5
5
|
raise %(
|
6
|
-
Your database is not ready to be migrated to #{
|
6
|
+
Your database is not ready to be migrated to #{Cardio::Version.release}.
|
7
7
|
Please first install version 1.10.0 and run `rake db:migrate`.
|
8
8
|
|
9
9
|
Sorry about this! We're working to minimize these hassles in the future.
|
@@ -70,7 +70,6 @@ class AddSharkAndHelpDeskRole < Cardio::Migration::Core
|
|
70
70
|
"*google_analytics_key+*self",
|
71
71
|
"*admin info+*self",
|
72
72
|
"*admin settings+*self",
|
73
|
-
"*google_analytics_key+*self",
|
74
73
|
"*recaptcha settings+*self",
|
75
74
|
"Cardtype+description+*type plus right"].each do |set|
|
76
75
|
delete_card [set, :delete]
|