Skip to content

Commit efcc5d7

Browse files
committed
2 parents 51074af + 03de3f7 commit efcc5d7

File tree

12 files changed

+273
-330
lines changed

12 files changed

+273
-330
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: npm run-script build --no-progress
4242

4343
- name: Upload ASF-WebConfigGenerator
44-
uses: actions/upload-artifact@v4.3.5
44+
uses: actions/upload-artifact@v4.4.0
4545
with:
4646
if-no-files-found: error
4747
name: ${{ matrix.os }}_ASF-WebConfigGenerator

.github/workflows/crowdin-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
show-progress: false
2020

2121
- name: Upload latest strings for translation on Crowdin
22-
uses: crowdin/github-action@v2.1.1
22+
uses: crowdin/github-action@v2.1.2
2323
with:
2424
crowdin_branch_name: main
2525
config: '.github/crowdin.yml'

.github/workflows/translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
token: ${{ secrets.ARCHIBOT_GITHUB_TOKEN }}
2222

2323
- name: Download latest translations from Crowdin
24-
uses: crowdin/github-action@v2.1.1
24+
uses: crowdin/github-action@v2.1.2
2525
with:
2626
upload_sources: false
2727
download_translations: true

docs/js/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 207 additions & 318 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
"devDependencies": {
1717
"@babel/core": "7.25.2",
1818
"@babel/plugin-syntax-dynamic-import": "7.8.3",
19-
"@babel/preset-env": "7.25.3",
19+
"@babel/preset-env": "7.25.4",
2020
"babel-loader": "8.3.0",
2121
"css-loader": "6.11.0",
2222
"file-loader": "6.2.0",
2323
"html-webpack-plugin": "5.6.0",
24-
"sass": "1.77.8",
24+
"sass": "1.78.0",
2525
"sass-loader": "12.6.0",
2626
"style-loader": "3.3.4",
2727
"url-loader": "4.1.1",
2828
"vue-loader": "15.11.1",
2929
"vue-style-loader": "4.1.3",
3030
"vue-template-compiler": "2.7.16",
31-
"webpack": "5.93.0",
31+
"webpack": "5.94.0",
3232
"webpack-cli": "4.10.0",
3333
"webpack-dev-server": "4.15.2"
3434
},

src/locale/ca-ES.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

src/locale/cs-CZ.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,16 @@
2222
"schema.security": "Zabezpečení",
2323
"schema.trading": "Obchodování",
2424
"schema.updates": "Aktualizace",
25-
"static.add": "Přidat"
25+
"static.add": "Přidat",
26+
"validators.required": "Pole je povinné!",
27+
"validators.number": "Neplatné číslo!",
28+
"validators.number-big": "Číslo je příliš velké!",
29+
"validators.number-small": "Číslo je příliš malé!",
30+
"validators.string": "Není platný text!",
31+
"validators.string-big": "Text je příliš dlouhý!",
32+
"validators.string-small": "Text je příliš krátký!",
33+
"validators.steamid": "Neplatné SteamID!",
34+
"validators.clan": "Neplatné ClanID!",
35+
"validators.url": "Neplatná URL!",
36+
"validators.uuid": "Neplatné UUID!"
2637
}

src/locale/de-DE.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,16 @@
2222
"schema.security": "Sicherheit",
2323
"schema.trading": "Handel",
2424
"schema.updates": "Aktualisierungen",
25-
"static.add": "Hinzufügen"
25+
"static.add": "Hinzufügen",
26+
"validators.required": "Feld erforderlich!",
27+
"validators.number": "Keine gültige Zahl!",
28+
"validators.number-big": "Zahl zu groß!",
29+
"validators.number-small": "Zahl zu klein!",
30+
"validators.string": "Kein gültiger Text!",
31+
"validators.string-big": "Text zu lang!",
32+
"validators.string-small": "Text zu kurz!",
33+
"validators.steamid": "Keine gültige SteamID!",
34+
"validators.clan": "Keine gültige ClanID!",
35+
"validators.url": "Kein gültiger URL!",
36+
"validators.uuid": "Geine gültige UUID!"
2637
}

src/locale/fr-FR.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,14 @@
2222
"schema.security": "Sécurité",
2323
"schema.trading": "Échange",
2424
"schema.updates": "Mises à jour",
25-
"static.add": "Ajouter"
25+
"static.add": "Ajouter",
26+
"validators.required": "Champ obligatoire !",
27+
"validators.number": "Nombre invalide !",
28+
"validators.number-big": "Nombre trop grand !",
29+
"validators.number-small": "Nombre trop petit !",
30+
"validators.string": "Le texte n'est pas valide !",
31+
"validators.string-big": "Texte trop long !",
32+
"validators.string-small": "Texte trop court !",
33+
"validators.steamid": "SteamID invalide !",
34+
"validators.url": "Ceci n'est pas une adresse URL valide !"
2635
}

0 commit comments

Comments
 (0)