Skip to content

Commit 9f2c8c0

Browse files
authored
release: 2025-03-05 (#1471)
<!--- Please provide a general summary of your changes in the title above --> # Pull Request type <!-- Please try to limit your pull request to one type; submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no API changes) - [ ] Build-related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior? <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> Issue Number: N/A ## What is the new behavior? Changes pushed to Production - change nation wide alert text and add pop-up with links when clicked - change search results alert text, add Bell emoji - Add “Legal information and referrals” under “Legal” category. - Add “Mental health information and referrals” under “Mental Health” category. - “switch on” (unhide) the following existing tags on the front-end (& DB): -- “Fertility and family planning services” -- “Medical information and referrals” - Update "Claimed" & "Unclaimed" badges to be a link labeled "Coming Soon" clicking opens a pop-up - Remove LCR from signup pop-up, update tagline on sign-up pop-up - Add "Financial assistance available" under the "Cost" attribute section ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this does introduce a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR, such as screenshots of how the component looks before and after the change. -->
2 parents e2f0440 + b51af3c commit 9f2c8c0

38 files changed

+614
-17
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @JoeKarow
1+
* @trigal2012

.github/autoapprove-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
requesters:
3-
joekarow:
3+
trigal2012:
44
labels:
55
- automerge

apps/app/public/locales/af/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individueel</button>\n<button data-option='provider'>Professioneel/Verskaffer</button>\n<button data-option='lcr'>Plaaslik Gemeenskapresensent</button>\n</group>",
331331
"<loginLink>Het u reeds 'n rekening?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Watter tipe rekening wil jy skep?</title3>",
335+
"<group>\n<button data-option='individual'>Individueel</button>\n<button data-option='provider'>Professioneel/Verskaffer</button>\n</group>",
336+
"<loginLink>Het u reeds 'n rekening?</loginLink>"
337+
],
333338
"name-use-any": "Gebruik watter naam jy ook al gemaklik is.",
334339
"name_alias": "Naam of alias",
335340
"name_full": "Volle naam",

apps/app/public/locales/ar/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,11 @@
334334
"<group>\n<button data-option='individual'>فردي</button>\n<button data-option='provider'>المحترف / المزود</button>\n<button data-option='lcr'>مستعرض المجتمع المحلي</button>\n</group>",
335335
"<loginLink>لديك حساب من قبل؟</loginLink>"
336336
],
337+
"modal-body-temp": [
338+
"<title3>ما نوع الحساب الذي ترغب في إنشاءه؟</title3>",
339+
"<group>\n<button data-option='individual'>فردي</button>\n<button data-option='provider'>المحترف / المزود</button>\n</group>",
340+
"<loginLink>لديك حساب من قبل؟</loginLink>"
341+
],
337342
"name-use-any": "استخدم أي اسم أنت مرتاحاً له.",
338343
"name_alias": "الاسم أو الاسم المستعار",
339344
"name_full": "الاسم الكامل",

apps/app/public/locales/de-DE/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individuelle</button>\n<button data-option='provider'>Professional/Anbieter</button>\n<button data-option='lcr'>Lokale Community Reviewer</button>\n</group>",
331331
"<loginLink>Haben Sie bereits ein Konto?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Welchen Kontotyp möchten Sie erstellen?</title3>",
335+
"<group>\n<button data-option='individual'>Individuelle</button>\n<button data-option='provider'>Professional/Anbieter</button>\n</group>",
336+
"<loginLink>Haben Sie bereits ein Konto?</loginLink>"
337+
],
333338
"name-use-any": "Benutzen Sie den Namen, mit dem Sie sich wohl fühlen.",
334339
"name_alias": "Name oder Alias",
335340
"name_full": "Voller Name",

apps/app/public/locales/en/attribute.json

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"cost-accepts-insurance_withUrl": "This service accepts insurance. <Link href=\"{{url}}\">Click here to visit the organization's page</Link> for more information on cost, financial assistance options and insurance coverage details.",
7474
"cost-fees": "Incurs a cost",
7575
"cost-free": "Free of cost",
76+
"cost-financial-assistance-available": "Financial assistance available",
7677
"cost-sliding-scale": "Costs determined on a sliding scale",
7778
"cost-sliding-scale_default": "This service has sliding scale fees. The amount you pay for services is adjusted according to your income level. Contact the organization directly for more information.",
7879
"cost-sliding-scale_withUrl": "This service has sliding scale fees. The amount you pay for services is adjusted according to your income level. <Link href=\"{{url}}\">Click here to visit the organization's page for more information.</Link>"

apps/app/public/locales/en/common.json

+33-1
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,33 @@
258258
"questions": "Questions?",
259259
"quick-promo-body": "<textUtility1>💚 Save and share personalized resource lists</textUtility1>\n<textUtility1>💬 Leave public rating/reviews on organizations</textUtility1>\n<textUtility1>🏠 Suggest organizations in your area</textUtility1>\n<textUtility1>🔗 Claim your organization’s profile page (Coming soon!)</textUtility1>",
260260
"quick-promo-heading": "<emojiLg>🌈</emojiLg>\n<title2>You need to log in to do that.</title2>\n<textDarkGray>With a free InReach account you can unlock additional features:</textDarkGray>",
261+
"recommended-links": {
262+
"emoji": "🌈",
263+
"title": "Recommended Links",
264+
"body": "Find more information about your rights.",
265+
"buttons": {
266+
"btn-1": {
267+
"text": "Anti-Trans Risk Map (Erin In The Morning)",
268+
"link": "https://www.erininthemorning.com/p/post-election-2024-anti-trans-risk"
269+
},
270+
"btn-2": {
271+
"text": "ID Documents Center (A4TE)",
272+
"link": "https://transequality.org/documents"
273+
},
274+
"btn-3": {
275+
"text": "LGBTQ+ Immigrants' Rights (Immigration Equality)",
276+
"link": "https://immigrationequality.org/legal/legal-help/resources/know-your-rights/"
277+
},
278+
"btn-4": {
279+
"text": "Asylum Resources (CWS)",
280+
"link": "https://asylumandborderresources.org/"
281+
},
282+
"btn-5": {
283+
"text": "Immigrants' Rights (ACLU)",
284+
"link": "https://www.aclu.org/know-your-rights/immigrants-rights"
285+
}
286+
}
287+
},
261288
"remote-services": "Services available remotely",
262289
"remote-services-page-title": "Remote services",
263290
"reset-password": "Reset your password",
@@ -317,7 +344,7 @@
317344
"show-less": "Show less",
318345
"show-more": "Show more",
319346
"sign-up": {
320-
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first tech platform matching LGBTQ+ people facing persecution or discrimination with safe, verified resources.</textDarkGray>\n</group>",
347+
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first open source verified LGBTQ+ resource platform.</textDarkGray>\n</group>",
321348
"lcr-error1": "Unfortunately, you do not meet the current eligibility requirements to be a Local Community Reviewer.\n<Switch>Click here to create a standard account.</Switch>",
322349
"lcr-error2": "You must read & review the <Link><strong>Local Community Reviewer</strong></Link> page.",
323350
"lcr-screen1": "Please select all that apply",
@@ -336,6 +363,11 @@
336363
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n<button data-option='lcr'>Local Community Reviewer</button>\n</group>",
337364
"<loginLink>Already have an account?</loginLink>"
338365
],
366+
"modal-body-temp": [
367+
"<title3>What type of account would you like to create?</title3>",
368+
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n</group>",
369+
"<loginLink>Already have an account?</loginLink>"
370+
],
339371
"name-use-any": "Use whatever name you're comfortable with.",
340372
"name_alias": "Name or alias",
341373
"name_full": "Full name",

apps/app/public/locales/en/services.json

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
"immigration-detention": "Immigration detention",
9393
"legal-advice": "Legal advice",
9494
"legal-hotlines": "Legal hotlines",
95+
"legal-info-referrals": "Legal information and referrals",
9596
"name-and-gender-change": "Name and gender marker change",
9697
"refugee-claim": "Refugee claim",
9798
"residency": "Residency",
@@ -128,6 +129,7 @@
128129
"bipoc-support-groups": "BIPOC support groups",
129130
"family-support-groups": "Family support groups",
130131
"hotlines": "Hotlines",
132+
"mental-health-info-referrals": "Mental health information and referrals",
131133
"private-therapy-and-counseling": "Private therapy and counseling",
132134
"psychological-evaluations-for-asylum-claim": "Psychological evaluations for asylum claim",
133135
"psychological-evaluations-for-refugee-claim": "Psychological evaluations for refugee claim",

apps/app/public/locales/es/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Profesional/Proveedor</button>\n<button data-option='lcr'>Revisor de Comunidad Local</button>\n</group>",
331331
"<loginLink>¿Ya tienes una cuenta?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>¿Qué tipo de cuenta quieres crear?</title3>",
335+
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Profesional/Proveedor</button>\n</group>",
336+
"<loginLink>¿Ya tienes una cuenta?</loginLink>"
337+
],
333338
"name-use-any": "Usa el nombre con el que te sientas cómodo.",
334339
"name_alias": "Nombre o alias",
335340
"name_full": "Nombre completo",

apps/app/public/locales/fa/common.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@
311311
"show-less": "نمایش کمتر",
312312
"show-more": "بیشتر نشان بده",
313313
"sign-up": {
314-
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first tech platform matching LGBTQ+ people facing persecution or discrimination with safe, verified resources.</textDarkGray>\n</group>",
314+
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first tech platform matching <strong>LGBTQ+</strong> resource platform.</textDarkGray>\n</group>",
315315
"lcr-error1": "متأسفانه، شما شرایط فعلی واجد شرایط بودن برای بازبینی انجمن محلی را ندارید.\n<Switch>برای ایجاد یک حساب استاندارد اینجا را کلیک کنید.</Switch>",
316316
"lcr-error2": "شما باید صفحه <Link><strong>انجمن محلی</strong></Link> را بخوانید و بررسی کنید.",
317317
"lcr-screen1": "لطفا همه موارد اعمال شده را انتخاب کنید",
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n<button data-option='lcr'>Local Community Reviewer</button>\n</group>",
331331
"<loginLink>از قبل حساب کاربری دارید؟</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>چه نوع حساب کاربری می خواهید ایجاد کنید؟</title3>",
335+
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n</group>",
336+
"<loginLink>از قبل حساب کاربری دارید؟</loginLink>"
337+
],
333338
"name-use-any": "از هر اسمي که باهاش راحت هستي استفاده کن",
334339
"name_alias": "نام یا نام مستعار",
335340
"name_full": "نام کامل",

apps/app/public/locales/fr/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individuel</button>\n<button data-option='provider'>Professionnel/Prestataire</button>\n<button data-option='lcr'>Critique dans la communauté locale</button>\n</group>",
331331
"<loginLink>Vous avez déjà un compte ?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Quel type de compte voulez-vous créer ?</title3>",
335+
"<group>\n<button data-option='individual'>Individuel</button>\n<button data-option='provider'>Professionnel/Prestataire</button>\n</group>",
336+
"<loginLink>Vous avez déjà un compte ?</loginLink>"
337+
],
333338
"name-use-any": "Utilisez le nom qui vous convient le mieux.",
334339
"name_alias": "Nom ou alias",
335340
"name_full": "Nom complet",

apps/app/public/locales/hi/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n<button data-option='lcr'>Local Community Reviewer</button>\n</group>",
331331
"<loginLink>क्या आपके पास पहले से ही एक अकाउंट है?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>आप किस प्रकार का अकाउंट बनाना चाहेंगे?</title3>",
335+
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n</group>",
336+
"<loginLink>क्या आपके पास पहले से ही एक अकाउंट है?</loginLink>"
337+
],
333338
"name-use-any": "जिस भी नाम के साथ आप सहज हों उसका उपयोग करें।",
334339
"name_alias": "नाम या उपनाम",
335340
"name_full": "पूरा नाम",

apps/app/public/locales/ht/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Endividyèl</button>\n<button data-option='provider'>Pwofesyonèl/Founisè</button>\n<button data-option='lcr'>Lokal Evalè Kominote</button>\n</group>",
331331
"<loginLink>Deja gen yon kont?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Ki kalite kont ou ta renmen kreye?</title3>",
335+
"<group>\n<button data-option='individual'>Endividyèl</button>\n<button data-option='provider'>Pwofesyonèl/Founisè</button>\n</group>",
336+
"<loginLink>Deja gen yon kont?</loginLink>"
337+
],
333338
"name-use-any": "Sèvi ak tou sa non ou konfòtab avèk li.",
334339
"name_alias": "Non oswa alyas",
335340
"name_full": "Non konplè",

apps/app/public/locales/ja/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,11 @@
329329
"<group>\n<button data-option='individual'>個人</button>\n<button data-option='provider'>専門家/提供者</button>\n<button data-option='lcr'>地域コミュニティレビュアー</button>\n</group>",
330330
"<loginLink>すでにアカウントをお持ちですか?</loginLink>"
331331
],
332+
"modal-body-temp": [
333+
"<title3>どのタイプのアカウントを作成しますか?</title3>",
334+
"<group>\n<button data-option='individual'>個人</button>\n<button data-option='provider'>専門家/提供者</button>\n</group>",
335+
"<loginLink>すでにアカウントをお持ちですか?</loginLink>"
336+
],
332337
"name-use-any": "自身にとって快適な名前をお使いください。",
333338
"name_alias": "名前または別名",
334339
"name_full": "フルネーム",

apps/app/public/locales/ko/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,11 @@
329329
"<group>\n<button data-option='individual'>개인</button>\n<button data-option='provider'>전문가/제공자</button>\n<button data-option='lcr'>지역 사회 검토자</button>\n</group>",
330330
"<loginLink>계정 이미 있습니다.</loginLink>"
331331
],
332+
"modal-body-temp": [
333+
"<title3>어떤 계정을 만들고 싶으세요?</title3>",
334+
"<group>\n<button data-option='individual'>개인</button>\n<button data-option='provider'>전문가/제공자</button>\n</group>",
335+
"<loginLink>계정 이미 있습니다.</loginLink>"
336+
],
332337
"name-use-any": "편한 이름을 사용하세요.",
333338
"name_alias": "성함/가명",
334339
"name_full": "성함",

apps/app/public/locales/pl/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,11 @@
332332
"<group>\n<button data-option='individual'>Indywidualny</button>\n<button data-option='provider'>Professional/Provider</button>\n<button data-option='lcr'>Lokalny recenzenta społeczności</button>\n</group>",
333333
"<loginLink>Masz już konto?</loginLink>"
334334
],
335+
"modal-body-temp": [
336+
"<title3>Jaki typ konta chciałbyś założyć?</title3>",
337+
"<group>\n<button data-option='individual'>Indywidualny</button>\n<button data-option='provider'>Professional/Provider</button>\n</group>",
338+
"<loginLink>Masz już konto?</loginLink>"
339+
],
335340
"name-use-any": "Używaj dowolnej nazwy, z którą czujesz się komfortowo.",
336341
"name_alias": "Nazwa lub alias",
337342
"name_full": "Pełne imię i nazwisko",

apps/app/public/locales/ps/common.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@
311311
"show-less": "لږ وښایاست",
312312
"show-more": "نور وښایاست",
313313
"sign-up": {
314-
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first tech platform matching LGBTQ+ people facing persecution or discrimination with safe, verified resources.</textDarkGray>\n</group>",
314+
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Welcome to the world's first tech platform matching <strong>LGBTQ+</strong> resource platform.</textDarkGray>\n</group>",
315315
"lcr-error1": "له بده مرغه، تاسو د محلي ټولنې بیاکتونکي کیدو لپاره د وړتیا اوسني شرایط نه پوره کوئ.\n<Switch>د معیاري حساب جوړولو لپاره دلته کلیک وکړئ.</Switch>",
316316
"lcr-error2": "تاسو باید د <Link><strong>محلي ټولنې بیاکتنه</strong></Link> پاڼه ولولئ او بیاکتنه وکړئ.",
317317
"lcr-screen1": "مهرباني وکړئ ټول هغه څه وټاکئ چې پلي کیږي",
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>\n<button data-option='lcr'>Local Community Reviewer</button>\n</group>",
331331
"<loginLink>دمخه یو حساب لرئ؟</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>تاسو کوم ډول حساب جوړول غواړئ؟</title3>",
335+
"<group>\n<button data-option='individual'>Individual</button>\n<button data-option='provider'>Professional/Provider</button>`\n</group>",
336+
"<loginLink>دمخه یو حساب لرئ؟</loginLink>"
337+
],
333338
"name-use-any": "هر هغه نوم وکاروئ چې تاسو ورسره راحته یاست.",
334339
"name_alias": "نوم یا عرف",
335340
"name_full": "بشپړ نوم",

apps/app/public/locales/pt/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Pessoa</button>\n<button data-option='provider'>Profissional/Pessoa provedora</button>\n<button data-option='lcr'>Pessoa Avaliadora da Comunidade Local</button>\n</group>",
331331
"<loginLink>Já tem uma conta?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Que tipo de conta você gostaria de criar?</title3>",
335+
"<group>\n<button data-option='individual'>Pessoa</button>\n<button data-option='provider'>Profissional/Pessoa provedora</button>\n</group>",
336+
"<loginLink>Já tem uma conta?</loginLink>"
337+
],
333338
"name-use-any": "Use qualquer nome com o qual você se sinta confortável.",
334339
"name_alias": "Nome ou apelido",
335340
"name_full": "Nome completo",

apps/app/public/locales/ru/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,11 @@
332332
"<group>\n<button data-option='individual'>Индивидуальная</button>\n<button data-option='provider'>Профессионал/ресурс</button>\n<button data-option='lcr'>Обозреватель услуг для местного населения</button>\n</group>",
333333
"<loginLink>У вас уже есть аккаунт?</loginLink>"
334334
],
335+
"modal-body-temp": [
336+
"<title3>Какой тип учетной записи вы хотели бы создать?</title3>",
337+
"<group>\n<button data-option='individual'>Индивидуальная</button>\n<button data-option='provider'>Профессионал/ресурс</button>\n</group>",
338+
"<loginLink>У вас уже есть аккаунт?</loginLink>"
339+
],
335340
"name-use-any": "Вы можете использовать любое имя, которое вам нравится.",
336341
"name_alias": "Имя или псевдоним",
337342
"name_full": "Полное имя",

apps/app/public/locales/sw/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Mtu binafsi</button>\n<button data-option='provider'>Mtaalamu/Mtoa huduma</button>\n<button data-option='lcr'>Mitaa Mkaguzi wa Jumuiya</button>\n</group>",
331331
"<loginLink>Tayari una akaunti?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Je! Ungependa kuunda akaunti ya aina gani?</title3>",
335+
"<group>\n<button data-option='individual'>Mtu binafsi</button>\n<button data-option='provider'>Mtaalamu/Mtoa huduma</button>\n</group>",
336+
"<loginLink>Tayari una akaunti?</loginLink>"
337+
],
333338
"name-use-any": "Tumia jina lolote unalostahili.",
334339
"name_alias": "Jina au pak",
335340
"name_full": "Jina kamili",

apps/app/public/locales/tl/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Indibidwal</button>\n<button data-option='provider'>Propesyonal/Provider</button>\n<button data-option='lcr'>Lokal Tagasuri ng Komunidad</button>\n</group>",
331331
"<loginLink>Mayroon nang isang account?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Anong uri ng account ang nais mong likhain?</title3>",
335+
"<group>\n<button data-option='individual'>Indibidwal</button>\n<button data-option='provider'>Propesyonal/Provider</button>\n</group>",
336+
"<loginLink>Mayroon nang isang account?</loginLink>"
337+
],
333338
"name-use-any": "Gamitin ang anumang pangalan na komportable ka.",
334339
"name_alias": "Pangalan o alyas",
335340
"name_full": "Buong pangalan",

apps/app/public/locales/tr-TR/common.json

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
"<group>\n<button data-option='individual'>Bireysel</button>\n<button data-option='provider'>Profesyonel/Sağlayıcı</button>\n<button data-option='lcr'>Yerel Topluluk İncelemesi</button>\n</group>",
331331
"<loginLink>Zaten bir hesabınız var mı?</loginLink>"
332332
],
333+
"modal-body-temp": [
334+
"<title3>Ne tür bir hesap oluşturmak istersiniz?</title3>",
335+
"<group>\n<button data-option='individual'>Bireysel</button>\n<button data-option='provider'>Profesyonel/Sağlayıcı</button>\n</group>",
336+
"<loginLink>Zaten bir hesabınız var mı?</loginLink>"
337+
],
333338
"name-use-any": "Rahat olduğunuz ismi kullanın.",
334339
"name_alias": "İsim veya takma ad",
335340
"name_full": "Ad Soyad",

0 commit comments

Comments
 (0)