From 03908f946ed8faee8d84dfa4e0c5a79ab6a66e1b Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 15 Jan 2026 10:28:45 -0600 Subject: [PATCH] feat: overhaul content structure and enhance build infrastructure - Add .gitignore to exclude Python and Pelican build artifacts. - Update Makefile for better virtual environment support and streamlined 'uv' setup. - Significant rewrite of the homepage and core pages for better readability and SEO. - Add new FAQ and specialized service pages (translation, tutoring) in both English and Russian. - Improve bilingual consistency and add metadata summaries to all content pages. --- .gitignore | 23 ++++++++++++ Makefile | 11 +++++- content/irls.md | 48 ++++++++++++++---------- content/pages/about-ru.md | 46 ++++++++++++----------- content/pages/about.md | 43 +++++++++++---------- content/pages/faq-ru.md | 21 +++++++++++ content/pages/faq.md | 21 +++++++++++ content/pages/quote-ru.md | 9 ++++- content/pages/quote.md | 9 ++++- content/pages/services-translation-ru.md | 33 ++++++++++++++++ content/pages/services-translation.md | 33 ++++++++++++++++ content/pages/services-tutoring-ru.md | 33 ++++++++++++++++ content/pages/services-tutoring.md | 33 ++++++++++++++++ 13 files changed, 295 insertions(+), 68 deletions(-) create mode 100644 .gitignore create mode 100644 content/pages/faq-ru.md create mode 100644 content/pages/faq.md create mode 100644 content/pages/services-translation-ru.md create mode 100644 content/pages/services-translation.md create mode 100644 content/pages/services-tutoring-ru.md create mode 100644 content/pages/services-tutoring.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81745c9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# Virtual Environment +.venv/ +venv/ +ENV/ + +# Pelican +output/ +cache/ + +# Editor/IDE +.vscode/ +.idea/ +*.swp +*~ + +# OS +.DS_Store +Thumbs.db diff --git a/Makefile b/Makefile index adb560e..769d6c8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ PY?= -PELICAN?=pelican PELICANOPTS= BASEDIR=$(CURDIR) @@ -8,6 +7,13 @@ OUTPUTDIR=$(BASEDIR)/output CONFFILE=$(BASEDIR)/pelicanconf.py PUBLISHCONF=$(BASEDIR)/publishconf.py +VENV_PELICAN=$(BASEDIR)/.venv/bin/pelican +ifeq (,$(wildcard $(VENV_PELICAN))) +PELICAN?=pelican +else +PELICAN?=$(VENV_PELICAN) +endif + GITHUB_PAGES_BRANCH=gh-pages @@ -82,7 +88,8 @@ install: uv sync --extra dev setup: - uv venv && uv sync --extra dev && source .venv/bin/activate + uv sync --all-extras + @echo "Setup complete. Activate your environment with: source .venv/bin/activate" fmt: uv run black *.py && uv run flake8 --max-line-length=88 *.py diff --git a/content/irls.md b/content/irls.md index 2a36dd9..a14d304 100755 --- a/content/irls.md +++ b/content/irls.md @@ -1,34 +1,42 @@ -Title: Professional Russian and Ukrainian Translation and Interpretation Services +Title: Russian Translation & Interpreting Services — iRLS Date: 2024-01-15 10:20 Slug: irls-home +Summary: Certified English ⇄ Russian translation, interpreting, and tutoring with local expertise in St. Louis. -Welcome to **RUSSIAN LANGUAGE SERVICES, LLC**, your trusted partner for professional two-way interpreting and translation services for English/Russian and English/Ukrainian. We cater to a diverse range of clients, from businesses to individuals, ensuring clear and accurate communication across languages. +# Accurate English ⇄ Russian Translation and Interpreting -### Our Services +Professional language services for legal, medical, business, and personal documents — delivered with precision, confidentiality, and cultural accuracy. -We offer a wide array of language services to meet your specific needs: +**Primary CTA:** [Request a Quote]({filename}/pages/quote.md) -* **Document Translation and Notarization:** We provide certified translations for all your legal, business, and personal documents. -* **Interpreting Services:** Our expertise covers various domains, including: - * Court Interpreting - * Medical Interpreting - * Metallurgical Interpreting -* **Business Translation:** We help you navigate the global market with accurate and culturally sensitive translations. -* **Language Training:** We offer personalized one-on-one language training for English and Russian, available online via Skype. -* **Exam Preparation:** We provide preparation assistance for Citizenship and Driver’s License exams. +## Services -### About Our Founder +- **Document Translation & Notarization** (certified legal, business, and personal documents) +- **Interpreting Services** (court, medical, and specialized appointments) +- **Business Translation** (contracts, technical docs, professional correspondence) +- **Tutoring & Exam Preparation** (English/Russian, citizenship and driver’s license exams) + +Explore: [Translation Services]({filename}/pages/services-translation.md) • [Russian Tutoring]({filename}/pages/services-tutoring.md) • [FAQ]({filename}/pages/faq.md) + +## Why iRLS + +- **Native Russian speaker** with advanced English proficiency +- **15+ years** of translation, interpreting, and instruction experience +- **Local presence** in Maryland Heights, MO with remote service worldwide + +## Meet Irina Beckel ![Iryna Beckel]({static}/images/Selfpresenation2.jpg) -This company is led by **Iryna Beckel**, a highly qualified and experienced interpreter, translator, and instructor. With a Master of Arts in Interpreting/Translation & TESL from Dnipropetrovsk University, Ukraine, Iryna brings a wealth of knowledge and expertise to every project. Her qualifications include: +**Irina Beckel** holds a Master of Arts in Interpreting/Translation & TESL from Dnipropetrovsk University, Ukraine. She is a certified Missouri Notary Public, a Medical Interpreter, and has completed the Missouri Court Interpreter Certification Orientation Workshop. -* **Interpreter/Translator** -* **English/Russian Instructor** -* **Philologist** +## Questions people ask -She is also certified as a Missouri Notary Public, a Medical Interpreter, and has completed the Missouri Court Interpreter Certification Orientation Workshop. +### How much does translation cost? +Pricing depends on language pair, document length, subject matter, and turnaround time. Most projects are quoted within 24 hours after review. -### Request a Quote +### Do you provide certified translations? +Yes. Certified translations are available for legal, immigration, and official use. -We are committed to providing high-quality language services at reasonable rates. If you have a project you'd like to discuss, please visit our [Request a Quote]({filename}/pages/quote.md) page to submit your document for a free, no-obligation estimate. \ No newline at end of file +### Do you offer remote services? +Yes. Translation, tutoring, and many interpreting services are available remotely. \ No newline at end of file diff --git a/content/pages/about-ru.md b/content/pages/about-ru.md index afce5d3..5c1f293 100755 --- a/content/pages/about-ru.md +++ b/content/pages/about-ru.md @@ -1,37 +1,39 @@ -Title: О нас +Title: О компании iRLS — Русские Языковые Услуги Slug: about lang: ru +Summary: Услуги перевода, устного перевода и обучения русскому языку в Мэриленд-Хайтс, Миссури. -### РУССКИЕ ЯЗЫКОВЫЕ УСЛУГИ, ООО предоставляет услуги устного и письменного двустороннего перевода в режиме Английский/Русский и Английский /Украинский в различных областях знаний для компаний и частных лиц. +# О компании iRLS (Русские Языковые Услуги) -Наша миссия - обеспечить высокий уровень языковой поддержки и представительства в областях, необходимых для успеха вашего бизнеса, включая: +**РУССКИЕ ЯЗЫКОВЫЕ УСЛУГИ, ООО** предоставляет услуги устного и письменного двустороннего перевода (Английский/Русский и Английский/Украинский) для компаний и частных лиц. -* Перевод и нотариальная заверка документов, -* Юридический перевод, -* Медицинский перевод, -* Металлургический перевод, -* Перевод деловых бумаг -* Интенсивный курс английского языка, -* Обучение русскому языку (возраст не ограничен) -* Подготовка к экзамену на гражданство, -* Подготовка к экзамену на водительские права. +## Миссия -Удобно расположенная недалеко от пересечения Олив бульвара с 270 шоссе Сент-Луиса, наша компания может предоставить экономные языковые услуги различным фирмам и частным лицам. Будучи ценной частью делового сообщества, Ваш бизнес заслуживает качественного языкового представительства по разумным ценам. +Наша миссия — обеспечить высокий уровень языковой поддержки и представительства в областях, необходимых для успеха вашего бизнеса, включая: -Наш бизнес неукоснительно служит обеспечению высоких требований клиентов к качеству языковых услуг, и на это направлены все имеющиеся ресурсы. +- Перевод и нотариальная заверка документов +- Юридический перевод +- Медицинский перевод +- Металлургический перевод +- Перевод деловых бумаг +- Интенсивный курс английского языка +- Обучение русскому языку (возраст не ограничен) +- Подготовка к экзамену на гражданство +- Подготовка к экзамену на водительские права + +## Локально в Сент‑Луисе, доступно по всему миру + +Удобно расположенная недалеко от пересечения Олив бульвара и 270 шоссе, наша компания предоставляет экономичные языковые услуги фирмам и частным лицам. Вы заслуживаете качественного языкового представительства по разумным ценам. + +## Контакты -Обращайтесь по адресу:

-
-Русские Языковые услуги, ООО -Ирина Бэкэл -Профессиональный переводчик -11650 Dorsett Rd, Maryland Heights, MO 63043 - +Русские Языковые услуги, ООО
+Ирина Бэкэл — Профессиональный переводчик
+11650 Dorsett Rd, Maryland Heights, MO 63043
Телефон: (314) 630-4636
- diff --git a/content/pages/about.md b/content/pages/about.md index fba176a..b6bb55b 100755 --- a/content/pages/about.md +++ b/content/pages/about.md @@ -1,34 +1,37 @@ -Title: About us - Russian-English translation +Title: About iRLS — Russian Language Services Slug: about lang: en +Summary: Russian/English translation, interpreting, and tutoring led by Irina Beckel in Maryland Heights, MO. -### RUSSIAN LANGUAGE SERVICES, LLC provides two-way Interpreting and Translation with English/Russian and English/Ukrainian in a variety of fields for business clients and individuals. +# About iRLS (Russian Language Services) -Our mission is to provide you with high-level language support and representation in the areas that are vital to your success, including: +**RUSSIAN LANGUAGE SERVICES, LLC** provides two‑way interpreting and translation (English/Russian and English/Ukrainian) for business clients and individuals. -* Documents Translation and Notarization, -* Court Interpreting, -* Medical Interpreting, -* Metallurgical Interpreting, -* Business Translation, -* Intense English Training (optional training ONLINE through Skype), -* Russian Language Training (optional training ONLINE through Skype) no age limitation, -* Citizenship Exam Preparation, -* Driver’s License Exam Preparation +## Mission -Conveniently located at the intersection of Olive Blvd. and I-270, we are able to economically offer language services to businesses and individuals. As a valued member of the business community, you deserve quality language representation at reasonable rates. +Our mission is to provide high‑level language support and representation in the areas that are vital to your success, including: -We are dedicated to meeting your high expectations of quality and commitment, and we have what it takes to help you with your language needs. +- Document Translation and Notarization +- Court Interpreting +- Medical Interpreting +- Metallurgical Interpreting +- Business Translation +- Intensive English Training (online) +- Russian Language Training (online) +- Citizenship Exam Preparation +- Driver’s License Exam Preparation -You can contact the firm at: +## Local presence, global service + +Conveniently located at the intersection of Olive Blvd. and I‑270, we serve businesses and individuals locally and remotely. You deserve quality language representation at reasonable rates. + +## Contact

-RUSSIAN LANGUAGE SERVICES, LLC -Iryna Beckel -Professional Interpreter and Translator -11650 Dorsett Rd, Maryland Heights, MO 63043 - +RUSSIAN LANGUAGE SERVICES, LLC
+Iryna Beckel — Professional Interpreter and Translator
+11650 Dorsett Rd, Maryland Heights, MO 63043
Cell: (314) 630-4636
\ No newline at end of file diff --git a/content/pages/faq-ru.md b/content/pages/faq-ru.md new file mode 100644 index 0000000..8d79bc5 --- /dev/null +++ b/content/pages/faq-ru.md @@ -0,0 +1,21 @@ +Title: Частые вопросы — Русские Языковые Услуги +Slug: faq +lang: ru +Summary: Ответы на вопросы о переводе, устном переводе и обучении. + +# Часто задаваемые вопросы + +## Как быстро вы выполняете перевод? +Мы обычно предоставляем расчет стоимости в течение 24 часов, а сроки зависят от объема и сложности. + +## Делаете ли вы заверенные переводы? +Да. Заверенные переводы доступны для официальных и юридических целей. + +## Возможен ли устный перевод на месте? +Да, в зависимости от места и расписания. Также доступен удаленный формат. + +## Обучаете ли вы онлайн? +Да. Большинство занятий проводится дистанционно. + +## Какие языки вы поддерживаете? +Английский ⇄ Русский и Английский ⇄ Украинский для многих типов документов. diff --git a/content/pages/faq.md b/content/pages/faq.md new file mode 100644 index 0000000..fd71caa --- /dev/null +++ b/content/pages/faq.md @@ -0,0 +1,21 @@ +Title: FAQ — Russian Language Services +Slug: faq +lang: en +Summary: Answers to common questions about translation, interpreting, and tutoring. + +# Frequently Asked Questions + +## How fast can you deliver a translation? +Most projects are quoted within 24 hours, and delivery depends on length and complexity. + +## Do you provide certified translations? +Yes. Certified translations are available for legal, immigration, and official use. + +## Do you offer interpreting services onsite? +Yes, depending on location and scheduling. Remote interpreting is also available. + +## Do you teach online? +Yes. Most tutoring is available online. + +## What languages do you support? +English ⇄ Russian, and English ⇄ Ukrainian for many document types. diff --git a/content/pages/quote-ru.md b/content/pages/quote-ru.md index f8513ff..3ab0ebd 100755 --- a/content/pages/quote-ru.md +++ b/content/pages/quote-ru.md @@ -1,12 +1,17 @@ Title: Запрос квоты Slug: quote lang: ru +Summary: Отправьте документ для быстрого и конфиденциального расчета стоимости перевода. -Цены на переводы различны и зависят от нескольких факторов, включая: сложность содержания, срочность доставки (срочные заявки стоят дороже), размер заявки, особый формат, разборчивость оригинала, и т.д. Цена всех переводов оценивается и назначается переводчиком. Если выхотите получить цену за перевод своего документа, вы можете отправить запрос на квоту либо через э-почту, пользуясь формой э-почты, либо через факс, используя форму факса. +# Запрос квоты + +Цены на переводы зависят от сложности содержания, срочности доставки (срочные заявки стоят дороже), объема, формата и разборчивости оригинала. Стоимость оценивается переводчиком индивидуально. + +Если вы хотите получить цену за перевод своего документа, вы можете отправить запрос на квоту через электронную почту (форма e‑mail) или по факсу. **Примечание:** -Любая информация, направленная для получения квоты, будет рассматриваться строго конфиденциально, без участия третьих лиц. Кроме того, ваш адрес э-почты и номер телефона, сопровождающие данную форму, будет использован только в отношении данного заявки. +Любая информация, направленная для получения квоты, будет рассматриваться строго конфиденциально и не передаваться третьим лицам. Адрес электронной почты и номер телефона используются только для связи по данной заявке. **Инструкции:** diff --git a/content/pages/quote.md b/content/pages/quote.md index f9376fd..a85a805 100755 --- a/content/pages/quote.md +++ b/content/pages/quote.md @@ -1,12 +1,17 @@ Title: Request a Quote Slug: quote lang: en +Summary: Submit your document for a fast, confidential translation quote. -Translation rates vary depending upon several factors including: complexity of the subject matter, delivery deadlines (rush projects cost more), project size, special formatting needs, legibility of the original document, etc. All translation projects will have to be quoted by the translator. If you would like a quote for your translation project, you can use either email form or Fax request form. +# Request a Quote + +Translation rates vary depending on subject complexity, delivery deadlines (rush projects cost more), project size, formatting needs, and document legibility. All translation projects are quoted individually. + +If you would like a quote for your translation project, you can use either the email form or the fax request form. **Note :** -Any information you provide with this quote request will be kept in the strictest confidence and will not be provided to third parties. In addition, the email address and phone number you provide with this form will only be used to contact you in regards to this project. +Any information you provide with this quote request will be kept in strict confidence and will not be provided to third parties. Your email and phone number will be used only to contact you about this project. **Instructions:** diff --git a/content/pages/services-translation-ru.md b/content/pages/services-translation-ru.md new file mode 100644 index 0000000..1b220be --- /dev/null +++ b/content/pages/services-translation-ru.md @@ -0,0 +1,33 @@ +Title: Услуги перевода (Русский ⇄ Английский) +Slug: services-translation +lang: ru +Summary: Письменный перевод документов с английского на русский и обратно для юридических, медицинских и деловых целей. + +# Услуги перевода + +Точный и конфиденциальный перевод документов, важных для вашей работы и жизни. Мы выполняем переводы Английский ⇄ Русский (а также Английский ⇄ Украинский) с соблюдением терминологии и требований оформления. + +## Типы документов + +- Юридические и иммиграционные документы +- Медицинские справки и отчеты +- Деловые договоры и переписка +- Учебные и личные документы + +## Что вы получите + +- Понятную стоимость и сроки +- Согласованную терминологию +- Нотариальное заверение при необходимости + +## Запросить стоимость + +Отправьте документ через страницу [Запрос квоты]({filename}/pages/quote.md), и мы ответим в течение 24 часов. + +## Вопросы и ответы + +### Делаете ли вы заверенные переводы? +Да. Заверенные переводы доступны для официальных и юридических целей. + +### От чего зависит стоимость? +От языка, сложности, объема и сроков выполнения. diff --git a/content/pages/services-translation.md b/content/pages/services-translation.md new file mode 100644 index 0000000..b1cbf1e --- /dev/null +++ b/content/pages/services-translation.md @@ -0,0 +1,33 @@ +Title: Russian Translation Services +Slug: services-translation +lang: en +Summary: Certified English ⇄ Russian translation for legal, business, medical, and personal documents. + +# Russian Translation Services + +Accurate, confidential translation for documents that matter. We provide English ⇄ Russian (and English ⇄ Ukrainian) translations with careful attention to terminology, formatting, and purpose. + +## Common document types + +- Legal and immigration documents +- Medical records and reports +- Business contracts and correspondence +- Academic and personal documents + +## What you can expect + +- Clear pricing and turnaround estimates +- Consistent terminology across projects +- Optional notarization where required + +## Request a quote + +Please submit your document on the [Request a Quote]({filename}/pages/quote.md) page and we’ll respond within 24 hours. + +## FAQ + +### Do you provide certified translations? +Yes. Certified translations are available for legal, immigration, and official use. + +### How are translation rates calculated? +Rates depend on language pair, subject matter complexity, volume, and deadline. diff --git a/content/pages/services-tutoring-ru.md b/content/pages/services-tutoring-ru.md new file mode 100644 index 0000000..0eb9005 --- /dev/null +++ b/content/pages/services-tutoring-ru.md @@ -0,0 +1,33 @@ +Title: Обучение русскому языку и подготовка к экзаменам +Slug: services-tutoring +lang: ru +Summary: Индивидуальные занятия по русскому языку для работы, путешествий и экзаменов. + +# Обучение русскому языку и подготовка к экзаменам + +Индивидуальные уроки под ваши цели, график и уровень. Занятия доступны онлайн. + +## Частые цели обучения + +- Деловой русский для профессионального общения +- Разговорная практика для путешествий +- Грамматика и уверенность в речи +- Подготовка к экзаменам на гражданство и водительские права + +## Как проходят занятия + +1. Короткая оценка уровня и целей +2. Индивидуальный план обучения +3. Регулярные занятия и практические задания + +## Записаться на консультацию + +Свяжитесь с нами, чтобы обсудить цели и расписание, затем запишитесь на консультацию или запросите учебный план. + +## Вопросы и ответы + +### Вы обучаете начинающих? +Да. Занятия адаптируются под текущий уровень, включая начинающих. + +### Занятия проходят онлайн? +Да. Большинство занятий проводится дистанционно. diff --git a/content/pages/services-tutoring.md b/content/pages/services-tutoring.md new file mode 100644 index 0000000..94130c2 --- /dev/null +++ b/content/pages/services-tutoring.md @@ -0,0 +1,33 @@ +Title: Russian Tutoring & Exam Preparation +Slug: services-tutoring +lang: en +Summary: Personalized Russian tutoring for business, travel, and exam preparation. + +# Russian Tutoring & Exam Preparation + +Personalized lessons designed around your goals, schedule, and current level. Sessions are available online. + +## Common goals + +- Business Russian for professional communication +- Travel readiness and conversation practice +- Grammar foundations and confidence building +- Citizenship and driver’s license exam preparation + +## How lessons work + +1. Short assessment of your goals and level +2. Personalized learning plan +3. Weekly sessions with practical homework + +## Book a discovery call + +Contact us to discuss goals and availability, then schedule a discovery call or request a learning plan. + +## FAQ + +### Do you teach absolute beginners? +Yes. Lessons are tailored to your current level, including beginner students. + +### Are lessons available online? +Yes. Most tutoring is provided remotely.