Skip to content

Commit 29c62bc

Browse files
committed
add i18n
1 parent 21e1797 commit 29c62bc

File tree

19 files changed

+1495
-138
lines changed

19 files changed

+1495
-138
lines changed

.github/workflows/ninja_i18n.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: Ninja i18n action
3+
4+
on: pull_request_target
5+
6+
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings
7+
permissions:
8+
pull-requests: write # Necessary to comment on PRs
9+
issues: read # Necessary to read issue comments
10+
contents: read # Necessary to access the repo content
11+
12+
jobs:
13+
ninja-i18n:
14+
name: Ninja i18n - GitHub Lint Action
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Run Ninja i18n
19+
# @main ensures that the latest version of the action is used
20+
uses: opral/ninja-i18n-action@main
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+

frontend/.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"inlang.vs-code-extension"
4+
]
5+
}

frontend/messages/en.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"$schema": "https://inlang.com/schema/inlang-message-format",
3+
"accomodation_info": "Accomodation info",
4+
"about": "About",
5+
"agenda": "Agenda",
6+
"close": "Close",
7+
"code_of_conduct": "Code of Conduct",
8+
"contact_info": "Contact info",
9+
"cookie_policy": "Cookie policy",
10+
"day": "Day",
11+
"legal": "Legal",
12+
"org_team": "Org team",
13+
"press_kit": "Press kit",
14+
"privacy_policy": "Privacy policy",
15+
"registration": "Registration",
16+
"speakers": "Speakers",
17+
"streaming": "Streaming",
18+
"venue_info": "Venue info"
19+
}

frontend/messages/es.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"$schema": "https://inlang.com/schema/inlang-message-format",
3+
"accomodation_info": "Alojamiento",
4+
"about": "Sobre nosotros",
5+
"agenda": "Agenda",
6+
"close": "Cerrar",
7+
"code_of_conduct": "Código de conducta",
8+
"contact_info": "Contacto",
9+
"cookie_policy": "Política de cookies",
10+
"day": "Día",
11+
"legal": "Aviso legal",
12+
"org_team": "Equipo organizador",
13+
"press_kit": "Kit de prensa",
14+
"privacy_policy": "Política de privacidad",
15+
"registration": "Registro",
16+
"speakers": "Ponentes",
17+
"streaming": "Streaming",
18+
"venue_info": "El lugar"
19+
}

0 commit comments

Comments
 (0)