fix: add missed apostrophes #2

Merged
xelopsys merged 1 commit from fix-remaining-words into main 2026-02-27 06:39:08 +00:00
xelopsys commented 2026-02-26 20:42:04 +00:00 (Migrated from github.com)
No description provided.
orzklv (Migrated from github.com) reviewed 2026-02-26 20:42:04 +00:00
copilot-pull-request-reviewer[bot] (Migrated from github.com) reviewed 2026-02-26 20:44:48 +00:00
copilot-pull-request-reviewer[bot] (Migrated from github.com) left a comment

Pull request overview

This PR updates Uzbek copy strings to use the correct apostrophe/letter forms (e.g., replacing ASCII apostrophes/backticks with proper Uzbek characters) to improve text correctness and consistency across the UI.

Changes:

  • Update a SecondaryFeatures description to use the correct apostrophe character in “qatʼi”.
  • Update Footer tagline text to use the correct “Oʻz …” form.
  • Update an FAQ answer to use the correct apostrophe character in “Anʼanaviy”.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.

File Description
src/components/SecondaryFeatures.tsx Fixes apostrophe usage in a feature description string.
src/components/Footer.tsx Fixes Uzbek “Oʻz” letter form in the footer tagline.
src/components/Faqs.tsx Fixes apostrophe usage in an FAQ answer string.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

## Pull request overview This PR updates Uzbek copy strings to use the correct apostrophe/letter forms (e.g., replacing ASCII apostrophes/backticks with proper Uzbek characters) to improve text correctness and consistency across the UI. **Changes:** - Update a SecondaryFeatures description to use the correct apostrophe character in “qatʼi”. - Update Footer tagline text to use the correct “Oʻz …” form. - Update an FAQ answer to use the correct apostrophe character in “Anʼanaviy”. ### Reviewed changes Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments. | File | Description | | ---- | ----------- | | src/components/SecondaryFeatures.tsx | Fixes apostrophe usage in a feature description string. | | src/components/Footer.tsx | Fixes Uzbek “Oʻz” letter form in the footer tagline. | | src/components/Faqs.tsx | Fixes apostrophe usage in an FAQ answer string. | --- 💡 <a href="/uchar-org/website/new/main?filename=.github/instructions/*.instructions.md" class="Link--inTextBlock" target="_blank" rel="noopener noreferrer">Add Copilot custom instructions</a> for smarter, more guided reviews. <a href="https://docs.github.com/en/copilot/customizing-copilot/adding-repository-custom-instructions-for-github-copilot" class="Link--inTextBlock" target="_blank" rel="noopener noreferrer">Learn how to get started</a>.
@ -51,3 +51,3 @@
answer:
"An'anaviy messenjerlardan farqli olaroq, Matrix markazlashtirilmagan - sizning suhbatlaringizni boshqaradigan markaziy server yoq. U federatsiyani qollab-quvvatlaydi, shuning uchun har kim oz serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan oralgan boglar, na kuzatuv kapitalizmi mavjud.",
"Anʼanaviy messenjerlardan farqli olaroq, Matrix markazlashtirilmagan - sizning suhbatlaringizni boshqaradigan markaziy server yoq. U federatsiyani qollab-quvvatlaydi, shuning uchun har kim oz serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan oralgan boglar, na kuzatuv kapitalizmi mavjud.",
},
copilot-pull-request-reviewer[bot] (Migrated from github.com) commented 2026-02-26 20:44:48 +00:00

This answer is wrapped in double quotes, but the repo’s Prettier config prefers single quotes (singleQuote: true, prettier.config.js:3). Since there’s no ASCII apostrophe in the text that would force double quotes, consider changing this to single quotes to keep string delimiters consistent.

        'Anʼanaviy messenjerlardan farqli o‘laroq, Matrix markazlashtirilmagan - sizning suhbatlaringizni boshqaradigan markaziy server yo‘q. U federatsiyani qo‘llab-quvvatlaydi, shuning uchun har kim o‘z serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan o‘ralgan bog‘lar, na kuzatuv kapitalizmi mavjud.',
This answer is wrapped in double quotes, but the repo’s Prettier config prefers single quotes (`singleQuote: true`, prettier.config.js:3). Since there’s no ASCII apostrophe in the text that would force double quotes, consider changing this to single quotes to keep string delimiters consistent. ```suggestion 'Anʼanaviy messenjerlardan farqli o‘laroq, Matrix markazlashtirilmagan - sizning suhbatlaringizni boshqaradigan markaziy server yo‘q. U federatsiyani qo‘llab-quvvatlaydi, shuning uchun har kim o‘z serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan o‘ralgan bog‘lar, na kuzatuv kapitalizmi mavjud.', ```
@ -8,3 +8,3 @@
description:
"5 yoki 50 000 kishilik hamjamiyatni boshqarishingizdan qat'i nazar, platformamiz siz bilan tarozini oʻlchaydi. Sizning xabarlaringiz, sizning xonalaringiz, sizning nazoratingiz.",
"5 yoki 50 000 kishilik hamjamiyatni boshqarishingizdan qatʼi nazar, platformamiz siz bilan tarozini oʻlchaydi. Sizning xabarlaringiz, sizning xonalaringiz, sizning nazoratingiz.",
icon: DeviceArrowIcon,
copilot-pull-request-reviewer[bot] (Migrated from github.com) commented 2026-02-26 20:44:48 +00:00

This string is still using double quotes even though the repo’s Prettier config sets singleQuote: true (prettier.config.js:3). Since the content no longer contains an ASCII apostrophe that would require escaping, switch this to single quotes to match formatting conventions and avoid churn in future Prettier runs.

This string is still using double quotes even though the repo’s Prettier config sets `singleQuote: true` (prettier.config.js:3). Since the content no longer contains an ASCII apostrophe that would require escaping, switch this to single quotes to match formatting conventions and avoid churn in future Prettier runs.
bahrom04 (Migrated from github.com) approved these changes 2026-02-27 06:38:49 +00:00
Sign in to join this conversation.
No description provided.