-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support german, french, and spanish language dialects
- Loading branch information
1 parent
1a2cbeb
commit 945d2b2
Showing
11 changed files
with
11,403 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
cd src/main/resources/assets/securitycraft/lang | ||
|
||
declare -A languages=( | ||
["de"]="at ch" | ||
["es"]="ar cl ec mx uy ve" | ||
["fr"]="ca" | ||
) | ||
|
||
for standard in "${!languages[@]}"; do | ||
declare -a dialects=(${languages[$standard]}) | ||
|
||
for dialect in "${dialects[@]}"; do | ||
cp "${standard}_${standard}.json" "${standard}_${dialect}.json" | ||
done | ||
done |
1,271 changes: 1,271 additions & 0 deletions
1,271
src/main/resources/assets/securitycraft/lang/de_at.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,271 changes: 1,271 additions & 0 deletions
1,271
src/main/resources/assets/securitycraft/lang/de_ch.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_ar.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_cl.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_ec.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_mx.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_uy.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,263 changes: 1,263 additions & 0 deletions
1,263
src/main/resources/assets/securitycraft/lang/es_ve.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,266 changes: 1,266 additions & 0 deletions
1,266
src/main/resources/assets/securitycraft/lang/fr_ca.json
Large diffs are not rendered by default.
Oops, something went wrong.