Skip to content

fix two type translations #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ Also when adding a custom type, it's wise to stay away from any [ISO 369 languag
|`FF`|Fragrance Free|Sin fragancia|Sans parfum|香水なし|Geen parfum|Sem Perfumes|Bez vône|Parfym Fritt|
|`FR`|French|Francés|Français|フランス語|Frans|Francês|Francúzsky|Franska|
|`G`|Gay|Gay|Gai|ゲイ|Homo|Gay|Gay|Gay|
|`GR`|Grapevine|La Viña|Grapevine|グレープバイン|Wijnstok|Grapevine|Grapevine|Grapevine|
|`GR`|Grapevine|La Viña|La Vigne|グレープバイン|Wijnstok|Grapevine|Grapevine|Grapevine|
|`H`|Birthday|Cumpleaños|Anniversaire|バースデー|Verjaardag|Aniversário|Narodeniny|Födelsedag|
|`HE`|Hebrew|Hebreo|Hébreu|ヘブライ語|Hebreeuws|Hebreu|Hebrejské|Hebreiska|
|`HI`|Hindi|Hindi|Hindi|ヒンディー語|Hindi|Hindi|Hindi|Hindi|
Expand Down Expand Up @@ -434,7 +434,7 @@ Also when adding a custom type, it's wise to stay away from any [ISO 369 languag
|`TR`|Tradition Study|Estudio de tradicion|Étude des Traditions|伝統|Traditie Studie|Estudo de Tradições|Tradičné štúdium|Traditionsmöte|
|`TUR`|Turkish|Turco|Turc|トルコ語|Turks|Turco|Turecký|Turkiska|
|`UK`|Ukrainian|Ucraniano|Ukrainien|ウクライナ語|Oekraïens|Ucraniano|Ukrajinské|Ukrainska|
|`W`|Women|Mujer|Femmes|女性|Vrouwen|Mulheres|Ženy|Kvinnomöte|
|`W`|Women|Mujeres|Femmes|女性|Vrouwen|Mulheres|Ženy|Kvinnomöte|
|`X`|Wheelchair Access|Acceso en silla de ruedas|Accès aux fauteuils roulants|車いすアクセス|Toegankelijk voor rolstoelgebruikers|Acesso a Cadeiras de Rodas|Prístup pre vozíčkarov|Handikappanpassat|
|`XB`|Wheelchair-Accessible Bathroom|Baño accesible para sillas de ruedas|Toilettes accessibles aux fauteuils roulants|車いす使用者用トイレ|Rolstoeltoegankelijke badkamer|WC com Acesso a Cadeiras de Rodas|Bezbariérová kúpeľňa|Handikappanpassad WC|
|`XT`|Cross Talk Permitted|Se permite opinar|Conversation croisée permise|クロストーク可能|Cross-sharen toegestaan|Prtilhas Cruzadas Permitidas|Cross Talk povolený|Kommentarer Tilltåtna|
Expand Down
21 changes: 21 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions data/types.json
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
"GR": {
"en": "Grapevine",
"es": "La Viña",
"fr": "Grapevine",
"fr": "La Vigne",
"ja": "グレープバイン",
"nl": "Wijnstok",
"pt": "Grapevine",
Expand Down Expand Up @@ -821,7 +821,7 @@
},
"W": {
"en": "Women",
"es": "Mujer",
"es": "Mujeres",
"fr": "Femmes",
"ja": "女性",
"nl": "Vrouwen",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code4recovery/spec",
"version": "1.1.6",
"version": "1.1.7",
"description": "The goal of the Meeting Guide API is help sync information about AA meetings. It was developed for the Meeting Guide app, but it is non-proprietary and other systems are encouraged to make use of it.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/types.php
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
(object) array(
'en' => 'Grapevine',
'es' => 'La Viña',
'fr' => 'Grapevine',
'fr' => 'La Vigne',
'ja' => 'グレープバイン',
'nl' => 'Wijnstok',
'pt' => 'Grapevine',
Expand Down Expand Up @@ -906,7 +906,7 @@
'W' =>
(object) array(
'en' => 'Women',
'es' => 'Mujer',
'es' => 'Mujeres',
'fr' => 'Femmes',
'ja' => '女性',
'nl' => 'Vrouwen',
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export const types = {
GR: {
en: "Grapevine",
es: "La Viña",
fr: "Grapevine",
fr: "La Vigne",
ja: "グレープバイン",
nl: "Wijnstok",
pt: "Grapevine",
Expand Down Expand Up @@ -821,7 +821,7 @@ export const types = {
},
W: {
en: "Women",
es: "Mujer",
es: "Mujeres",
fr: "Femmes",
ja: "女性",
nl: "Vrouwen",
Expand Down