Showing preview only (2,541K chars total). Download the full file or copy to clipboard to get everything.
Repository: YerongAI/Office-Tool
Branch: main
Commit: daedbdf88077
Files: 71
Total size: 2.4 MB
Directory structure:
gitextract_j8lc3xg9/
├── .github/
│ └── ISSUE_TEMPLATE/
│ ├── bug-report.yaml
│ └── feature-request.yaml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── NOTICE.md
├── README-ar-sa.md
├── README-de-de.md
├── README-en-gb.md
├── README-es-es.md
├── README-fr-fr.md
├── README-hu-hu.md
├── README-id-id.md
├── README-it-it.md
├── README-ko-kr.md
├── README-my-mm.md
├── README-nl-nl.md
├── README-pl-pl.md
├── README-ro-ro.md
├── README-ru-ru.md
├── README-th-th.md
├── README-tr-tr.md
├── README-zh-cn.md
├── README-zh-tw.md
├── README.md
├── config/
│ ├── Launcher/
│ │ └── Locales.json
│ └── Message/
│ ├── end_of_support.json
│ └── win7-setup-issue.json
└── src/
├── OfficeToolPlus/
│ └── Dictionaries/
│ ├── Languages/
│ │ ├── ar-ly.xaml
│ │ ├── ar-sa.xaml
│ │ ├── de-de.xaml
│ │ ├── en-gb.xaml
│ │ ├── en-us.xaml
│ │ ├── es-es.xaml
│ │ ├── fr-fr.xaml
│ │ ├── hu-hu.xaml
│ │ ├── id-id.xaml
│ │ ├── it-it.xaml
│ │ ├── ja-jp.xaml
│ │ ├── ko-kr.xaml
│ │ ├── my-mm.xaml
│ │ ├── nl-nl.xaml
│ │ ├── pl-pl.xaml
│ │ ├── pt-br.xaml
│ │ ├── ro-ro.xaml
│ │ ├── ru-ru.xaml
│ │ ├── th-th.xaml
│ │ ├── tr-tr.xaml
│ │ ├── uk-ua.xaml
│ │ ├── vi-vn.xaml
│ │ ├── zh-cn.xaml
│ │ ├── zh-sg.xaml
│ │ ├── zh-tw.xaml
│ │ └── zho-yue.xaml
│ ├── ProductsName/
│ │ ├── en-gb.xaml
│ │ ├── en-us.xaml
│ │ ├── es-es.xaml
│ │ ├── fr-fr.xaml
│ │ ├── it-it.xaml
│ │ ├── ja-jp.xaml
│ │ ├── ko-kr.xaml
│ │ ├── my-mm.xaml
│ │ ├── nl-nl.xaml
│ │ ├── tr-tr.xaml
│ │ ├── uk-ua.xaml
│ │ ├── vi-vn.xaml
│ │ ├── zh-cn.xaml
│ │ └── zh-tw.xaml
│ └── README.md
└── scripts/
├── Get-OfficeToolPlus.ps1
└── Invoke-Commands.ps1
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/bug-report.yaml
================================================
name: Bug Report
description: Submit a bug report to help us resolve issue.
title: "[Bug] "
labels: ["Bug"]
assignees:
- YerongAI
body:
- type: markdown
attributes:
value: |
Thank you for helping us improve our software, we just need some information below.
- type: input
id: version
attributes:
label: What is the version of Office Tool Plus?
description: You can find it on the About page or on the package name.
placeholder: ex. v10.0.0.0 (x64)
validations:
required: true
- type: input
id: os-version
attributes:
label: What is the version of your Operating System?
placeholder: ex. Windows 11 24H2 build 26100 (x64)
validations:
required: true
- type: input
id: error-description
attributes:
label: What is the error?
description: The error can be a sentence or an error code.
validations:
required: true
- type: textarea
id: steps
attributes:
label: How does this problem occur?
description: Steps required to reproduce the problem, or anything you did before the problem occurred. More detailed information and additional screenshots can help us locate the issue more quickly.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Log output
description: You can find the log on %temp%\OTP_Logs, or enable log output by running "Office Tool Plus.Console" /log
render: shell
validations:
required: false
- type: textarea
id: others
attributes:
label: Anything else you want to tell us
description: If you have any more information please let us know.
validations:
required: false
================================================
FILE: .github/ISSUE_TEMPLATE/feature-request.yaml
================================================
name: Feature request
description: Suggest an idea for this project.
title: "[IDEA] "
labels: ["Idea-Enhancement"]
assignees:
- YerongAI
body:
- type: markdown
attributes:
value: |
Thank you for helping us improve our software, we just need some information below.
- type: input
id: description
attributes:
label: Feature description
description: What is this new feature about?
validations:
required: true
- type: textarea
id: how-to-work
attributes:
label: How does it work?
description: If you know how to implement this feature, please let us know your ideas.
validations:
required: false
================================================
FILE: .gitignore
================================================
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
# Other files
/config/Launcher/Attaches/*
/config/Locales/*
================================================
FILE: CONTRIBUTING.md
================================================
# Help With Localization
We encourage everyone to help with localization. The following is how to do it.
1. Fork this repository.
2. Translate **en-us.xaml** to your own language then save it like **de-de.xaml**.
3. Copy it to the right path.
4. Make a Pull Request.
There is the files you can translate with:
``` batch
src\OfficeToolPlus\Dictionaries\Languages
src\OfficeToolPlus\Dictionaries\ProductsName
config\Launcher
config\Message
```
[Office Tool Plus Translation Guidelines](src/OfficeToolPlus/Dictionaries/README.md)
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2023 Yerong
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: NOTICE.md
================================================
# NOTICES AND INFORMATION
This software incorporates material from third parties.
## IsoCreator
Author: [epurasu](https://sourceforge.net/u/epurasu/profile/)
Source: <https://sourceforge.net/projects/iso-creator-cs/>
Academic Free License
## Markdown.XAML
Author: [Bevan Arps](https://github.com/theunrepentantgeek)
Source: <https://github.com/theunrepentantgeek/Markdown.XAML>
MIT License
## Material Design
Author: [Austin Andrews](https://github.com/Templarian)
Source: <https://github.com/Templarian/MaterialDesign>
Pictogrammers Free License
## Material Design Icons
Author: [Google](https://github.com/google)
Source: <https://github.com/google/material-design-icons>
Apache-2.0 license
## NuGet Packages
- Downloader (5.0.0)
- Microsoft.Extensions.Caching.Memory (10.0.4)
- Microsoft.Extensions.Http (10.0.4)
- Microsoft.Security.Extensions (1.4.0)
- Microsoft.Xaml.Behaviors.Wpf (1.1.142)
- Prism.DryIoc (9.0.537)
- Prism.Wpf (9.0.537)
- System.IO.Hashing (10.0.4)
- System.Management (10.0.4)
- System.ServiceProcess.ServiceController (10.0.4)
- WixToolset.Dtf.Compression.Cab (6.0.2)
================================================
FILE: README-ar-sa.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="license" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> اداة قوية ومفيدة لتثبيت الاوفيس
تدعم تثبيت وتنشيط المنتجات الاتية:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
:الوظائف والمميزات
- انشاء اعدادات لتثبيت الاوفيس، يمكن حفظ ملف الاعداد او جلبه من الويب
- تحميل الاوفيس، يدعم البرنامج جميع قنوات ولغات الاوفيس
- تثبيت الاوفيس او تعديل النسخة المثبتة بالفعل، سواء اضافة منتجات او برامج، او ازالتهم
- انشاء نسخة ايزو تدعم التثبيت الافتراضي والتثبيت الصامت
- تنشيط الاوفيس. سواء تنشيط اونلاين او بالهاتف او تنشيط KMS
- تدعم ادارة التنشيط والتراخيص والمفاتيح وتنشيط KMS
- تغيير قناة تحديث الاوفيس مما يمكنك من الترقية او الانزال لنسخ مختلفة دون اعادة التثبيت
- ازالة الاوفيس. فرض الازالة بالقوة عند عدم تمكنك من الازالة بالطريقة العادية وذلك لاوفيس 2003 حتى اخر اصدار
- ادوات اوفيس مدمجة تشمل ادوات الاستعادة الافتراضية وادوات الاصلاح
- تحويل ملفات الاوفيس مستخدما موقع الاوفيس الرسمي، بسهولة وثبات
- تخصيص الواجهة كما تحب
- اعدادات متقدمة للوصول الى خصائص مميزة، مثل تغيير قنوات الاوفيس الداخلية
## التحميل والبدء السريع
- [تحميل](https://otp.landian.vip/)
- [التوثيق](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## عنا
© 2016-2026 Yerong. جميع الحقوق محفوظة.
> المدونة [@Yerong の小窝](https://blog.yerong.org/) · جيت هب [@YerongAI](https://github.com/YerongAI) · تليجرام [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-de-de.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Ein leistungsstarkes und nützliches Tool für Office-Bereitstellungen.
Unterstützt die benutzerdefinierte Bereitstellung und Aktivierung der folgenden Produkte:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Funktionen und Features:
- Erstellen Sie eine Office-Installationskonfiguration. Die Konfiguration kann lokal exportiert bzw. lokal oder aus dem Netzwerk importiert werden.
- Laden Sie Office herunter, wobei `ALLE` Office-Kanäle und `ALLE` Office-Sprachen unterstützt werden.
- Installieren Sie Office oder ändern Sie ein bestehendes Office, indem Sie z. B. neue Produkte und Anwendungen hinzufügen oder Produkte und Anwendungen deinstallieren.
- Erstellen Sie Office-ISOs, wobei die Standard- und die stille Installationskonfiguration unterstützt werden.
- Aktivieren Sie Office. Das Tool unterstützt Online-Aktivierung, Telefon-Aktivierung und KMS-Aktivierung.
- Unterstützung der Office-Aktivierungsverwaltung, einschließlich Lizenzverwaltung, Schlüsselverwaltung und KMS-Verwaltung.
- Ändern des Office-Aktualisierungskanals mit Unterstützung des Up-/Downgrades von Office ohne Neuinstallation.
- Entfernen Sie Office. Erzwingen Sie das Entfernen von Office, wenn es nicht auf normalem Weg deinstalliert werden kann. Unterstützt Office ab Version 2003 bis zur neuesten Office-Version.
- Integrierte Office-Tools, einschließlich Zurücksetzen von Einstellungen und Beheben von Office-Problemen.
- Konvertieren Sie Office-Dokumente, basierend auf Office-COM. Es ist schnell und stabil.
- Personalisieren Sie das Design, Sie können Ihr eigenes Office Tool Plus gestalten.
- Mit den erweiterten Einstellungen können Sie erweiterte Funktionen, wie z. B. Office-interne Kanäle, nutzen.
## Download und Schnellstart
- [Download](https://otp.landian.vip/)
- [Dokumentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Über Office Tool Plus
© 2016-2026 Yerong. Alle Rechte vorbehalten.
> Blog: [@Yerong の小窝](https://blog.yerong.org/) · GitHub: [@YerongAI](https://github.com/YerongAI) · Telegram: [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
<!-- © 2021 | German translation by Berny23 | v4.10 | https://steamcommunity.com/id/Berny23 | https://sourceforge.net/u/berny23 | https://github.com/Berny23 -->
================================================
FILE: README-en-gb.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> A powerful and useful tool for Office deployments.
Supports custom deployment and activation of the following products:
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 & Online Plan 2.
- Project 2016, 2019, 2021, 2024 & Online Desktop Client.
Functions and Features:
- Create Office installation configuration. The config can be exported to local, or imported from local or web.
- Download Office, supporting `ALL` Office channels and `ALL` Office languages.
- Install Office or modify the existing Office, such as adding new products and applications, or uninstalling products and applications.
- Create Office ISO, supports default installation config and silent installation config.
- Activate Office. Support online activation, phone activation and KMS activation.
- Support Office activation management, including licence management, key management and KMS management.
- Change Office update channel, support upgrading/downgrading Office without reinstalling Office.
- Remove Office. Force remove Office while it can’t be uninstalled in normal way, support Office from Office 2003 to the latest Office version.
- Integrated Office tools, including resetting settings, fixing Office problems.
- Convert Office documents, based on Office COM. it's fast and stable.
- Personalise theme, you can build your special Office Tool Plus.
- Advanced settings allow you to use more advanced features, such as Office internal channels.
## Download and quick start
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## About
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-es-es.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Una herramienta poderosa y útil para implementaciones de Office.
Admite la implementación y activación personalizadas de los siguientes productos:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 y plan en línea 2
- Project 2016, 2019, 2021, 2024 y cliente de escritorio en línea
Funciones adicionales:
- Crear la configuración de la instalación de Office. La configuración puede ser exportada a local, o importada desde local o web.
- Descargar Office, con soporte para TODOS los canales de Office y TODOS los idiomas de Office.
- Instalar Office o modificar el existente, como añadir nuevos productos y aplicaciones, o desinstalar productos y aplicaciones.
- Crear ISO de Office, soporta la configuración de instalación por defecto y la configuración de instalación silenciosa.
- Activar Office. Soporta activación en línea, activación telefónica y activación KMS.
- Soporta la gestión de la activación de Office, incluyendo la gestión de licencias, la gestión de claves y la gestión de KMS.
- Cambia el canal de actualización de Office, soporta la actualización/desactualización de Office sin reinstalar Office.
- Eliminar Office. Forzar la eliminación de Office mientras no se pueda desinstalar de forma normal, soportar Office desde Office 2003 hasta la última versión de Office.
- Herramientas integradas de Office, incluyendo el restablecimiento de la configuración, la fijación de los problemas de Office.
- Convertir documentos de Office, basado en Office COM. es rápido y estable.
- Personalizar el tema, usted puede construir su herramienta especial de Office Plus.
- La configuración avanzada le permite utilizar características más avanzadas, como los canales internos de Office.
## Descarga e inicio rápido
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## A propósito
© 2016-2026 Yerong. Todos los derechos reservados.
> Blog [@Yerong の 小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-fr-fr.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Un outil puissant et utile pour les déploiements d'Office.
Prend en charge le déploiement personnalisé et l'activation des produits suivants :
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 & Online Plan 2.
- Project 2016, 2019, 2021, 2024 & Online Desktop Client.
Fonctionnalités et caractéristiques :
- Création d'une configuration d'installation d'Office. La configuration peut être exportée en local, ou importée depuis le local ou le web.
- Téléchargement d'Office, supportant `TOUS` les canaux et `TOUTES` les langues d'Office.
- Installation d'Office ou modification d'Office existant, comme l'ajout de nouveaux produits et applications, ou la désinstallation de produits et d'applications.
- Création de l'ISO d'Office, avec prise en charge de la configuration d'installation par défaut et de la configuration d'installation silencieuse.
- Activer Office. Prise en charge de l'activation en ligne, de l'activation par téléphone et de l'activation KMS.
- Prise en charge de la gestion de l'activation d'Office, y compris la gestion des licences, la gestion des clés et la gestion KMS.
- Changement du canal de mise à jour d'Office, prise en charge de la mise à niveau/dégradation d'Office sans réinstallation d'Office.
- Suppression d'Office. Forcez la suppression d'Office lorsqu'il ne peut pas être désinstallé de manière normale, prenez en charge Office depuis Office 2003 jusqu'à la dernière version d'Office.
- Outils Office intégrés, y compris la réinitialisation des paramètres, la résolution des problèmes Office.
- Conversion des documents Office, basée sur Office COM, rapide et stable.
- Personnalisation du thème, vous pouvez créer votre propre outil Office Plus.
- Les paramètres avancés vous permettent d'utiliser des fonctions plus avancées, telles que les canaux internes d'Office.
## Téléchargement et démarrage rapide
- [Téléchargement](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## À propos
© 2016-2026 Yerong. Tous droits réservés.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-hu-hu.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Hatékony és hasznos eszköz az Office-telepítésekhez.
Támogatja a következő termékek egyéni telepítését és aktiválását:
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 & online csomag 2.
- Project 2016, 2019, 2021, 2024 & Online asztali kliens.
Funkciók és jellemzők:
- Office telepítési konfiguráció létrehozása. A konfiguráció exportálható helyi, illetve importálható helyi vagy webes hálózatról.
- Office letöltése, amely támogatja az 'Mind' Office-csatornát és az 'Mind' Office-nyelvet.
- Az Office telepítése vagy a meglévő Office módosítása, például új termékek és alkalmazások hozzáadása vagy termékek és alkalmazások eltávolítása.
- Office ISO létrehozása, támogatja az alapértelmezett telepítési konfigurációt és a csendes telepítési konfigurációt.
- Aktiválja az Office-t. Támogatja az online aktiválást, a telefonos aktiválást és a KMS aktiválást.
- Az Office aktiválás kezelésének támogatása, beleértve a licenckezelést, a kulcsok kezelését és a KMS-kezelést.
- Az Office frissítési csatornájának megváltoztatása, az Office frissítésének/alacsonyabb verziószámra való visszaváltásának támogatása az Office újratelepítése nélkül.
- Távolítsa el az Office-t. Az Office kényszerített eltávolítása, miközben nem lehet normál módon eltávolítani, az Office 2003-tól a legújabb Office-verzióig támogatja az Office-t.
- Integrált Office-eszközök, beleértve a beállítások visszaállítását, Office-problémák javítását.
- Office dokumentumok konvertálása, az Office COM alapján. Ez gyors és stabil.
- Személyre szabhatja a témát, létrehozhatja a különleges Office Tool Plus-t.
- A speciális beállítások lehetővé teszik a fejlettebb funkciók, például az Office belső csatornák használatát.
## Letöltés és gyors indítás
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Vagy töltse le az Office Tool Plus-t a PowerShell segítségével:
```powershell
irm https://officetool.plus | iex
```
## Névjegy
© 2016-2026 Yerong. Minden jog fenntartva.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-id-id.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Merupakan alat yang berguna dan bertenaga dalam memasangkan Office.
Mendukung untuk memasangan ubahsuai dan mengaktivasi produk berikut:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Fungsi Tambahan:
- Mendukung semua 17 saluran Office, termasuk kueri, unduhan dan pemasangan.
- Modifikasi Office yang sudah ada, termasuk menambahkan atau mencopot produk, aplikasi, paket bahasa, dll.
- Mengekspor/Mengimpor profil XML.
- Membuat berkas ISO untuk berbagi untuh pemasangan secara luring.
- Pemasangan lisensi Office (edisi terkonversi)
- Pembersihan lisensi dan kunci produk Office.
- Mendukung aktivasi secara daring, aktivasi telepon (aktivasi secara luring) dan aktivasi KMS.
- Setel ulang/paksa mencopot Office.
- Mengubah saluran pembaruan Office tanpa perlu memasang kembali Office.
- Sejumlah konversi dokumen Office, berdasarkan Office API
## Download and quick start
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Tentang
© 2016-2026 Yerong. Semua Hak Cipta Dilindungi.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-it-it.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Uno strumento potente e utile per le distribuzioni di Office.
Supporta la distribuzione personalizzata e l'attivazione dei seguenti prodotti:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Funzioni e caratteristiche::
- Crea, importa o esporta la configurazione dell'installazione di Office.
- Scarica Office in qualsiasi lingua e da qualsiasi canale di aggiornamento.
- Installa Office in pochi passaggi, scegliendo il prodotto, la lingua e le app desiderate.
- Modifica l'installazione di Office, aggiungendo o rimuovendo facilmente qualsiasi cosa contemporaneamente.
- Crea file ISO di Office, supporta la configurazione di installazione predefinita e la configurazione di installazione in modalità silenziosa.
- Attiva Office, supporta l'attivazione online, l'attivazione telefonica e l'attivazione KMS.
- Supporta la gestione dell'attivazione di Office, inclusa la gestione delle licenze, la gestione delle chiavi e la gestione del KMS.
- Modifica il canale di aggiornamento di Office, supporta l'aggiornamento/il downgrade di Office senza reinstallare Office.
- Forza la rimozione di Office mentre non può essere disinstallato normalmente, supporta da Office 2003 alla versione più recente di Office.
- Veloce e stabile per convertire i documenti di Office, basato su Office COM.
- Strumenti di Office integrati, incluso il ripristino delle impostazioni e la risoluzione dei problemi di Office.
- Personalizza il tema, crea il tuo speciale Office Tool Plus.
## Download ed avvio rapido
- [Download](https://otp.landian.vip/)
- [Documentazione](https://otp.landian.vip/help/)
Oppure scarica Office Tool Plus usando PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Info programma
© 2016-2026 Yerong. Tutti i diritti riservati.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-ko-kr.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Office 배포를 위한 강력하고 유용한 도구입니다.
다음 제품의 사용자 정의 배포 및 활성화를 지원합니다:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 및 온라인 플랜 2
- Project 2016, 2019, 2021, 2024 및 온라인 데스크톱 클라이언트
기능 및 특징:
- Office 설치 구성을 만듭니다. 구성을 로컬로 내보내거나 로컬 또는 웹에서 가져올 수 있습니다.
- Office를 다운로드하여 `모든` Office 채널과 `모든` Office 언어를 지원합니다.
- 새 제품 및 응용 프로그램 추가 또는 제품 및 응용 프로그램 제거와 같이 Office를 설치하거나 기존 Office를 수정합니다.
- Office ISO 만들기, 기본 설치 구성 및 자동 설치 구성을 지원합니다.
- Office를 활성화합니다. 온라인 활성화, 전화 활성화 및 KMS 활성화를 지원합니다.
- 라이선스 관리, 키 관리 및 KMS 관리를 포함한 Office 활성화 관리를 지원합니다.
- Office 업데이트 채널을 변경하고 Office를 다시 설치하지 않고 Office 업그레이드/다운그레이드를 지원합니다.
- Office를 제거합니다. 정상적인 방법으로 제거할 수 없는 경우 Office를 강제 제거하고 Office 2003부터 최신 Office 버전까지 Office를 지원합니다.
- 설정 초기화, Office 문제 해결을 포함한 통합 Office 도구입니다.
- Office COM을 기반으로 Office 문서를 변환합니다. 빠르고 안정적입니다.
- 테마를 개인화하면 특별한 Office Tool Plus를 구축할 수 있습니다.
- 고급 설정을 사용하면 Office 내부 채널과 같은 고급 기능을 사용할 수 있습니다.
## 다운로드 및 빠른 시작
- [다운로드](https://otp.landian.vip/)
- [문서](https://otp.landian.vip/help/)
또는 PowerShell을 사용하여 Office Tool Plus를 다운로드하세요:
```powershell
irm https://officetool.plus | iex
```
## 추가 정보
© 2016-2026 Yerong. All Rights Reserved.
> 블로그 [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-my-mm.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Office အတွက် အသုံးဝင်သော ကိရိယာတစ်ခု ဖြစ်ပါသည်။
အောက်ဖော်ပြပါ product များကို စိတ်ကြိုက်တပ်ဆင်ခြင်းနှင့် activation အတွက် ထောက်ပံ့ပေးထားပါသည်။:
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 & Online Plan 2.
- Project 2016, 2019, 2021, 2024 & Online Desktop Client.
လုပ်ဆောင်ချက်များနှင့် ထူးခြားချက်များ:
- Office ထည့်သွင်းခြင်းအတွက် ဖွဲ့စည်းမှု ဖန်တီးခြင်း။ ဖန်တီးသည့်ဖိုင်ကို တိုက်ရိုက်သိမ်းဆည်းနိုင်သလို၊ တိုက်ရိုက်ဖတ်သွင်းခြင်း (သို့) ဝက်ဘ်မှဖတ်သွင်းခြင်းလည်း ပြုလုပ်နိုင်သည်။
- Office ကိုဒေါင်းလုပ်လုပ်ခြင်း။ Office ရဲ့ ချန်နယ်`အားလုံး`နှင့် ဘာသာစကား`အားလုံး`ကို ထောက်ပံ့ပေးသည်။
- Office ကို ထည့်သွင်းခြင်း သို့မဟုတ် လက်ရှိ Office ကို ပြင်ဆင်ခြင်း။ ဥပမာအားဖြင့် ထပ်မံထည့်သွင်းလိုသည့် product များနှင့် အပလီကေးရှင်းများ၊ သို့မဟုတ် ဖယ်ရှားလိုသည့်အရာများ။
- Office ISO ဖိုင်ဖန်တီးခြင်း။ မူရင်းတပ်ဆင်ရေးဖွဲ့စည်းမှုနှင့် တိတ်ဆိတ်တပ်ဆင်ခြင်းဖွဲ့စည်းမှုတို့ကို ထောက်ပံ့သည်။
- Office ကို Activate လုပ်ခြင်း။ အွန်လိုင်း activation၊ ဖုန်း activation နှင့် KMS activation များကို ထောက်ပံ့သည်။
- Office Activation စီမံခန့်ခွဲမှု။ လိုင်စင်စီမံခန့်ခွဲမှု၊ Key စီမံခန့်ခွဲမှု၊ KMS စီမံခန့်ခွဲမှု များပါဝင်ပါသည်။
- Office Update ချန်နယ်ပြောင်းခြင်း။ Office ကို ပြန်လည်ထည့်သွင်းရန်မလိုဘဲ အဆင့်မြှင့်ခြင်း/နိမ့်သွားခြင်းများကို ထောက်ပံ့သည်။
- Office ဖယ်ရှားခြင်း။ ပုံမှန်နည်းဖြင့်ဖယ်ရှားလို့မရသောအခါ Force Remove ကို Office 2003 မှ စတင်ပြီး နောက်ဆုံးဗားရှင်းအထိ အသုံးပြု၍ ဖယ်ရှားနိုင်သည်။
- ပေါင်းစပ်ထားသည့် Office ကိရိယာများ။ Setting reset လုပ်ခြင်း၊ Office ပြဿနာများကို ဖြေရှင်းခြင်းစသည်ဖြင့်။
- Office စာရွက်စာတမ်းများကို ပြောင်းလဲခြင်း။ Office COM ပေါ်မှာ အခြေခံထားပြီး မြန်ဆန်စိတ်ချရပါသည်။
- ကိုယ်ပိုင်အပြင်အဆင်များ။ ကိုယ်ပိုင် Office Tool Plus တစ်ခုဖန်တီးနိုင်သည်။
- အဆင့်မြင့် စက်တင် များ။ Office ၏အတွင်းပိုင်း Channel များကို အသုံးပြုခွင့်အပါအဝင် အဆင့်မြင့်လုပ်ဆောင်ချက်များကို အသုံးပြုနိုင်သည်။
## ဒေါင်းလုပ်လုပ်ခြင်းနှင့် အမြန်ဆုံးစဆင်အသုံးပြုခြင်း
- [ဒေါင်းလုပ်လုပ်ရန်](https://otp.landian.vip/)
- [စာရွက်စာတမ်း](https://otp.landian.vip/help/)
သို့မဟုတ် Office Tool Plus ကို PowerShell မှတဆင့် ဒေါင်းလုပ်လုပ်ရန်:
```powershell
irm https://officetool.plus | iex
```
## အကြောင်းစုံ
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-nl-nl.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Een krachtige en handige tool voor Office-implementaties.
Ondersteunt aangepaste implementatie en activering van de volgende producten::
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Functies en kenmerken:
- Maak een Office-installatieconfiguratie. De configuratie kan worden geëxporteerd naar lokaal of geïmporteerd vanuit lokaal of web.
- Download Office, ondersteunt `ALLE` Office-kanalen en `ALLE` Office-talen
- Installeer Office of wijzig het bestaande Office, zoals het toevoegen van nieuwe producten en toepassingen of het verwijderen van producten en toepassingen.
- Maak Office ISO, ondersteunt standaardinstallatieconfiguratie en stille installatieconfiguratie.
- Activeer Office. Ondersteuning online activering, telefoonactivering en KMS-activering.
- Ondersteuning Office-activeringsbeheer, inclusief licentiebeheer, sleutelbeheer en KMS-beheer.
- Wijzig het Office-updatekanaal, ondersteun het upgraden/downgraden van Office zonder Office opnieuw te installeren.
- Office verwijderen. Forceer Office verwijderen wanneer het niet op de normale manier kan worden verwijderd, ondersteun Office van Office 2003 tot de nieuwste Office-versie.
- Geïntegreerde Office-tools, waaronder het resetten van instellingen, oplossen van Office-problemen.
- Converteer Office-documenten, gebaseerd op Office COM. het is snel en stabiel.
- Personaliseer het thema, u kunt uw speciale Office Tool Plus bouwen.
- Met geavanceerde instellingen kunt u meer geavanceerde functies gebruiken, zoals interne Office-kanalen.
## Downloaden en snelstart
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Over
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-pl-pl.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Potężne i przydatne narzędzie do wdrożeń pakietu Office.
Obsługuje niestandardowe wdrażanie i aktywację następujących produktów:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Dodatkowe funkcje:
- Obsługa wszystkich 17 kanałów pakietu Office, w tym zapytań, pobierania i instalacji.
- Modyfikacje istniejącego pakietu Office, w tym dodawanie i usuwanie produktów, aplikacji, pakietów językowych itp.
- Importowanie / eksportowanie profili XML.
- Twórz pliki ISO do udostępniania lub instalacji offline.
- Instalowanie licencji Office (wersja przekonwertowana).
- Czyszczenie licencji i kluczy pakietu Office.
- Obsługuje aktywację online, aktywację telefoniczną (aktywacja offline) i aktywację KMS.
- Reset / wymuszone usunięcie pakietu Office.
- Zmiana kanału aktualizacji pakietu Office bez ponownej instalacji pakietu Office.
- Konwersja wsadowa dokumentów Office w oparciu o Office API.
## Pobierz i szybki start
- [Pobierz](https://otp.landian.vip/)
- [Dokumentacja](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## O...
© 2016-2026 Yerong. Wszelkie prawa zastrzeżone.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-ro-ro.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Un instrument puternic și util pentru implementările Office.
Suportă implementarea personalizată și activarea următoarelor produse:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Funcții și caracteristici:
- Creați configurația de instalare Office. Configurarea poate fi exportată local sau importată din local sau web.
- Descărcați Office, având suport pentru „TOATE” canalele Office și „TOATE” limbile Office.
- Instalați Office sau modificați Office-ul existent, cum ar fi adăugarea de produse și aplicații noi sau dezinstalarea produselor și aplicațiilor.
- Creați ISO Office, cu suport pentru configurarea de instalare implicită și configurația de instalare silențioasă.
- Activați Office. Suport pentru activarea online, activarea cu telefonul și activarea KMS.
- Suport pentru gestionarea activării Office, inclusiv gestionarea licențelor, gestionarea cheilor și gestionarea KMS.
- Schimbați canalul de actualizare Office, cu suport pentru actualizarea / retrogradarea Office fără a reinstala Office.
- Eliminați Office. Forțați eliminarea Office atunci când acesta nu poate fi dezinstalat în mod normal, cu suport de la Office 2003 la cea mai recentă versiune Office.
- Instrumente Office integrate, inclusiv resetarea setărilor, remedierea problemelor Office.
- Conversia documentelor Office, pe baza Office COM. Este rapid și stabil.
- Personalizați tema, puteți construi Office Tool Plus special.
- Setările avansate vă permit să utilizați funcții mai avansate, cum ar fi canalele interne Office.
## Descărcare și pornire rapidă
- [Descarcă](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Despre
© 2016-2026 Yerong. Toate drepturile rezervate.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-ru-ru.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Мощный и полезный инструмент для развертывания Офиса.
Поддерживает индивидуальное развертывание и активацию следующих продуктов:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
Дополнительные возможности:
- Поддержка всех 17 каналов Office, включая загрузку, установку и выполнение запросов;
- Изменение существующего Office, включая добавление и удаление продуктов, приложений, языковых пакетов и т. д;
- Импорт/экспорт XML-профилей;
- Создание ISO-образов для совместного использования или для автономной установки;
- Установка лицензий Office (преобразование редакций);
- Очистка лицензий и ключей Office;
- Поддерживает онлайн-активацию, активацию по телефону (офлайн-активация) и KMS-активацию Office
- Сброс/принудительное удаление Office;
- Изменение канала обновления Office без переустановки;
- Пакетное преобразование документов Office на основе API.
## Скачивание и быстрый старт
- [Скачать](https://otp.landian.vip/)
- [Документация](https://otp.landian.vip/help/)
Или скачайте Office Tool Plus с использованием PowerShell:
```powershell
irm https://officetool.plus | iex
```
## О разработке
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) В· GitHub [@YerongAI](https://github.com/YerongAI) В· Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-th-th.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> นี่คือ เครื่องมือที่ทรงพลังและมีประโยชน์สำหรับการปรับใช้ Office
รองรับการปรับใช้แบบกำหนดเองและการเปิดใช้งานผลิตภัณฑ์ต่อไปนี้:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
ฟังก์ชั่นและคุณสมบัติ:
- สร้างการกำหนดค่าการติดตั้ง Office การกำหนดค่าสามารถส่งออกไปยังที่เก็บบนพีซีของคุณ และสามารถนำเข้าจากพีซีของคุณและเว็บ
- ดาวน์โหลด Office ที่รองรับ `ทั้งหมด` ผ่านทางช่องทาง Office `ทั้งหมด` และ ชุดภาษาของ Office
- ติดตั้ง Office หรือ ปรับแต่ง Office ที่มีอยู่แล้วในเครื่องของคุณ เช่น การเพิ่มผลิตภัณฑ์และแอพพลิเคชั่นใหม่ หรือ ถอนการติดตั้งผลิตภัณฑ์และแอพพลิเคชั่น
- สร้างไฟล์ Office แบบ ISO รองรับการกำหนดค่าการติดตั้งเริ่มต้นและการกำหนดค่าการติดตั้งแบบไม่โต้ตอบ
- เปิดใช้งาน Office รองรับการเปิดใช้งานออนไลน์ การเปิดใช้งานโทรศัพท์ และการเปิดใช้งานผ่าน KMS
- รองรับการจัดการ การเปิดใช้งาน Office รวมถึงการจัดการใบอนุญาต การจัดการรหัสผลิตภัณฑ์ และการจัดการ KMS
- เปลี่ยนช่องทางการปรับปรุง Office รองรับการอัพเกรด/ดาวน์เกรด Office โดยไม่ต้องติดตั้ง Office ใหม่
- ลบ Office บังคับลบ Office ในขณะที่ไม่สามารถถอนการติดตั้งได้ตามปกติ รองการสนับสนุน Office 2003 จนถึง Office เวอร์ชั่นล่าสุด
- เครื่องมือ Office ในตัว รวมถึงการรีเซ็ตการตั้งค่า ในการแก้ไขปัญหา Office
- แปลงเอกสาร Office ตามค่ามาตรฐาน Office ได้อย่างรวดเร็วและเสถียร
- ปรับแต่งธีม และสามารถสร้าง Office Tool Plus ในแบบของคุณได้
- การตั้งค่าขั้นสูงช่วยให้คุณใช้ฟีเจอร์ขั้นสูงได้ เช่น ช่องทางภายในของ Office
## ดาวน์โหลด และ เริ่มต้นอย่างรวดเร็ว
- [ดาวน์โหลด](https://otp.landian.vip/)
- [เอกสาร](https://otp.landian.vip/help/)
หรือดาวน์โหลด Office Tool Plus โดยใช้ PowerShell:
```powershell
irm https://officetool.plus | iex
```
## เกี่ยวกับเรา
© 2016-2026 Yerong. สงวนลิขสิทธิ์
> บล็อก [@Yerong の小窝](https://blog.yerong.org/) · กิตฮับ [@YerongAI](https://github.com/YerongAI) · เทเลแกรม [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-tr-tr.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Yazar" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Dil" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Sürüm"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="Lisans" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> Office dağıtımları için güçlü ve kullanışlı bir araçtır.
Aşağıdaki ürünlerin özel dağıtımını ve etkinleştirilmesini destekler:
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 ve Çevrimiçi Plan 2.
- Project 2016, 2019, 2021, 2024 ve Çevrimiçi Masaüstü İstemcisi
İşlevler ve Özellikleri:
- Office yükleme yapılandırması oluşturun. Yapılandırma yerele aktarılabilir veya yerelden ya da web'den içe aktarılabilir.
- "TÜM" Office kanallarını ve "TÜM" Office dillerini destekleyen Office'i indirmeyi sağlar.
- Yeni ürünler ve uygulamalar eklemek veya ürün ve uygulamaları kaldırmak gibi Office'i yükler veya mevcut Office'i değiştirme imkanı sağlar.
- Office ISO'su oluşturun, varsayılan kurulum yapılandırmasını ve sessiz kurulum yapılandırmasını destekler.
- Office'i etkinleştirin. Çevrimiçi aktivasyonu, telefon aktivasyonunu ve KMS aktivasyonunu destekler.
- Lisans yönetimi, anahtar yönetimi ve KMS yönetimi dahil olmak üzere Office etkinleştirme yöntemlerini destekler.
- Office güncelleme kanalını değiştirir, Office'i yeniden yüklemeden Office'i yükseltmeyi / alt sürümü yüklemeyi destekler.
- Office'i kaldırır. Normal şekilde kaldırılamayan Office'i zorla kaldırmayı destekler, Office'i Office 2003 sürümünden en son Office sürümüne kadar destekler.
- Ayarların sıfırlanması, Office sorunlarının düzeltilmesi dahil tüm Office araçlarına sahiptir.
- Office belgelerini Office COM'daki gibi hızlı ve kararlı bir şekilde dönüştürür.
- Temalarınızı kişiselleştirebilir, kendinize özel Office Tool Plus'ınızı oluşturabilirsiniz.
- Gelişmiş ayarlar kısmından, Office dahili kanalları kullanarak daha gelişmiş özellikleri kullanmanızı sağlar.
## İndirme ve hızlı başlangıç
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Hakkında
© 2016-2026 Yerong.Her hakkı saklıdır.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-zh-cn.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> 一个强大且实用的 Office 部署工具。
支持以下产品的自定义部署与激活:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
功能与特性:
- 创建、导入或导出 Office 安装配置。
- 下载 Office,无论什么语言,什么更新通道,只要有的,我们都能给你。
- 安装 Office,简单几步,即可轻松选择任何你想要的产品、语言和应用程序。
- 修改 Office,支持一次性添加/删除任何东西。
- 创建 Office ISO 镜像文件,支持默认配置或后台安装。
- 激活 Office,支持联网激活、电话激活和 KMS 激活。
- 管理 Office 激活,可管理许可证、密钥以及 KMS 配置。
- 修改 Office 更新通道,支持在不重装的情况下升级/降级 Office。
- 移除 Office,即使无法正常卸载,我们也能帮你完整清理 Office。
- 转换 Office 文档,多种格式批量转换,又快又稳定。
- 更多 Office 工具,无论修复问题,亦或者重置 Office,都不在话下。
- 个性化主题,打造只属于你的 Office Tool Plus。
## 下载 & 快速入门
- [下载](https://otp.landian.vip/)
- [帮助文档](https://otp.landian.vip/help/)
或者使用 PowerShell 下载 Office Tool Plus:
```powershell
irm https://officetool.plus | iex
```
更多详细教程可访问 [Yerong の小窝](https://blog.yerong.org/) 获取。
## 关于
© 2016-2026 Yerong. All Rights Reserved.
> 博客 [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README-zh-tw.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release" src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> 多功能集於一身的 Office 部署工具
支援以下 Office 產品的自訂部署和啟用:
- Microsoft 365
- Office 2016, 2019, 2021, 2024
- Visio 2016, 2019, 2021, 2024 & Online Plan 2
- Project 2016, 2019, 2021, 2024 & Online Desktop Client
除了部署 Office 之外,Office Tool Plus 還擁有以下便利功能:
- 支援使用 Office 全部 17 個頻道來進行查詢、下載、安裝操作
- 支援對現有已安裝 Office 進行產品、應用程式、語言套件的增刪操作
- 支援匯出/匯入 XML 設定文件
- 支援建立 ISO 安裝文件以供分享貨離線安裝使用
- 支援安裝或轉換 Office 授權
- 支援線上啟用、電話啟用(離線啟用)和 KMS 啟用
- 支援直接修改現有已安裝的 Office 更新頻道,無須重新安裝 Office
- 支援大量轉換 Office 文件,基於 Office API
- 一鍵清除 Office 的授權和金鑰
- 一鍵重設/強制移除 Office
## 下載 & 快速入門
- [下載](https://otp.landian.vip/)
- [快速入門(繁體)](https://otp.landian.vip/help/)
- [教學文章(繁體)](https://www.cotpear.com/topics/office-tool-plus/?utm_source=github.com/office-tool)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## 關於繁體中文(台灣) 維護與翻譯者
本站為 Office Tool 臺灣管理團隊,歡迎閱讀本站所發布的教學文章、臺灣地區通知。也歡迎您加入 Office Tool Plus 臺灣官方 Telegram 頻道!
- [Cotpear](https://www.cotpear.com)
- [Office Tool 臺灣管理團隊首頁](https://www.cotpear.com/p/office-tool-taiwan-official-website.html)
- [教學文章](https://www.cotpear.com/search/label/Office)
- [Telegram 頻道](https://t.me/ot_channel_tw)
- [關於《藍點網》授予本網之相關說明條款](https://policies.cotpear.com/terms/)
- [電子郵件聯絡](support@cotpear.com)
## 關於
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: README.md
================================================
#
<p align="center">
<img alt="Office Tool Plus Logo" src="https://otp.landian.vip/assets/images/logo.webp"/>
</p>
<p align="center">
<a href="https://blog.yerong.org/" target="_blank"><img alt="Author" src="https://img.shields.io/badge/Author-Yerong-blue?style=flat-square"/></a>
<img alt="Language" src="https://img.shields.io/badge/Language-C%23-green?style=flat-square"/>
<a href="https://otp.landian.vip/" target="_blank"><img alt="Release"
src="https://img.shields.io/github/v/release/YerongAI/Office-Tool?style=flat-square"/></a>
<img alt="License" src="https://img.shields.io/github/license/YerongAI/Office-Tool?style=flat-square"/>
</p>
> A powerful and useful tool for Office deployments.
Supports custom deployment and activation of the following products:
- Microsoft 365.
- Office 2016, 2019, 2021, 2024.
- Visio 2016, 2019, 2021, 2024 & Online Plan 2.
- Project 2016, 2019, 2021, 2024 & Online Desktop Client.
Functions and Features:
- Create, import or export Office installation configuration.
- Download Office in any language, and from any update channel.
- Install Office in just a few steps, choose the product, language, and apps you want.
- Modify Office installation, easy to add or remove anything at once.
- Create Office ISO, supports default installation config and silent installation config.
- Activate Office, support online activation, phone activation and KMS activation.
- Support Office activation management, including license management, key management and KMS management.
- Change Office update channel, support upgrading/downgrading Office without reinstalling Office.
- Force remove Office while it can’t be uninstalled in normal way, supports from Office 2003 to the latest Office version.
- Fast and stable to convert Office documents, based on Office COM.
- Integrated Office tools, including resetting settings, fixing Office problems.
- Personalize theme, build your special Office Tool Plus.
## Download and quick start
- [Download](https://otp.landian.vip/)
- [Documentation](https://otp.landian.vip/help/)
Or download Office Tool Plus using PowerShell:
```powershell
irm https://officetool.plus | iex
```
## Thanks to the Translators
| Culture | Name | Translators |
| :-- | :-- | :-- |
| ar-ly | العربية (ليبيا) | Abdul Salam Bin Ali |
| de-de | Deutsch (Deutschland) | [Berny23](https://steamcommunity.com/id/Berny23) |
| en-gb | English (United Kingdom) | [Mcforwin](https://github.com/Mcforwin) |
| en-us | English (United States) | [Yerong](https://www.officetool.plus/) |
| hu-hu | magyar (Magyarország) | [John Fowler](https://github.com/JohnFowler58) |
| id-id | Bahasa Indonesia (Indonesia) | [Ida Bagus Anom Sanjaya](https://fb.me/Anom.Sanjaya17), [Reno Sifana Paksi](https://linktr.ee/renosifana.paksi) |
| it-it | italiano (Italia) | [garf02](https://github.com/garf02), [bovirus](https://github.com/bovirus) |
| ja-jp | 日本語 (日本) | [秋山へいわ](https://github.com/akio1321) |
| ko-kr | 한국어 (대한민국) | [VenusGirl❤](https://github.com/VenusGirl) |
| my-mm | မြန်မာ (မြန်မာ) | [Paing Thet Kyaw](https://github.com/Paing100) |
| nl-nl | Nederlands (Nederland) | [Kajoe](https://github.com/Kajoe1) |
| pl-pl | polski (Polska) | [JakubDriver](https://github.com/jakubdriver) |
| pt-br | português (Brasil) | [Igor Rückert](https://github.com/igorruckert) |
| ru-ru | pусский (Россия) | [Долматов Алексей](https://github.com/iDolmatov) |
| th-th | ไทย (ไทย) | [dekthaiinchina](https://github.com/dekthaiinchina) |
| tr-tr | Türkçe (Türkiye) | [Tayfun Akkoyun](https://github.com/crasadure) |
| uk-ua | українська (Україна) | [Olexii Korshunov](https://github.com/korshunov-olexiy) |
| vi-vn | Tiếng Việt (Việt Nam) | [Nguyen Quang Trung](https://github.com/TrungThachDau) |
| zh-tw | 繁體中文 (台灣) | [Yi Chi](https://www.cotpear.com) |
| zho-yue | 粵語 (廣東) | [Yerong](https://www.officetool.plus/) |
## About
© 2016-2026 Yerong. All Rights Reserved.
> Blog [@Yerong の小窝](https://blog.yerong.org/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) · Discord [Office Tool Plus](https://otp.landian.vip/redirect/?ref=discord)
================================================
FILE: config/Launcher/Locales.json
================================================
[
{
"Name": "M365 Copilot",
"Description": "Supercharge productivity, streamline tasks, and uncover insights in seconds with secure AI chat grounded in your work and web data.",
"URL": "https://m365.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "تعزيز الإنتاجية، وتبسيط المهام، والكشف عن الرؤى في ثوانٍ من خلال الدردشة مع الذكاء الاصطناعي الآمن المستند إلى عملك وبيانات الويب."
},
"bg-bg": {
"Description": "Увеличете продуктивността, рационализирайте задачите и разкрийте прозрения за секунди с помощта на защитен AI чат, основан на вашата работа и уеб данни."
},
"cs-cz": {
"Description": "Zvyšte produktivitu, zjednodušte úkoly a objevujte poznatky během několika sekund pomocí bezpečného AI chatu založeného na vašich pracovních a webových datech."
},
"da-dk": {
"Description": "Boost produktiviteten, strømlin opgaver og afdæk indsigter på sekunder med sikker AI-chat baseret på dine arbejds- og webdata."
},
"de-de": {
"Description": "Steigern Sie die Produktivität, optimieren Sie Aufgaben und gewinnen Sie in Sekundenschnelle Erkenntnisse mit sicherem KI-Chat, der auf Ihren Arbeits- und Webdaten basiert."
},
"el-gr": {
"Description": "Ενισχύστε την παραγωγικότητα, απλοποιήστε τις εργασίες και ανακαλύψτε πληροφορίες σε δευτερόλεπτα με ασφαλή συνομιλία AI βασισμένη στα δεδομένα εργασίας και ιστού σας."
},
"es-es": {
"Description": "Potencia la productividad, simplifica tareas y descubre información en segundos con el chat de IA seguro basado en tus datos de trabajo y web."
},
"fi-fi": {
"Description": "Tehosta tuottavuutta, virtaviivaista tehtäviä ja löydä oivalluksia sekunneissa turvallisella tekoälychatilla, joka perustuu työ- ja verkkotietoihisi."
},
"fr-fr": {
"Description": "Augmentez la productivité, rationalisez les tâches et découvrez des insights en quelques secondes grâce au chat IA sécurisé basé sur vos données de travail et web."
},
"he-il": {
"Description": "הגבר את הפרודוקטיביות, פשט משימות וגלה תובנות תוך שניות עם צ'אט AI מאובטח המבוסס על נתוני העבודה והאינטרנט שלך."
},
"hu-hu": {
"Description": "Növelje a termelékenységet, egyszerűsítse a feladatokat és fedezzen fel betekintéseket másodpercek alatt a munka- és webes adatain alapuló biztonságos AI-csevegéssel."
},
"id-id": {
"Description": "Tingkatkan produktivitas, sederhanakan tugas, dan temukan wawasan dalam hitungan detik dengan obrolan AI yang aman berdasarkan data kerja dan web Anda."
},
"it-it": {
"Description": "Aumenta la produttività, semplifica le attività e scopri informazioni in pochi secondi con la chat AI sicura basata sui tuoi dati di lavoro e web."
},
"ja-jp": {
"Description": "あなたの仕事とウェブデータに基づく安全なAIチャットで、生産性を向上させ、タスクを効率化し、数秒で洞察を得ることができます"
},
"ko-kr": {
"Description": "업무 및 웹 데이터를 기반으로 한 안전한 AI 채팅으로 생산성을 높이고, 작업을 간소화하며, 순식간에 인사이트를 발견하세요"
},
"nb-no": {
"Description": "Boost produktiviteten, effektiviser oppgaver og avdekk innsikt på sekunder med sikker AI-chat basert på dine arbeids- og webdata."
},
"nl-nl": {
"Description": "Verhoog de productiviteit, stroomlijn taken en ontdek inzichten binnen seconden met veilige AI-chat gebaseerd op je werk- en webgegevens."
},
"pl-pl": {
"Description": "Zwiększ produktywność, usprawnij zadania i odkrywaj wnioski w kilka sekund dzięki bezpiecznemu czatowi AI opartemu na Twoich danych roboczych i internetowych."
},
"pt-br": {
"Description": "Aumente a produtividade, simplifique tarefas e descubra insights em segundos com chat de IA seguro baseado em seus dados de trabalho e web."
},
"pt-pt": {
"Description": "Aumente a produtividade, simplifique tarefas e descubra insights em segundos com chat de IA seguro baseado nos seus dados de trabalho e web."
},
"ro-ro": {
"Description": "Creșteți productivitatea, simplificați sarcinile și descoperiți informații în câteva secunde cu chat-ul AI securizat bazat pe datele dvs. de lucru și web."
},
"ru-ru": {
"Description": "Повысьте продуктивность, оптимизируйте задачи и получайте аналитические данные за секунды с помощью безопасного ИИ-чата на основе ваших рабочих и веб-данных."
},
"sv-se": {
"Description": "Öka produktiviteten, effektivisera uppgifter och upptäck insikter på sekunder med säker AI-chatt baserad på dina arbets- och webbdata."
},
"th-th": {
"Description": "เพิ่มประสิทธิภาพ จัดระเบียบงาน และค้นพบข้อมูลเชิงลึกในไม่กี่วินาทีด้วยการแชท AI ที่ปลอดภัยโดยอิงจากข้อมูลงานและเว็บของคุณ"
},
"tr-tr": {
"Description": "Çalışma ve web verilerinize dayalı güvenli AI sohbetiyle üretkenliği artırın, görevleri kolaylaştırın ve saniyeler içinde içgörüler keşfedin."
},
"uk-ua": {
"Description": "Підвищуйте продуктивність, оптимізуйте завдання та відкривайте інсайти за секунди за допомогою безпечного чату зі штучним інтелектом на основі ваших робочих і веб-даних."
},
"vi-vn": {
"Description": "Tăng cường năng suất, tối ưu hóa công việc và khám phá thông tin chi tiết trong vài giây với trò chuyện AI an toàn dựa trên dữ liệu công việc và web của bạn."
},
"zh-cn": {
"Description": "借助基于您的工作和网络数据的安全 AI 聊天功能,提高生产力、简化任务并在几秒钟内发现见解"
},
"zh-hk": {
"Description": "透過基於你的工作和網絡資料的安全 AI 聊天,提升生產力、簡化工作並在數秒內發掘見解"
},
"zh-sg": {
"Description": "使用基于您的工作和网络数据的安全 AI 聊天,提高生产力、简化任务并在几秒钟内发现见解"
},
"zh-tw": {
"Description": "透過以您的工作和網路資料為基礎的安全 AI 聊天功能,提升生產力、簡化工作並在幾秒鐘內發掘見解"
},
"zho-yue": {
"Description": "用基於你嗆工作同網絡資料嗆安全AI傾話,提升生產力、簡化工作,份分鑽就搞清楚更多見解"
},
"my-mm": {
"Description": "သင့်အလုပ်နှင့် ဝက်ဘ်ဒေတာများအပေါ်မူတည်သော လုံခြုံသော AI ချက်ဖြင့် ထုတ်လုပ်မှုကို မြှင့်တင်ပြီး လုပ်ငန်းများကို ရိုးရှင်းစွာလုပ်ပြီး စက္ကန့်အတွင်း ထိုးထွင်းမှုများကို ရှာဖွေနိုင်ပါသည်။"
}
}
},
{
"Name": "Access",
"Description": "Create your own database apps easily in formats that serve your business best.",
"URL": "https://products.office.com/en-us/access",
"Locales": {
"ar-sa": {
"Description": "إنشاء تطبيقات قواعد البيانات الخاصة بك بسهولة في التنسيقات التي تخدم أعمالك بشكل أفضل.",
"URL": "https://products.office.com/ar/access"
},
"bg-bg": {
"Description": "Създавайте лесно свои собствени приложения за бази данни във формати, които най-добре служат на вашия бизнес.",
"URL": "https://products.office.com/bg-bg/access"
},
"cs-cz": {
"Description": "Snadno vytvářejte vlastní databázové aplikace ve formátech, které nejlépe slouží vašemu podnikání.",
"URL": "https://products.office.com/cs-cz/access"
},
"da-dk": {
"Description": "Opret dine egne databaseapps nemt i formater, der passer bedst til din virksomhed.",
"URL": "https://products.office.com/da-dk/access"
},
"de-de": {
"Description": "Eigene Datenbankanwendungen in Formaten, die perfekt auf Ihr Unternehmen abgestimmt sind.",
"URL": "https://products.office.com/de-de/access"
},
"el-gr": {
"Description": "Δημιουργήστε εύκολα τις δικές σας εφαρμογές βάσεων δεδομένων σε μορφές που εξυπηρετούν καλύτερα την επιχείρησή σας.",
"URL": "https://products.office.com/el-gr/access"
},
"en-gb": {
"URL": "https://products.office.com/en-gb/access"
},
"es-es": {
"Description": "Crea tus propias aplicaciones de base de datos fácilmente en formatos adecuados para tu negocio.",
"URL": "https://products.office.com/es-es/access"
},
"fi-fi": {
"Description": "Luo helposti omat tietokantaohjelmasi muodoissa, jotka palvelevat parhaiten yritystäsi.",
"URL": "https://products.office.com/fi-fi/access"
},
"fr-fr": {
"Description": "Créez facilement vos propres applications de base de données dans des formats adaptés à votre activité.",
"URL": "https://products.office.com/fr-fr/access"
},
"he-il": {
"Description": "צור אפליקציות מסד נתונים שלך בקלות בפורמטים שמשרתים את העסק שלך בצורה הטובה ביותר.",
"URL": "https://products.office.com/he-il/access"
},
"hu-hu": {
"Description": "Egyszerűen létrehozhatja saját adatbázisappjait olyan formátumokban, amelyek a legjobban szolgálják vállalkozása igényeit.",
"URL": "https://products.office.com/hu-hu/access"
},
"id-id": {
"Description": "Buat aplikasi database Anda sendiri dengan mudah dalam format yang paling sesuai dengan bisnis.",
"URL": "https://products.office.com/id-id/access"
},
"it-it": {
"Description": "Crea con facilità le tue app di database nei formati più adatti al tuo business.",
"URL": "https://products.office.com/it-it/access"
},
"ja-jp": {
"Description": "ビジネスに最も適した形式で簡単にデータベース アプリを作成できます",
"URL": "https://products.office.com/ja-jp/access"
},
"ko-kr": {
"Description": "사용자 자신의 데이터베이스 앱을 자신의 비즈니스에 가장 적합한 형식으로 간단하게 만드세요.",
"URL": "https://products.office.com/ko-kr/access"
},
"nb-no": {
"Description": "Opprett dine egne databaseapper enkelt i formater som passer best for bedriften din.",
"URL": "https://products.office.com/nb-no/access"
},
"nl-nl": {
"Description": "Maak eenvoudig je eigen database-apps in een voor jouw bedrijf geschikte indeling.",
"URL": "https://products.office.com/nl-nl/access"
},
"pl-pl": {
"Description": "Łatwo twórz aplikacje baz danych w formatach najodpowiedniejszych dla Twojej firmy.",
"URL": "https://products.office.com/pl-pl/access"
},
"pt-br": {
"Description": "Crie facilmente suas próprias aplicações de banco de dados em formatos que atendem melhor ao seu negócio.",
"URL": "https://products.office.com/pt-br/access"
},
"pt-pt": {
"Description": "Crie facilmente as suas próprias aplicações de base de dados em formatos que melhor servem a sua empresa.",
"URL": "https://products.office.com/pt-pt/access"
},
"ro-ro": {
"Description": "Creați propriile aplicații de baze de date, în formatele cele mai utile afacerii dvs.",
"URL": "https://products.office.com/ro-ro/access"
},
"ru-ru": {
"Description": "С легкостью создавайте собственные приложения базы данных в удобных для вашего бизнеса форматах.",
"URL": "https://products.office.com/ru-ru/access"
},
"sv-se": {
"Description": "Skapa dina egna databasappar enkelt i format som passar din verksamhet bäst.",
"URL": "https://products.office.com/sv-se/access"
},
"th-th": {
"Description": "สร้างแอปฐานข้อมูลของคุณเองในรูปแบบที่รองรับธุรกิจของคุณได้ดีที่สุดได้ง่ายๆ",
"URL": "https://products.office.com/th-th/access"
},
"tr-tr": {
"Description": "İşle ilgili gereksinimlerinize en uygun biçimlerde kendi veritabanı uygulamalarınızı kolayca oluşturun.",
"URL": "https://products.office.com/tr-tr/access"
},
"uk-ua": {
"Description": "Легко створюйте власні програми бази даних у форматах, які найкраще відповідають вашому бізнесу.",
"URL": "https://products.office.com/uk-ua/access"
},
"vi-vn": {
"Description": "Dễ dàng tạo các ứng dụng cơ sở dữ liệu của riêng bạn ở định dạng phục vụ tốt nhất cho doanh nghiệp của bạn.",
"URL": "https://products.office.com/vi-vn/access"
},
"zh-cn": {
"Description": "使用最适合你业务的格式轻松创建你自己的数据库应用程序",
"URL": "https://products.office.com/zh-cn/access"
},
"zh-hk": {
"Description": "以最適合企業使用的格式,輕鬆建立您自己的資料庫應用程式",
"URL": "https://products.office.com/zh-hk/access"
},
"zh-sg": {
"Description": "以最适合企业使用的格式,轻松建立您自己的数据库应用程序",
"URL": "https://products.office.com/zh-cn/access"
},
"zh-tw": {
"Description": "以最適合企業使用的格式,輕鬆建立您自己的資料庫應用程式",
"URL": "https://products.office.com/zh-tw/access"
},
"zho-yue": {
"Description": "用最啱你公司嘅格式輕鬆整你自己嘅資料庫應用程式",
"URL": "https://products.office.com/zh-cn/access"
},
"my-mm": {
"Description": "သင့်လုပ်ငန်းအတွက် အကောင်းဆုံးဖြစ်သော ဖော်မတ်များဖြင့် ကိုယ်ပိုင်ဒေတာဘေ့စ်အက်ပ်များကို လွယ်ကူစွာဖန်တီးနိုင်ပါသည်။"
}
}
},
{
"Name": "Excel",
"Description": "Discover and connect to data, model and analyze it, and visualize insights.",
"URL": "https://excel.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "اكتشف وتواصل مع البيانات، ونمذجتها وتحليلها، وتصور الرؤى."
},
"bg-bg": {
"Description": "Открийте и се свържете с данни, моделирайте ги и ги анализирайте и визуализирайте прозрения."
},
"cs-cz": {
"Description": "Objevte a připojte se k datům, modelujte a analyzujte je a vizualizujte poznatky."
},
"da-dk": {
"Description": "Opdag og forbind til data, modellér og analyser det, og visualiser indsigter."
},
"de-de": {
"Description": "Ermitteln und verknüpfen Sie Daten, modellieren und analysieren Sie sie, und veranschaulichen Sie die Erkenntnisse."
},
"el-gr": {
"Description": "Ανακαλύψτε και συνδεθείτε με δεδομένα, μοντελοποιήστε και αναλύστε τα, και οπτικοποιήστε τις ανακαλύψεις."
},
"es-es": {
"Description": "Descubre y conéctate a los datos, modélalos, analízalos y visualiza los conocimientos."
},
"fi-fi": {
"Description": "Tutustu ja yhdistä tietoihin, mallinna ja analysoi niitä sekä visualisoi oivallukset."
},
"fr-fr": {
"Description": "Découvrer les données et connectez-vous à elles, modélisez-les et analysez-les, et visualisez les informations."
},
"he-il": {
"Description": "גלה והתחבר לנתונים, צור מודלים ונתח אותם, והצג תובנות."
},
"hu-hu": {
"Description": "Fedezze fel és csatlakozzon az adatokhoz, modellezze és elemezze azokat, és vizualizálja a betekintést."
},
"id-id": {
"Description": "Temukan dan hubungkan ke data, model dan menganalisanya, serta visualisasikan wawasan."
},
"it-it": {
"Description": "Scopri e connettiti ai dati, modellali, analizzali e visualizza approfondimenti."
},
"ja-jp": {
"Description": "データを検出して接続し、モデル化して分析し、洞察を視覚化します"
},
"ko-kr": {
"Description": "데이터를 발견하고 연결하여 모델링하고 분석하며 인사이트를 시각화합니다."
},
"nb-no": {
"Description": "Oppdag og koble til data, modellér og analyser det, og visualiser innsikt."
},
"nl-nl": {
"Description": "Ontdek en maak verbinding met data, modelleer en analyseer deze, en visualiseer inzichten."
},
"pl-pl": {
"Description": "Odkrywaj dane i łącz się z nimi, modeluj je i analizuj oraz wizualizuj spostrzeżenia."
},
"pt-br": {
"Description": "Descubra e conecte-se a dados, modele e analise-os e visualize insights."
},
"pt-pt": {
"Description": "Descubra e ligue-se a dados, modele e analise-os e visualize insights."
},
"ro-ro": {
"Description": "Descoperiți și conectați-vă la date, modelați-le și analizați-le și vizualizați informații."
},
"ru-ru": {
"Description": "Откройте и подключитесь к данным, создайте модели и проанализируйте их, и визуализируйте их."
},
"sv-se": {
"Description": "Upptäck och anslut till data, modellera och analysera det, och visualisera insikter."
},
"th-th": {
"Description": "ค้นพบและเชื่อมต่อกับข้อมูล สร้างแบบจำลองและวิเคราะห์ และแสดงภาพข้อมูลเชิงลึก"
},
"tr-tr": {
"Description": "Verileri keşfedin ve bunlarla bağlantı kurun, verileri modelleyin ve analiz edin ve içgörüleri görselleştirin."
},
"uk-ua": {
"Description": "Відкрийте та підключіться до даних, моделюйте та аналізуйте їх, а також візуалізуйте результати."
},
"vi-vn": {
"Description": "Khám phá và kết nối với dữ liệu, lập mô hình và phân tích dữ liệu cũng như trực quan hóa thông tin chi tiết."
},
"zh-cn": {
"Description": "轻松发现、直观显示和共享数据中的见解"
},
"zh-hk": {
"Description": "探索並連線到資料、建構模型並分析,以及將深入解析視覺化"
},
"zh-sg": {
"Description": "探索并连接到数据、建模和分析,并可视化洞察"
},
"zh-tw": {
"Description": "探索並連線到資料、建構模型並分析,以及將深入解析視覺化"
},
"zho-yue": {
"Description": "輕鬆搵到同埋連結數據、建立模型同分析、仲可以將啲見解視覺化"
},
"my-mm":{
"Description": "ဒေတာကို ရှာဖွေချိတ်ဆက်ပြီး၊ မော်ဒယ်ဖန်တီးခြင်းနှင့် ခွဲခြမ်းစိတ်ဖြာမှုများပြုလုပ်ကာ သုံးသပ်ချက်များကို ပုံဖော်၍ ပြသနိုင်သည်။"
}
}
},
{
"Name": "Forms",
"Description": "Create surveys, quizzes, and polls and easily see results in real time.",
"URL": "https://forms.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "إنشاء استطلاعات واختبارات واستطلاعات ورؤية النتائج بسهولة في الوقت الحقيقي."
},
"bg-bg": {
"Description": "Създавайте проучвания, викторини и анкети и лесно виждайте резултатите в реално време."
},
"cs-cz": {
"Description": "Vytvářejte průzkumy, kvízy a ankety a snadno sledujte výsledky v reálném čase."
},
"da-dk": {
"Description": "Opret spørgeskemaer, quizzer og afstemninger og se nemt resultaterne i realtid."
},
"de-de": {
"Description": "Erstellen Sie Umfragen, Quizze und Abstimmungen und sehen Sie die Ergebnisse einfach in Echtzeit."
},
"el-gr": {
"Description": "Δημιουργήστε έρευνες, κουίζ και δημοσκοπήσεις και δείτε εύκολα τα αποτελέσματα σε πραγματικό χρόνο."
},
"es-es": {
"Description": "Crea encuestas, cuestionarios y sondeos y ve fácilmente los resultados en tiempo real."
},
"fi-fi": {
"Description": "Luo kyselyitä, kyselyitä ja äänestyksiä ja näe tulokset helposti reaaliajassa."
},
"fr-fr": {
"Description": "Créer des enquêtes, des quiz et des sondages et voyez facilement les résultats en temps réel."
},
"he-il": {
"Description": "צור סקרים, חידונים והצבעות וראה תוצאות בזמן אמת בקלות."
},
"hu-hu": {
"Description": "Készítsen felméréseket, vetélkedőket és közvélemény-kutatásokat, és valós időben könnyen láthatja az eredményeket."
},
"id-id": {
"Description": "Membuat survei, kuis, dan jajak melihat, serta memantau hasil dengan mudah secara langsung."
},
"it-it": {
"Description": "Crea rassegne, quiz e sondaggi e visualizza facilmente i risultati in tempo reale."
},
"ja-jp": {
"Description": "アンケート、クイズ、投票を作成し、結果をリアルタイムで簡単に確認できます"
},
"ko-kr": {
"Description": "설문조사 작성, 퀴즈, 설문조사를 작성하고 실시간으로 결과를 쉽게 확인할 수 있습니다."
},
"nb-no": {
"Description": "Opprett undersøkelser, quizzer og avstemninger og se enkelt resultater i sanntid."
},
"nl-nl": {
"Description": "Maak enquêtes, quizzen en peilingen en bekijk de resultaten eenvoudig in realtime."
},
"pl-pl": {
"Description": "Twórz ankiety, quizy i ankiety oraz łatwo przeglądaj wyniki w czasie rzeczywistym."
},
"pt-br": {
"Description": "Crie pesquisas, questionários e enquetes e veja facilmente os resultados em tempo real."
},
"pt-pt": {
"Description": "Crie inquéritos, questionários e sondagens e veja facilmente os resultados em tempo real."
},
"ro-ro": {
"Description": "Creați studii, teste și sondaje și vedeți cu ușurință rezultatele în timp real."
},
"ru-ru": {
"Description": "Создавайте опросы, тесты и голосования и легко просматривайте результаты в реальном времени."
},
"sv-se": {
"Description": "Skapa undersökningar, quiz och omröstningar och se enkelt resultaten i realtid."
},
"th-th": {
"Description": "สร้างแบบสำรวจ แบบทดสอบ และโพล และดูผลลัพธ์แบบเรียลไทม์ได้อย่างง่ายดาย"
},
"tr-tr": {
"Description": "Anketler, sınavlar ve oylamalar oluşturun ve sonuçları gerçek zamanlı olarak kolayca görün."
},
"uk-ua": {
"Description": "Створюйте опитування, вікторини та голосування та легко переглядайте результати в реальному часі."
},
"vi-vn": {
"Description": "Tạo khảo sát, câu đố và thăm dò ý kiến và dễ dàng xem kết quả theo thời gian thực."
},
"zh-cn": {
"Description": "创建调查、测验和投票并实时轻松地查看结果"
},
"zh-hk": {
"Description": "建立問卷、測驗與投票,並輕鬆查看即時結果"
},
"zh-sg": {
"Description": "创建调查、测验和投票并实时轻松地查看结果"
},
"zh-tw": {
"Description": "建立問卷、測驗與投票,並輕鬆查看即時結果"
},
"zho-yue": {
"Description": "整問卷、測驗同投票,仲可以即時輕鬆睇到結果"
},
"my-mm": {
"Description": "စစ်တမ်းများ၊ ပဟေဋ္ဌိများနှင့် စစ်တမ်းများကို ဖန်တီးပြီး ရလဒ်များကို အချိန်နှင့်တပြေးညီ အလွယ်တကူကြည့်ရှုပါ။"
}
}
},
{
"Name": "Loop",
"Description": "Think, plan, and create together.",
"URL": "https://loop.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "فكر، خطط، وأنشئ معًا."
},
"bg-bg": {
"Description": "Мислете, планирайте и създавайте заедно."
},
"cs-cz": {
"Description": "Přemýšlejte, plánujte a tvořte společně."
},
"da-dk": {
"Description": "Tænk, planlæg og skab sammen."
},
"de-de": {
"Description": "Gemeinsam denken, planen und kreativ sein."
},
"el-gr": {
"Description": "Σκεφτείτε, σχεδιάστε και δημιουργήστε μαζί."
},
"es-es": {
"Description": "Piensa, planifica y crea juntos."
},
"fi-fi": {
"Description": "Ajattele, suunnittele ja luo yhdessä."
},
"fr-fr": {
"Description": "Réfléchissez, planifiez et créez ensemble."
},
"he-il": {
"Description": "חשוב, תכנן וצור ביחד."
},
"hu-hu": {
"Description": "Gondolkodjatok, tervezzetek és alkossatok együtt."
},
"id-id": {
"Description": "Berpikir, merencanakan, dan menciptakan bersama."
},
"it-it": {
"Description": "Pensa, progetta e crea insieme."
},
"ja-jp": {
"Description": "一緒に考え、計画し、創造する"
},
"ko-kr": {
"Description": "함께 생각하고, 계획하고, 창조하세요."
},
"nb-no": {
"Description": "Tenk, planlegg og skap sammen."
},
"nl-nl": {
"Description": "Denk, plan en creëer samen."
},
"pl-pl": {
"Description": "Myśl, planuj i twórz wspólnie."
},
"pt-br": {
"Description": "Pense, planeje e crie juntos."
},
"pt-pt": {
"Description": "Pense, planeie e crie juntos."
},
"ro-ro": {
"Description": "Gândiți, planificați și creați împreună."
},
"ru-ru": {
"Description": "Думайте, планируйте и создавайте вместе."
},
"sv-se": {
"Description": "Tänk, planera och skapa tillsammans."
},
"th-th": {
"Description": "คิด วางแผน และสร้างไปด้วยกัน"
},
"tr-tr": {
"Description": "Birlikte düşünün, planlayın ve yaratın."
},
"uk-ua": {
"Description": "Думайте, плануйте та створюйте разом."
},
"vi-vn": {
"Description": "Cùng suy nghĩ, lập kế hoạch và sáng tạo."
},
"zh-cn": {
"Description": "共同思考、规划与创造"
},
"zh-hk": {
"Description": "一起思考、計劃和創造"
},
"zh-sg": {
"Description": "共同思考、规划与创造"
},
"zh-tw": {
"Description": "一起思考、計劃和創造"
},
"zho-yue": {
"Description": "一齊諗、一齊計劃同埋一齊創造"
},
"my-mm": {
"Description": "စဉ်းစားပါ၊ စီစဉ်ပါ၊ အတူတကွဖန်တီးပါ။"
}
}
},
{
"Name": "OneDrive",
"Description": "Store, access, and share your files in one place.",
"URL": "https://onedrive.live.com/",
"Locales": {
"ar-sa": {
"Description": "قم بتخزين ملفاتك في مكان واحد والوصول إليها ومشاركتها."
},
"bg-bg": {
"Description": "Мислете, планирайте и създавайте заедно."
},
"cs-cz": {
"Description": "Ukládejte, přistupujte a sdílejte své soubory na jednom místě."
},
"da-dk": {
"Description": "Opbevar, få adgang til og del dine filer ét sted."
},
"de-de": {
"Description": "Speichern Sie Ihre Dateien an einem Ort, greifen Sie darauf zu und geben Sie sie frei."
},
"el-gr": {
"Description": "Αποθηκεύστε, αποκτήστε πρόσβαση και μοιραστείτε τα αρχεία σας σε ένα μέρος."
},
"es-es": {
"Description": "Almacena, accede y comparte tus archivos en un solo lugar."
},
"fi-fi": {
"Description": "Säilytä, käytä ja jaa tiedostosi yhdessä paikassa."
},
"fr-fr": {
"Description": "Stocker, accédez et partagez vos fichiers en un seul endroit."
},
"he-il": {
"Description": "אחסן, גש ושתף את הקבצים שלך במקום אחד."
},
"hu-hu": {
"Description": "Egy helyen tárolhatja, érheti el és oszthatja meg fájljait."
},
"id-id": {
"Description": "Penyimpanan, akses, dan berbagi berkas anda dalam satu tempat."
},
"it-it": {
"Description": "Archivia, accedi e condividi i file in un'unico posto."
},
"ja-jp": {
"Description": "ファイルを一か所に保存し、アクセスして共有します"
},
"ko-kr": {
"Description": "파일을 한곳에 저장하고, 액세스하고, 공유하세요."
},
"nb-no": {
"Description": "Lagre, få tilgang til og del filene dine på ett sted."
},
"nl-nl": {
"Description": "Bewaar, open en deel uw bestanden op één plek."
},
"pl-pl": {
"Description": "Przechowuj, otwieraj i udostępniaj swoje pliki w jednym miejscu."
},
"pt-br": {
"Description": "Armazene, acesse e compartilhe seus arquivos em um só lugar."
},
"pt-pt": {
"Description": "Armazene, aceda e partilhe os seus ficheiros num único local."
},
"ro-ro": {
"Description": "Stocați, accesați și partajați fișierele într-un singur loc."
},
"ru-ru": {
"Description": "Храните, получайте доступ и делитесь файлами в одном месте."
},
"sv-se": {
"Description": "Lagra, kom åt och dela dina filer på en plats."
},
"th-th": {
"Description": "จัดเก็บ เข้าถึง และแบ่งปันไฟล์ของคุณในที่เดียว"
},
"tr-tr": {
"Description": "Dosyalarınızı tek bir yerde depolayın, erişin ve paylaşın."
},
"uk-ua": {
"Description": "Зберігайте, отримуйте доступ до файлів і діліться ними в одному місці."
},
"vi-vn": {
"Description": "Lưu trữ, truy cập và chia sẻ tập tin của bạn ở một nơi."
},
"zh-cn": {
"Description": "无论身在何处,都能通过任何设备随时获取重要文件"
},
"zh-hk": {
"Description": "在同一處儲存、存取及共用檔案"
},
"zh-sg": {
"Description": "无论身在何处,都能通过任何设备随时获取重要文件"
},
"zh-tw": {
"Description": "在同一處儲存、存取及共用檔案"
},
"zho-yue": {
"Description": "喺同一個地方儲存、存取同分享你嘅檔案"
},
"my-mm": {
"Description": "သင့်ဖိုင်များကို တစ်နေရာတည်းတွင် သိမ်းဆည်းခြင်း၊ ဝင်ရောက်ကြည့်ရှုခြင်း၊ မျှဝေခြင်းများ ပြုလုပ်နိုင်ပါသည်။"
}
}
},
{
"Name": "OneNote",
"Description": "Capture and organize your notes across all your devices.",
"URL": "https://onenote.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "التقاط وتنظيم ملاحظاتك عبر جميع أجهزتك."
},
"bg-bg": {
"Description": "Записвайте и организирайте бележките си на всичките си устройства."
},
"cs-cz": {
"Description": "Zachytávejte a organizujte své poznámky na všech svých zařízeních."
},
"da-dk": {
"Description": "Fang og organiser dine noter på alle dine enheder."
},
"de-de": {
"Description": "Erfassen und organisieren Sie Ihre Notizen auf all Ihren Geräten."
},
"el-gr": {
"Description": "Καταγράψτε και οργανώστε τις σημειώσεις σας σε όλες τις συσκευές σας."
},
"es-es": {
"Description": "Captura y organiza tus notas en todos tus dispositivos."
},
"fi-fi": {
"Description": "Tallenna ja järjestä muistiinpanosi kaikilla laitteillasi."
},
"fr-fr": {
"Description": "Capturer et organisez vos notes sur tous vos appareils."
},
"he-il": {
"Description": "תפוס וארגן את ההערות שלך בכל המכשירים שלך."
},
"hu-hu": {
"Description": "Rögzítse és rendszerezze jegyzeteit az összes eszközén."
},
"id-id": {
"Description": "Mengangkap dan mengatur catatan anda dari semua perangkat anda."
},
"it-it": {
"Description": "Cattura e organizza le note in tutti i dispositivi."
},
"ja-jp": {
"Description": "すべてのデバイスでノートをキャプチャして整理します"
},
"ko-kr": {
"Description": "모든 장치에서 노트를 캡처하고 정리하세요."
},
"nb-no": {
"Description": "Fang og organiser notatene dine på alle enhetene dine."
},
"nl-nl": {
"Description": "Leg uw notities vast en organiseer ze op al uw apparaten."
},
"pl-pl": {
"Description": "Przechwytuj i porządkuj swoje notatki na wszystkich swoich urządzeniach."
},
"pt-br": {
"Description": "Capture e organize suas anotações em todos os seus dispositivos."
},
"pt-pt": {
"Description": "Capture e organize as suas notas em todos os seus dispositivos."
},
"ro-ro": {
"Description": "Captează și organizează notele pe toate dispozitivele tale."
},
"ru-ru": {
"Description": "Захватывайте и организуйте свои заметки на всех устройствах."
},
"sv-se": {
"Description": "Fånga och organisera dina anteckningar på alla dina enheter."
},
"th-th": {
"Description": "จับภาพและจัดระเบียบ บันทึกย่อของคุณในทุกอุปกรณ์"
},
"tr-tr": {
"Description": "Notlarınızı tüm cihazlarınızda yakalayın ve düzenleyin."
},
"uk-ua": {
"Description": "Захоплюйте та організовуйте свої нотатки на всіх пристроях."
},
"vi-vn": {
"Description": "Ghi lại và sắp xếp ghi chú trên mọi thiết bị."
},
"zh-cn": {
"Description": "跨所有设备捕获和整理笔记"
},
"zh-hk": {
"Description": "在您所有的裝置上擷取並整理筆記"
},
"zh-sg": {
"Description": "跨所有设备捕获和整理笔记"
},
"zh-tw": {
"Description": "在您所有的裝置上擷取並整理筆記"
},
"zho-yue": {
"Description": "喺你所有設備上記低同整理你嘅筆記"
},
"my-mm": {
"Description": "သင့်ကိရိယာများအားလုံးတွင် သင့်မှတ်စုများကို မှတ်တမ်းတင်ပြီး စနစ်တကျ စုစည်းနိုင်ပါသည်။"
}
}
},
{
"Name": "Outlook (classic)",
"Description": "Manage your email, schedules, contacts, and to-dos.",
"URL": "https://outlook.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "قم بإدارة بريدك الإلكتروني، وجدولك الزمني، وجهات الاتصال، والمهام التي يجب القيام بها."
},
"bg-bg": {
"Description": "Управлявайте имейла, графика, контактите и задачите си."
},
"cs-cz": {
"Description": "Spravujte svůj e-mail, plány, kontakty a úkoly."
},
"da-dk": {
"Description": "Administrer din e-mail, tidsplaner, kontakter og opgaver."
},
"de-de": {
"Description": "Verwalten Sie Ihre E-Mails, Zeitpläne, Kontakte und Aufgaben."
},
"el-gr": {
"Description": "Διαχειριστείτε το ηλεκτρονικό ταχυδρομείο, τα προγράμματα, τις επαφές και τις εργασίες σας."
},
"es-es": {
"Description": "Administra tu correo electrónico, horarios, contactos y tareas."
},
"fi-fi": {
"Description": "Hallitse sähköpostiasi, aikataulujasi, yhteystietojasi ja tehtäviäsi."
},
"fr-fr": {
"Description": "Gérez vos e-mails, calendriers, contacts et tâches."
},
"he-il": {
"Description": "נהל את הדואר האלקטרוני, לוחות הזמנים, אנשי הקשר והמשימות שלך."
},
"hu-hu": {
"Description": "Kezelje e-mailjeit, ütemterveit, kapcsolatait és teendőit."
},
"id-id": {
"Description": "Kelola email, jadwal, kontak, dan daftar tugas Anda."
},
"it-it": {
"Description": "Gestisci la tua email, i programmi, i contatti e le attività."
},
"ja-jp": {
"Description": "メール、スケジュール、連絡先、To Doを管理します"
},
"ko-kr": {
"Description": "이메일, 일정, 연락처 및 할 일을 관리하세요."
},
"nb-no": {
"Description": "Administrer e-post, tidsplaner, kontakter og oppgaver."
},
"nl-nl": {
"Description": "Beheer uw e-mail, agenda's, contacten en taken."
},
"pl-pl": {
"Description": "Zarządzaj swoją pocztą e-mail, harmonogramami, kontaktami i zadaniami."
},
"pt-br": {
"Description": "Gerencie seu e-mail, agendas, contatos e tarefas."
},
"pt-pt": {
"Description": "Gerencie o seu e-mail, agendas, contactos e tarefas."
},
"ro-ro": {
"Description": "Gestionați e-mailurile, programele, contactele și sarcinile."
},
"ru-ru": {
"Description": "Управляйте своей электронной почтой, расписаниями, контактами и задачами."
},
"sv-se": {
"Description": "Hantera din e-post, scheman, kontakter och uppgifter."
},
"th-th": {
"Description": "จัดการอีเมล กำหนดการ รายชื่อติดต่อ และสิ่งที่ต้องทำของคุณ"
},
"tr-tr": {
"Description": "E-postunuzu, programlarınızı, kişilerinizi ve yapılacaklarınızı yönetin."
},
"uk-ua": {
"Description": "Керуйте своєю електронною поштою, розкладами, контактами та завданнями."
},
"vi-vn": {
"Description": "Quản lý email, lịch trình, danh bạ và việc cần làm của bạn."
},
"zh-cn": {
"Description": "管理您的电子邮件、计划、联系人和待办事项"
},
"zh-hk": {
"Description": "管理您的電郵、行程、聯絡人和待辦事項"
},
"zh-sg": {
"Description": "管理您的电子邮件、日程安排、联系人和待办事项"
},
"zh-tw": {
"Description": "管理您的電郵、行程、聯絡人和待辦事項"
},
"zho-yue": {
"Description": "管理你嘅電郵、時間表、聯絡人同待辦事項"
},
"my-mm": {
"Description": "သင့်အီးမေးလ်၊ အချိန်ဇယားများ၊ ဆက်သွယ်ရန်များနှင့် ပြီးစီးရန်အရာများကို စီမံခန့်ခွဲပါ။"
}
}
},
{
"Name": "Outlook",
"Description": "Stay on top of multiple accounts with email, calendars, and contacts in one place.",
"URL": "https://outlook.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "ابق على اطلاع على عدة حسابات بريد إلكتروني وتقويمات وجهات اتصال في مكان واحد."
},
"bg-bg": {
"Description": "Следете няколко акаунта с имейли, календари и контакти на едно място."
},
"cs-cz": {
"Description": "Mějte přehled o více účtech s e-maily, kalendáři a kontakty na jednom místě."
},
"da-dk": {
"Description": "Hold styr på flere konti med e-mails, kalendere og kontakter på ét sted."
},
"de-de": {
"Description": "Behalten Sie mehrere Konten mit E-Mails, Kalendern und Kontakten an einem Ort im Blick."
},
"el-gr": {
"Description": "Παραμείνετε ενήμεροι για πολλαπλούς λογαριασμούς με ηλεκτρονικά μηνύματα, ημερολόγια και επαφές σε ένα μέρος."
},
"es-es": {
"Description": "Mantente al tanto de varias cuentas con correos electrónicos, calendarios y contactos en un solo lugar."
},
"fi-fi": {
"Description": "Pysy useiden tiliensä sähköpostien, kalenterien ja yhteystietojen tasalla yhdessä paikassa."
},
"fr-fr": {
"Description": "Gérez plusieurs comptes avec des e-mails, des calendriers et des contacts en un seul endroit."
},
"he-il": {
"Description": "הישאר מעודכן בחשבונות מרובים עם דואר אלקטרוני, לוחות שנה ואנשי קשר במקום אחד."
},
"hu-hu": {
"Description": "Kezelje több fiókját egy helyen e-mailekkel, naptárakkal és névjegyekkel."
},
"id-id": {
"Description": "Tetap di atas beberapa akun dengan email, kalender, dan kontak di satu tempat."
},
"it-it": {
"Description": "Gestisci più account con email, calendari e contatti in un unico posto."
},
"ja-jp": {
"Description": "複数のアカウントのメール、カレンダー、連絡先を一か所で管理します"
},
"ko-kr": {
"Description": "한 곳에서 여러 계정의 이메일, 일정 및 연락처를 관리하세요."
},
"nb-no": {
"Description": "Hold deg oppdatert på flere kontoer med e-post, kalendere og kontakter på ett sted."
},
"nl-nl": {
"Description": "Blijf op de hoogte van meerdere accounts met e-mails, agenda's en contacten op één plek."
},
"pl-pl": {
"Description": "Zarządzaj wieloma kontami z e-mailami, kalendarzami i kontaktami w jednym miejscu."
},
"pt-br": {
"Description": "Mantenha-se a par de várias contas com correio eletrónico, calendários e contactos num só local."
},
"pt-pt": {
"Description": "Mantenha-se a par de várias contas com correio eletrónico, calendários e contactos num só local."
},
"ro-ro": {
"Description": "Rămâneți la curent cu mai multe conturi cu e-mailuri, calendare și contacte într-un singur loc."
},
"ru-ru": {
"Description": "Управляйте несколькими учетными записями с электронной почтой, календарями и контактами в одном месте."
},
"sv-se": {
"Description": "Håll koll på flera konton med e-post, kalendrar och kontakter på en plats."
},
"th-th": {
"Description": "ติดตามหลายบัญชีด้วยอีเมล ปฏิทิน และผู้ติดต่อในที่เดียว"
},
"tr-tr": {
"Description": "Birden fazla hesabı e-postalar, takvimler ve kişilerle tek bir yerde yönetin."
},
"uk-ua": {
"Description": "Керуйте кількома обліковими записами з електронною поштою, календарями та контактами в одному місці."
},
"vi-vn": {
"Description": "Quản lý nhiều tài khoản với email, lịch và danh bạ ở một nơi."
},
"zh-cn": {
"Description": "一站式管理多个帐户的电子邮件、日历和联系人,尽在掌控之中"
},
"zh-hk": {
"Description": "一站式使用電子郵件、日曆和聯繫人,一手掌握多個帳戶"
},
"zh-sg": {
"Description": "一站式管理多个帐户的电子邮件、日历和联系人,尽在掌控之中"
},
"zh-tw": {
"Description": "一站式使用電子郵件、日曆和聯繫人,一手掌握多個帳戶"
},
"zho-yue": {
"Description": "一站式管理多個帳戶嘅電郵、日曆同埋聯絡人,全部搞掂曬"
},
"my-mm": {
"Description": "အီးမေးလ်၊ ပြက္ခဒိန်၊ အဆက်အသွယ်များကို တစ်နေရာတည်းတွင် စုစည်းထား၍ အကောင့်အမျိုးမျိုးကို လွယ်ကူစွာ ထိန်းချုပ်နိုင်ပါသည်။"
}
}
},
{
"Name": "Planner",
"Description": "Organize teamwork and collaborate on projects in one place.",
"URL": "https://planner.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "نظم العمل الجماعي وتعاون على المشاريع في مكان واحد."
},
"bg-bg": {
"Description": "Организирайте отборната работа и сътрудничете по проекти на едно място."
},
"cs-cz": {
"Description": "Organizujte týmovou práci a spolupracujte na projektech na jednom místě."
},
"da-dk": {
"Description": "Organiser teamwork og samarbejd om projekter på ét sted."
},
"de-de": {
"Description": "Organisieren Sie Teamarbeit und arbeiten Sie an Projekten an einem Ort zusammen."
},
"el-gr": {
"Description": "Οργανώστε την ομαδική εργασία και συνεργαστείτε σε έργα σε ένα μέρος."
},
"es-es": {
"Description": "Organiza el trabajo en equipo y colabora en proyectos en un solo lugar."
},
"fi-fi": {
"Description": "Järjestä tiimityö ja tee yhteistyötä projekteissa yhdessä paikassa."
},
"fr-fr": {
"Description": "Organisez le travail d'équipe et collaborez sur des projets en un seul endroit."
},
"he-il": {
"Description": "ארגן עבודת צוות ושתף פעולה בפרויקטים במקום אחד."
},
"hu-hu": {
"Description": "Szervezze meg a csapatmunkát és dolgozzon együtt projekteken egy helyen."
},
"id-id": {
"Description": "Mengatur kerja tim dan berkolaborasi pada proyek di satu tempat."
},
"it-it": {
"Description": "Organizza il lavoro di squadra e collabora ai progetti in un unico posto."
},
"ja-jp": {
"Description": "チームワークを整理し、プロジェクトで協力する場所を一か所にまとめます"
},
"ko-kr": {
"Description": "한 곳에서 팀 작업을 조직화하고 프로젝트에서 협업하세요."
},
"nb-no": {
"Description": "Organiser teamarbeid og samarbeid om prosjekter på ett sted."
},
"nl-nl": {
"Description": "Organiseer teamwork en werk samen aan projecten op één plek."
},
"pl-pl": {
"Description": "Organizuj pracę zespołową i współpracuj nad projektami w jednym miejscu."
},
"pt-br": {
"Description": "Organize o trabalho em equipe e colabore em projetos em um só lugar."
},
"pt-pt": {
"Description": "Organize o trabalho em equipa e colabore em projetos num só local."
},
"ro-ro": {
"Description": "Organizați munca în echipă și colaborați la proiecte într-un singur loc."
},
"ru-ru": {
"Description": "Организуйте командную работу и сотрудничайте над проектами в одном месте."
},
"sv-se": {
"Description": "Organisera teamarbete och samarbeta om projekt på en plats."
},
"th-th": {
"Description": "จัดการทีมงานและร่วมมือกันในโปรเจคต์ที่เดียว"
},
"tr-tr": {
"Description": "Takım çalışmasını düzenleyin ve projelerde işbirliği yapın."
},
"uk-ua": {
"Description": "Організуйте командну роботу та співпрацюйте над проектами в одному місці."
},
"vi-vn": {
"Description": "Tổ chức công việc nhóm và hợp tác trên dự án ở một nơi."
},
"zh-cn": {
"Description": "在一个位置组织团队合作并协作项目"
},
"zh-hk": {
"Description": "在一個位置組織團隊合作並協作項目"
},
"zh-sg": {
"Description": "在一个位置组织团队合作并协作项目"
},
"zh-tw": {
"Description": "在一個位置組織團隊合作並協作項目"
},
"zho-yue": {
"Description": "喺同一個地方組織團隊工作同協作項目"
},
"my-mm": {
"Description": "အဖွဲ့လိုက်စုစည်းပြီး ပရောဂျက်များကို တစ်နေရာတည်းတွင် ပူးပေါင်းလုပ်ဆောင်နိုင်ပါသည်။"
}
}
},
{
"Name": "Power BI",
"Description": "Create rich, interactive reports with visual analytics at your fingertips.",
"URL": "https://www.microsoft.com/en-us/power-platform/products/power-bi/desktop",
"Locales": {
"ar-sa": {
"Description": "إنشاء تقارير تفاعلية وغنية بالتحليلات البصرية بسهولة.",
"URL": "https://www.microsoft.com/ar/power-platform/products/power-bi/desktop"
},
"bg-bg": {
"Description": "Създавайте богати, интерактивни доклади с визуална аналитика на вашите пръсти.",
"URL": "https://www.microsoft.com/bg-bg/power-platform/products/power-bi/desktop"
},
"cs-cz": {
"Description": "Vytvářejte bohaté interaktivní zprávy s vizuální analýzou na dosah ruky.",
"URL": "https://www.microsoft.com/cs-cz/power-platform/products/power-bi/desktop"
},
"da-dk": {
"Description": "Opret rige, interaktive rapporter med visuel analyse lige ved hånden.",
"URL": "https://www.microsoft.com/da-dk/power-platform/products/power-bi/desktop"
},
"de-de": {
"Description": "Erstellen Sie reichhaltige, interaktive Berichte mit visueller Analyse in Reichweite.",
"URL": "https://www.microsoft.com/de-de/power-platform/products/power-bi/desktop"
},
"el-gr": {
"Description": "Δημιουργήστε πλούσιες, διαδραστικές αναφορές με οπτικές αναλύσεις στα δάχτυλά σας.",
"URL": "https://www.microsoft.com/el-gr/power-platform/products/power-bi/desktop"
},
"en-gb": {
"URL": "https://www.microsoft.com/en-gb/power-platform/products/power-bi/desktop"
},
"es-es": {
"Description": "Crea informes interactivos y ricos con análisis visual al alcance de tu mano.",
"URL": "https://www.microsoft.com/es-es/power-platform/products/power-bi/desktop"
},
"fi-fi": {
"Description": "Luo rikkaita, vuorovaikutteisia raportteja visuaalisen analytiikan avulla käden ulottuvilla.",
"URL": "https://www.microsoft.com/fi-fi/power-platform/products/power-bi/desktop"
},
"fr-fr": {
"Description": "Créez des rapports riches et interactifs avec des analyses visuelles à portée de main.",
"URL": "https://www.microsoft.com/fr-fr/power-platform/products/power-bi/desktop"
},
"he-il": {
"Description": "צור דוחות אינטראקטיביים ועשירים עם ניתוחים חזותיים בקצה האצבעות שלך.",
"URL": "https://www.microsoft.com/he-il/power-platform/products/power-bi/desktop"
},
"hu-hu": {
"Description": "Részletgazdag, interaktív jelentéseket hozhat létre kéznél lévő vizuális elemzésekkel.",
"URL": "https://www.microsoft.com/hu-hu/power-platform/products/power-bi/desktop"
},
"id-id": {
"Description": "Buat laporan interaktif dan kaya dengan analisis visual di ujung jari Anda.",
"URL": "https://www.microsoft.com/id-id/power-platform/products/power-bi/desktop"
},
"it-it": {
"Description": "Crea rappprti ricchi e interattivi con analisi visive a portata di mano.",
"URL": "https://www.microsoft.com/it-it/power-platform/products/power-bi/desktop"
},
"ja-jp": {
"Description": "視覚的な分析を使ってリッチでインタラクティブなレポートを作成します",
"URL": "https://www.microsoft.com/ja-jp/power-platform/products/power-bi/desktop"
},
"ko-kr": {
"Description": "시각적 분석을 통해 풍부하고 대화형 보고서를 작성하세요.",
"URL": "https://www.microsoft.com/ko-kr/power-platform/products/power-bi/desktop"
},
"nb-no": {
"Description": "Opprett rike, interaktive rapporter med visuell analyse rett ved fingertuppene.",
"URL": "https://www.microsoft.com/nb-no/power-platform/products/power-bi/desktop"
},
"nl-nl": {
"Description": "Maak rijke, interactieve rapporten met visuele analyses binnen handbereik.",
"URL": "https://www.microsoft.com/nl-nl/power-platform/products/power-bi/desktop"
},
"pl-pl": {
"Description": "Twórz bogate, interaktywne raporty z analizami wizualnymi na wyciągnięcie ręki.",
"URL": "https://www.microsoft.com/pl-pl/power-platform/products/power-bi/desktop"
},
"pt-br": {
"Description": "Crie relatórios ricos e interativos com análises visuais ao seu alcance.",
"URL": "https://www.microsoft.com/pt-br/power-platform/products/power-bi/desktop"
},
"pt-pt": {
"Description": "Crie relatórios ricos e interativos com análises visuais ao seu alcance.",
"URL": "https://www.microsoft.com/pt-pt/power-platform/products/power-bi/desktop"
},
"ro-ro": {
"Description": "Creați rapoarte interactive și bogate cu analize vizuale la îndemână.",
"URL": "https://www.microsoft.com/ro-ro/power-platform/products/power-bi/desktop"
},
"ru-ru": {
"Description": "Создавайте богатые интерактивные отчеты с визуальным анализом на расстоянии вытянутой руки.",
"URL": "https://www.microsoft.com/ru-ru/power-platform/products/power-bi/desktop"
},
"sv-se": {
"Description": "Skapa rika, interaktiva rapporter med visuell analys inom räckhåll.",
"URL": "https://www.microsoft.com/sv-se/power-platform/products/power-bi/desktop"
},
"th-th": {
"Description": "สร้างรายงานที่มีความสมบูรณ์และสามารถแสดงผลการวิเคราะห์ทางสายตาได้ง่ายๆ",
"URL": "https://www.microsoft.com/th-th/power-platform/products/power-bi/desktop"
},
"tr-tr": {
"Description": "Görsel analizlerle zengin, etkileşimli raporlar oluşturun.",
"URL": "https://www.microsoft.com/tr-tr/power-platform/products/power-bi/desktop"
},
"uk-ua": {
"Description": "Створюйте багаті інтерактивні звіти з візуальним аналізом під рукою.",
"URL": "https://www.microsoft.com/uk-ua/power-platform/products/power-bi/desktop"
},
"vi-vn": {
"Description": "Tạo báo cáo tương tác và phong phú với phân tích trực quan ngay tại ngón tay bạn.",
"URL": "https://www.microsoft.com/vi-vn/power-platform/products/power-bi/desktop"
},
"zh-cn": {
"Description": "利用可视化分析免费创建内容丰富的交互式报表,一切尽在指尖",
"URL": "https://www.microsoft.com/zh-cn/power-platform/products/power-bi/desktop"
},
"zh-hk": {
"Description": "彈指間就能建立內容豐富,包含各種視覺效果的互動式分析報表",
"URL": "https://www.microsoft.com/zh-hk/power-platform/products/power-bi/desktop"
},
"zh-sg": {
"Description": "利用可视化分析免费创建内容丰富的交互式报表,一切尽在指尖",
"URL": "https://www.microsoft.com/zh-cn/power-platform/products/power-bi/desktop"
},
"zh-tw": {
"Description": "彈指間就能建立內容豐富,包含各種視覺效果的互動式分析報表",
"URL": "https://www.microsoft.com/zh-tw/power-platform/products/power-bi/desktop"
},
"zho-yue": {
"Description": "一撳就可以整到內容豐富,包含各種視覺效果嘅互動分析報表",
"URL": "https://www.microsoft.com/zh-cn/power-platform/products/power-bi/desktop"
},
"my-mm": {
"Description": "နားလည်ရလွယ်သော ရုပ်ပုံများနှင့် အပြန်အလှန် တုန့်ပြန်နိုင်သော အစီရင်ခံစာများကို ဖန်တီးနိုင်ပါသည်။"
}
}
},
{
"Name": "PowerPoint",
"Description": "Design professional presentations.",
"URL": "https://powerpoint.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "تصميم عروض تقديمية احترافية."
},
"bg-bg": {
"Description": "Създавайте професионални презентации."
},
"cs-cz": {
"Description": "Navrhujte profesionální prezentace."
},
"da-dk": {
"Description": "Design professionelle præsentationer."
},
"de-de": {
"Description": "Gestalten Sie professionelle Präsentationen."
},
"el-gr": {
"Description": "Σχεδιάστε επαγγελματικές παρουσιάσεις."
},
"es-es": {
"Description": "Diseña presentaciones profesionales."
},
"fi-fi": {
"Description": "Suunnittele ammattimaisia esityksiä."
},
"fr-fr": {
"Description": "Concevoir des présentations professionnelles."
},
"he-il": {
"Description": "עיצוב הצגות מקצועיות."
},
"hu-hu": {
"Description": "Tervezzen professzionális prezentációkat."
},
"id-id": {
"Description": "Desain presentasi profesional."
},
"it-it": {
"Description": "Progetta presentazioni professionali."
},
"ja-jp": {
"Description": "プロフェッショナルなプレゼンテーションをデザインします"
},
"ko-kr": {
"Description": "전문적인 프레젠테이션을 디자인하세요."
},
"nb-no": {
"Description": "Design profesjonelle presentasjoner."
},
"nl-nl": {
"Description": "Professionele presentaties ontwerpen."
},
"pl-pl": {
"Description": "Projektuj profesjonalne prezentacje."
},
"pt-br": {
"Description": "Crie apresentações profissionais."
},
"pt-pt": {
"Description": "Crie apresentações profissionais."
},
"ro-ro": {
"Description": "Proiectați prezentări profesionale."
},
"ru-ru": {
"Description": "Создавайте профессиональные презентации."
},
"sv-se": {
"Description": "Designa professionella presentationer."
},
"th-th": {
"Description": "ออกแบบงานนำเสนอแบบมืออาชีพ"
},
"tr-tr": {
"Description": "Profesyonel sunumlar tasarlayın."
},
"uk-ua": {
"Description": "Створюйте професійні презентації."
},
"vi-vn": {
"Description": "Thiết kế bài thuyết trình chuyên nghiệp."
},
"zh-cn": {
"Description": "设计专业演示文稿"
},
"zh-hk": {
"Description": "設計專業簡報"
},
"zh-sg": {
"Description": "设计专业演示文稿"
},
"zh-tw": {
"Description": "設計專業簡報"
},
"zho-yue": {
"Description": "設計專業嘅簡報"
},
"my-mm": {
"Description": "ပရော်ဖက်ရှင်နယ်ဆန်သော တင်ပြချက်များကို ရေးဆွဲနိုင်ပါသည်။"
}
}
},
{
"Name": "Project",
"Description": "Develop project plans, assign tasks, track progress, and manage budgets.",
"URL": "https://products.office.com/en-us/project",
"Locales": {
"ar-sa": {
"Description": "قم بتطوير خطط المشروع، وتعيين المهام، وتتبع التقدم، وإدارة الميزانيات.",
"URL": "https://products.office.com/ar/project"
},
"bg-bg": {
"Description": "Разработете планове за проекти, задайте задачи, проследете напредъка и управлявайте бюджетите.",
"URL": "https://products.office.com/bg-bg/project"
},
"cs-cz": {
"Description": "Vytvářejte plány projektů, přiřazujte úkoly, sledujte pokrok a spravujte rozpočty.",
"URL": "https://products.office.com/cs-cz/project"
},
"da-dk": {
"Description": "Udvikle projektplaner, tildel opgaver, spore fremskridt og administrer budgetter.",
"URL": "https://products.office.com/da-dk/project"
},
"de-de": {
"Description": "Entwickeln Sie Projektpläne, weisen Sie Aufgaben zu, verfolgen Sie den Fortschritt und verwalten Sie Budgets.",
"URL": "https://products.office.com/de-de/project"
},
"el-gr": {
"Description": "Αναπτύξτε σχέδια έργων, αναθέστε εργασίες, παρακολουθήστε την πρόοδο και διαχειριστείτε τα προϋπολογισμάτα.",
"URL": "https://products.office.com/el-gr/project"
},
"en-gb": {
"URL": "https://products.office.com/en-gb/project"
},
"es-es": {
"Description": "Desarrolla planes de proyectos, asigna tareas, sigue el progreso y gestiona los presupuestos.",
"URL": "https://products.office.com/es-es/project"
},
"fi-fi": {
"Description": "Laadi projektisuunnitelmia, määritä tehtäviä, seuraa edistymistä ja hallitse budjetteja.",
"URL": "https://products.office.com/fi-fi/project"
},
"fr-fr": {
"Description": "Élaborer des plans de projet, attribuez des tâches, suivez les progrès et gérez les budgets.",
"URL": "https://products.office.com/fr-fr/project"
},
"he-il": {
"Description": "פתח תוכניות פרויקט, הקצה משימות, מעקב אחר התקדמות וניהול תקציבים.",
"URL": "https://products.office.com/he-il/project"
},
"hu-hu": {
"Description": "Projektterveket dolgozhat ki, tevékenységeket rendelhet hozzájuk, nyomon követheti az előrehaladást és kezelheti a költségvetéseket.",
"URL": "https://products.office.com/hu-hu/project"
},
"id-id": {
"Description": "Mengembangkan rencana proyek, menetapkan tugas, memantau kemajuan, dan mengelola anggaran.",
"URL": "https://products.office.com/id-id/project"
},
"it-it": {
"Description": "Sviluppa piani di progetto, assegna attività, monitora i progressi e gestisci i budget.",
"URL": "https://products.office.com/it-it/project"
},
"ja-jp": {
"Description": "プロジェクト計画を作成し、タスクを割り当て、進捗状況を追跡し、予算を管理します",
"URL": "https://products.office.com/ja-jp/project"
},
"ko-kr": {
"Description": "프로젝트 계획을 수립하고, 작업을 할당하고, 진행 상황을 추적하고, 예산을 관리하세요.",
"URL": "https://products.office.com/ko-kr/project"
},
"nb-no": {
"Description": "Utvikle prosjektplaner, tildele oppgaver, spore fremdrift og administrere budsjetter.",
"URL": "https://products.office.com/nb-no/project"
},
"nl-nl": {
"Description": " Projectplannen ontwikkelen, taken toewijzen, voortgang bijhouden en budgetten beheren.",
"URL": "https://products.office.com/nl-nl/project"
},
"pl-pl": {
"Description": "Twórz plany projektów, przydzielaj zadania, śledź postępy i zarządzaj budżetami.",
"URL": "https://products.office.com/pl-pl/project"
},
"pt-br": {
"Description": "Desenvolva planos de projeto, atribua tarefas, acompanhe o progresso e gerencie orçamentos.",
"URL": "https://products.office.com/pt-br/project"
},
"pt-pt": {
"Description": "Desenvolva planos de projeto, atribua tarefas, acompanhe o progresso e gerencie orçamentos.",
"URL": "https://products.office.com/pt-pt/project"
},
"ro-ro": {
"Description": "Elaborați planuri de proiect, atribuiți sarcini, urmăriți progresul și gestionați bugetele.",
"URL": "https://products.office.com/ro-ro/project"
},
"ru-ru": {
"Description": "Разработайте планы проектов, назначьте задачи, отслеживайте прогресс и управляйте бюджетами.",
"URL": "https://products.office.com/ru-ru/project"
},
"sv-se": {
"Description": "Utveckla projektplaner, tilldela uppgifter, spåra framsteg och hantera budgetar.",
"URL": "https://products.office.com/sv-se/project"
},
"th-th": {
"Description": "พัฒนาแผนโครงการ มอบหมายงาน ติดตามความคืบหน้า และจัดการงบประมาณ",
"URL": "https://products.office.com/th-th/project"
},
"tr-tr": {
"Description": "Proje planları geliştirin, görevler atayın, ilerlemeyi takip edin ve bütçeleri yönetin.",
"URL": "https://products.office.com/tr-tr/project"
},
"uk-ua": {
"Description": "Розробіть плани проектів, призначайте завдання, відстежуйте прогрес і керуйте бюджетами.",
"URL": "https://products.office.com/uk-ua/project"
},
"vi-vn": {
"Description": "Xây dựng kế hoạch dự án, phân công nhiệm vụ, theo dõi tiến độ và quản lý ngân sách.",
"URL": "https://products.office.com/vi-vn/project"
},
"zh-cn": {
"Description": "轻松地与其他人进行协作以快速启动并交付吸引人的项目",
"URL": "https://products.office.com/zh-cn/project"
},
"zh-hk": {
"Description": "便捷地與人協作以輕鬆交付吸引人的專案",
"URL": "https://products.office.com/zh-hk/project"
},
"zh-sg": {
"Description": "轻松地与其他人进行协作以快速启动并交付吸引人的项目",
"URL": "https://products.office.com/zh-cn/project"
},
"zh-tw": {
"Description": "便捷地與人協作以輕鬆交付吸引人的專案",
"URL": "https://products.office.com/zh-tw/project"
},
"zho-yue": {
"Description": "方便噉同人合作快速搞掂吸引人嘅項目",
"URL": "https://products.office.com/zh-cn/project"
},
"my-mm": {
"Description": "ပရောဂျက်အစီအစဉ်များ ဖန်တီးခြင်း၊ တာဝန်များ သတ်မှတ်ခြင်း၊ တိုးတက်မှုများ စောင့်ကြည့်ခြင်းနှင့် ဘတ်ဂျက်များ စီမံခန့်ခွဲနိုင်ပါသည်။"
}
}
},
{
"Name": "Sway",
"Description": "Create and share interactive reports, presentations, and personal stories.",
"URL": "https://sway.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "إنشاء ومشاركة تقارير تفاعلية وعروض تقديمية وقصص شخصية."
},
"bg-bg": {
"Description": "Създавайте и споделяйте интерактивни доклади, презентации и лични истории."
},
"cs-cz": {
"Description": "Vytvářejte a sdílejte interaktivní zprávy, prezentace a osobní příběhy."
},
"da-dk": {
"Description": "Opret og del interaktive rapporter, præsentationer og personlige historier."
},
"de-de": {
"Description": "Erstellen und teilen Sie interaktive Berichte, Präsentationen und persönliche Geschichten."
},
"el-gr": {
"Description": "Δημιουργήστε και μοιραστείτε διαδραστικές αναφορές, παρουσιάσεις και προσωπικές ιστορίες."
},
"es-es": {
"Description": "Crea y comparte informes interactivos, presentaciones e historias personales."
},
"fi-fi": {
"Description": "Luo ja jaa vuorovaikutteisia raportteja, esityksiä ja henkilökohtaisia tarinoita."
},
"fr-fr": {
"Description": "Créez et partagez des rapports interactifs, des présentations et des histoires personnelles."
},
"he-il": {
"Description": "צור ושתף דוחות אינטראקטיביים, הצגות וסיפורים אישיים."
},
"hu-hu": {
"Description": "Interaktív jelentéseket, prezentációkat és személyes történeteket hozhat létre és oszthat meg."
},
"id-id": {
"Description": "Membuat dan membagikan laporan interaktif, presentasi, dan kisah pribadi."
},
"it-it": {
"Description": "Crea e condividi rapporti interattivi, presentazioni e storie personali."
},
"ja-jp": {
"Description": "インタラクティブなレポート、プレゼンテーション、個人的なストーリーを作成して共有します"
},
"ko-kr": {
"Description": "대화형 보고서, 프레젠테이션 및 개인 스토리를 만들고 공유하세요."
},
"nb-no": {
"Description": "Opprett og del interaktive rapporter, presentasjoner og personlige historier."
},
"nl-nl": {
"Description": "Maak en deel interactieve rapporten, presentaties en persoonlijke verhalen."
},
"pl-pl": {
"Description": "Twórz i udostępniaj interaktywne raporty, prezentacje i osobiste historie."
},
"pt-br": {
"Description": "Crie e compartilhe relatórios interativos, apresentações e histórias pessoais."
},
"pt-pt": {
"Description": "Criar e partilhar relatórios interativos, apresentações e histórias pessoais."
},
"ro-ro": {
"Description": "Creați și partajați rapoarte interactive, prezentări și povești personale."
},
"ru-ru": {
"Description": "Создавайте и делитесь интерактивными отчетами, презентациями и личными историями."
},
"sv-se": {
"Description": "Skapa och dela interaktiva rapporter, presentationer och personliga berättelser."
},
"th-th": {
"Description": "สร้างและแบ่งปันรายงานแบบโต้ตอบ การนำเสนอ และเรื่องราวส่วนตัว"
},
"tr-tr": {
"Description": "Etkileşimli raporlar, sunumlar ve kişisel hikayeler oluşturun ve paylaşın."
},
"uk-ua": {
"Description": "Створюйте та діліться інтерактивними звітами, презентаціями та особистими історіями."
},
"vi-vn": {
"Description": "Tạo và chia sẻ các báo cáo, bài thuyết trình và câu chuyện cá nhân."
},
"zh-cn": {
"Description": "创建并共享交互式报表、演示文稿和个人故事"
},
"zh-hk": {
"Description": "建立並共用互動式報告、簡報與個人故事"
},
"zh-sg": {
"Description": "创建并共享交互式报表、演示文稿和个人故事"
},
"zh-tw": {
"Description": "建立並共用互動式報告、簡報與個人故事"
},
"zho-yue": {
"Description": "整同分享互動式報告、簡報同埋個人故事"
},
"my-mm": {
"Description": "အပြန်အလှန်တုံ့ပြန်သောအစီရင်ခံစာများ၊ တင်ပြမှုများနှင့် ကိုယ်ပိုင်ပုံပြင်များကို ဖန်တီးပြီး မျှဝေပါ။"
}
}
},
{
"Name": "Teams",
"Description": "Transform the way you work with next-generation AI capabilities and bring together your physical and digital worlds.",
"URL": "https://teams.cloud.microsoft/",
"Locales": {
"ar-sa": {
"Description": "قم بتحويل طريقة عملك باستخدام قدرات الذكاء الاصطناعي من الجيل القادم وجمع عوالمك الفيزيائية والرقمية معًا."
},
"bg-bg": {
"Description": "Променете начина, по който работите с възможностите на следващото поколение AI и обединете физическия и цифровия си свят."
},
"cs-cz": {
"Description": "Změňte způsob práce s funkcemi AI nové generace a spojte své fyzické a digitální světy."
},
"da-dk": {
"Description": "Transformér den måde, du arbejder på, med AI-funktioner i næste generation og bring dine fysiske og digitale verdener sammen."
},
"de-de": {
"Description": "Verändern Sie Ihre Arbeitsweise mit den KI-Funktionen der nächsten Generation und bringen Sie Ihre physische und digitale Welt zusammen."
},
"el-gr": {
"Description": "Μετασχηματίστε τον τρόπο εργασίας σας με τις δυνατότητες της τεχνητής νοημοσύνης της επόμενης γενιάς και ενώστε το φυσικό και το ψηφιακό σας κόσμο."
},
"es-es": {
"Description": "Transforma la forma en que trabajas con las capacidades de IA de próxima generación y une tus mundos físico y digital."
},
"fi-fi": {
"Description": "Muuta työskentelytapojasi seuraavan sukupolven tekoälyn ominaisuuksilla ja yhdistä fyysinen ja digitaalinen maailmasi."
},
"fr-fr": {
"Description": "Transformez votre façon de travailler avec les capacités d'IA de nouvelle génération et réunissez vos mondes physique et numérique."
},
"he-il": {
"Description": "שנה את אופן העבודה שלך עם יכולות AI של הדור הבא ואחד את העולמות הפיזי והדיגיטלי שלך."
},
"hu-hu": {
"Description": "Alakítsa át munkamódszerét a következő generációs AI képességekkel, és egyesítse fizikai és digitális világát."
},
"id-id": {
"Description": "Ubah cara Anda bekerja dengan kemampuan AI generasi berikutnya dan satukan dunia fisik dan digital Anda."
},
"it-it": {
"Description": "Trasforma il tuo modo di lavorare con le capacità di intelligenza artificiale di nuova generazione e unisci i tuoi mondi fisico e digitale."
},
"ja-jp": {
"Description": "次世代の AI 機能を使用して作業方法を変革し、物理世界とデジタル世界を結び付けます"
},
"ko-kr": {
"Description": "차세대 AI 기능으로 작업 방식을 혁신하고 물리적 세계와 디지털 세계를 결합하세요."
},
"nb-no": {
"Description": "Transformér måten du arbeider på med AI-funksjoner i neste generasjon og foren dine fysiske og digitale verdener."
},
"nl-nl": {
"Description": "Transformeer de manier waarop u werkt met de mogelijkheden van AI van de volgende generatie en breng uw fysieke en digitale werelden samen."
},
"pl-pl": {
"Description": "Zmień sposób pracy dzięki możliwościom sztucznej inteligencji nowej generacji i połącz swoje fizyczne i cyfrowe światy."
},
"pt-br": {
"Description": "Transforme a forma como trabalha com as capacidades de IA de próxima geração e reúna os seus mundos físico e digital."
},
"pt-pt": {
"Description": "Transforme a forma como trabalha com as capacidades de IA de próxima geração e reúna os seus mundos físico e digital."
},
"ro-ro": {
"Description": "Transformați modul în care lucrați cu capabilitățile AI de generație următoare și aduceți împreună lumile dvs. fizice și digitale."
},
"ru-ru": {
"Description": "Измените способ работы с помощью возможностей ИИ следующего поколения и объедините свои физические и цифровые миры."
},
"sv-se": {
"Description": "Förändra sättet du arbetar på med AI-funktioner i nästa generation och förena dina fysiska och digitala världar."
},
"th-th": {
"Description": "เปลี่ยนวิธีการทำงานของคุณด้วยความสามารถของ AI ยุคใหม่และรวมโลกทางกายภาพและดิจิทัลของคุณเข้าด้วยกัน"
},
"tr-tr": {
"Description": "Çalışma şeklinizi yeni nesil AI yetenekleriyle dönüştürün ve fiziksel ve dijital dünyalarınızı bir araya getirin."
},
"uk-ua": {
"Description": "Перетворіть спосіб роботи з можливостями штучного інтелекту нового покоління та об'єднайте свої фізичні та цифрові світи."
},
"vi-vn": {
"Description": "Biến đổi cách bạn làm việc với các khả năng AI thế hệ tiếp theo và kết hợp thế giới vật lý và kỹ thuật số của bạn."
},
"zh-cn": {
"Description": "利用下一代 AI 功能转变工作方式,将物理世界和数字世界结合在一起"
},
"zh-hk": {
"Description": "利用下一代 AI 功能轉變工作方式,將物理世界和數字世界結合在一起"
},
"zh-sg": {
"Description": "利用下一代 AI 功能转变工作方式,将物理世界和数字世界结合在一起"
},
"zh-tw": {
"Description": "利用下一代 AI 功能轉變工作方式,將物理世界和數字世界結合在一起"
},
"zho-yue": {
"Description": "用下一代 AI 功能改變你工作嘅方式,將現實同數碼世界連埋一齊"
},
"my-mm": {
"Description": "နောက်ဆုံးပေါ် AI စွမ်းရည်များဖြင့် သင့်အလုပ်လုပ်ပုံကို ပြောင်းလဲပြီး သင့်ကမ္ဘာနှင့် ဒစ်ဂျစ်တယ်ကမ္ဘာကို ပေါင်းစည်းပါ။"
}
}
},
{
"Name": "To Do",
"Description": "Keep track of your tasks in one place with intelligence that helps you collect, prioritize, and get more done together.",
"URL": "https://to-do.office.com/",
"Locales": {
"ar-sa": {
"Description": "تتبع مهامك في مكان واحد مع الذكاء الذي يساعدك على جمعها وتحديد أولوياتها وإنجاز المزيد معًا."
},
"bg-bg": {
"Description": "Следете задачите си на едно място с интелигентност, която ви помага да събирате, определяте приоритети и да правите повече заедно."
},
"cs-cz": {
"Description": "Sledujte své úkoly na jednom místě s inteligencí, která vám pomáhá shromažďovat, prioritizovat a dělat více věcí společně."
},
"da-dk": {
"Description": "Hold styr på dine opgaver ét sted med intelligens, der hjælper dig med at indsamle, prioritere og få mere fra hånden sammen."
},
"de-de": {
"Description": "Behalten Sie den Überblick über Ihre Aufgaben an einem Ort mit einer Software, die Ihnen hilft, Aufgaben zu sammeln, zu priorisieren und gemeinsam mehr zu erreichen."
},
"el-gr": {
"Description": "Κρατήστε καταγραφή των εργασιών σας σε ένα μέρος με νοημοσύνη που σας βοηθά να συλλέγετε, να δίνετε προτεραιότητα και να κάνετε περισσότερα μαζί."
},
"es-es": {
"Description": "Controla tus tareas en un solo lugar con inteligencia y te ayuda a recopilar, priorizar y hacer más cosas a la vez."
},
"fi-fi": {
"Description": "Pysy ajan tasalla tehtävistäsi yhdessä paikassa älykkyyden avulla, joka auttaa sinua keräämään, priorisoimaan ja saamaan enemmän aikaan yhdessä."
},
"fr-fr": {
"Description": "Garder une trace de vos tâches au même endroit avec une intelligence qui vous aide à collecter, à la priorité et à vous rendre plus faite ensemble."
},
"he-il": {
"Description": "עקוב אחר המשימות שלך במקום אחד עם חכמה שעוזרת לך לאסוף, להעדיף ולעשות יותר יחד."
},
"hu-hu": {
"Description": "Kövesse nyomon a feladatait egy helyen az intelligencia segítségével, amely segít összegyűjteni, rangsorolni, és több közös munkát végezni."
},
"id-id": {
"Description": "Lacak tugas Anda di satu tempat dengan kecerdasan yang membantu Anda mengumpulkan, memprioritaskan, dan menyelesaikan lebih banyak hal bersama-sama."
},
"it-it": {
"Description": "Tieni traccia dei tuoi compiti in un'unico posto con l'intelligenza che ti aiuta a raccogliere, prioritizzare e ottenere di più insieme."
},
"ja-jp": {
"Description": "タスクを一か所で追跡し、収集、優先順位付け、共により多くの作業を行うのに役立つインテリジェンスを使用します"
},
"ko-kr": {
"Description": "수집, 우선순위를 정하고 더 많은 작업을 함께 처리할 수 있도록 도와주는 인텔리전스를 통해 한 곳에서 작업을 추적하세요."
},
"nb-no": {
"Description": "Hold oversikt over oppgavene dine på ett sted med intelligens som hjelper deg med å samle, prioritere og få mer gjort sammen."
},
"nl-nl": {
"Description": "Houd uw taken op één plek bij met intelligentie die u helpt bij het verzamelen, prioriteren en samen meer gedaan krijgen."
},
"pl-pl": {
"Description": "Śledź swoje zadania w jednym miejscu dzięki inteligencji, która pomoże Ci zbierać, ustalać priorytety i robić więcej razem."
},
"pt-br": {
"Description": "Acompanhe suas tarefas em um só lugar com inteligência que ajuda você a coletar, priorizar e fazer mais juntos."
},
"pt-pt": {
"Description": "Mantenha o controlo das suas tarefas num só local com inteligência que o ajuda a recolher, priorizar e fazer mais em conjunto."
},
"ro-ro": {
"Description": "Țineți evidența sarcinilor dvs. într-un singur loc cu informații care vă ajută să colectați, să stabiliți priorități și să faceți mai multe împreună."
},
"ru-ru": {
"Description": "Отслеживайте свои задачи в одном месте с помощью интеллекта, который помогает вам собирать, определять приоритеты и делать больше вместе."
},
"sv-se": {
"Description": "Håll koll på dina uppgifter på ett ställe med intelligens som hjälper dig att samla, prioritera och få mer gjort tillsammans."
},
"th-th": {
"Description": "ติดตามงานของคุณในที่เดียวด้วยระบบอัจฉริยะที่ช่วยให้คุณรวบรวม จัดลำดับความสำคัญ และทำสิ่งต่างๆ ร่วมกันได้มากขึ้น"
},
"tr-tr": {
"Description": "Birlikte toplamanıza, önceliklendirmenize ve daha fazlasını yapmanıza yardımcı olan zeka ile görevlerinizi tek bir yerde takip edin."
},
"uk-ua": {
"Description": "Відстежуйте свої завдання в одному місці з інтелектом, який допомагає вам збирати, пріоритизувати та виконувати більше разом."
},
"vi-vn": {
"Description": "Theo dấu các nhiệm vụ của bạn ở một nơi với sự thông minh nhằm giúp bạn thu thập, sắp xếp thứ tự ưu tiên và cùng nhau hoàn thành nhiều việc hơn."
},
"zh-cn": {
"Description": "对工作进行管理、设置优先级,完成每天需要完成的最重要的工作"
},
"zh-hk": {
"Description": "透過智慧型功能在同一個位置持續追蹤您的工作,此功能可協助您收集、排定優先順序,以及共同完成更多工作"
},
"zh-sg": {
"Description": "对工作进行管理、设置优先级,完成每天需要完成的最重要的工作"
},
"zh-tw": {
"Description": "透過智慧型功能在同一個位置持續追蹤您的工作,此功能可協助您收集、排定優先順序,以及共同完成更多工作"
},
"zho-yue": {
"Description": "喺同一個地方睇住你嘅工作進度,智能功能會幫你收集、排優先次序,同埋一齊完成更多嘢"
},
"my-mm": {
"Description": "အလုပ်တာဝန်များကို တစ်နေရာတည်းမှာ စီမံနိုင်ပြီး၊ စုစည်းမှု၊ ဦးစားပေးမှုနှင့် ဉာဏ်ရည်အကူအညီဖြင့် အတူတကွ ပိုမိုအောင်မြင်စေပါသည်။"
}
}
},
{
"Name": "Visio",
"Description": "Create professional and versatile diagrams that simplify complex information.",
"URL": "https://products.office.com/en-us/visio",
"Locales": {
"ar-sa": {
"Description": "إنشاء رسوم بيانية مهنية ومتعددة الاستخدامات تبسط المعلومات المعقدة.",
"URL": "https://products.office.com/ar/visio"
},
"bg-bg": {
"Description": "Създавайте професионални и многостранни диаграми, които опростяват сложна информация.",
"URL": "https://products.office.com/bg-bg/visio"
},
"cs-cz": {
"Description": "Vytvářejte profesionální a všestranné diagramy, které zjednodušují složité informace.",
"URL": "https://products.office.com/cs-cz/visio"
},
"da-dk": {
"Description": "Opret professionelle og alsidige diagrammer, der forenkler kompleks information.",
"URL": "https://products.office.com/da-dk/visio"
},
"de-de": {
"Description": "Erstellen Sie professionelle und vielseitige Diagramme, die komplexe Informationen vereinfachen.",
"URL": "https://products.office.com/de-de/visio"
},
"el-gr": {
"Description": "Δημιουργήστε επαγγελματικά και ευέλικτα διαγράμματα που απλοποιούν τις πολύπλοκες πληροφορίες.",
"URL": "https://products.office.com/el-gr/visio"
},
"en-gb": {
"URL": "https://products.office.com/en-gb/visio"
},
"es-es": {
"Description": "Crea diagramas profesionales y versátiles que simplifican la información compleja.",
"URL": "https://products.office.com/es-es/visio"
},
"fi-fi": {
"Description": "Luo ammattimaisia ja monipuolisia kaavioita, jotka yksinkertaistavat monimutkaista tietoa.",
"URL": "https://products.office.com/fi-fi/visio"
},
"fr-fr": {
"Description": "Créer des diagrammes professionnels et polyvalents qui simplifient les informations complexes.",
"URL": "https://products.office.com/fr-fr/visio"
},
"he-il": {
"Description": "צור תרשימים מקצועיים וגמישים שמפשטים מידע מורכב.",
"URL": "https://products.office.com/he-il/visio"
},
"hu-hu": {
"Description": "Professzionális és sokoldalú diagramokat hozhat létre, amelyek leegyszerűsítik az összetett információkat.",
"URL": "https://products.office.com/hu-hu/visio"
},
"id-id": {
"Description": "Membuat diagram profesional dan serbaguna yang menyederhanakan informasi kompleks.",
"URL": "https://products.office.com/id-id/visio"
},
"it-it": {
"Description": "Crea diagrammi professionali e versatili che semplificano le informazioni complesse.",
"URL": "https://products.office.com/it-it/visio"
},
"ja-jp": {
"Description": "複雑な情報を簡素化するプロフェッショナルで多目的な図を作成します",
"URL": "https://products.office.com/ja-jp/visio"
},
"ko-kr": {
"Description": "복잡한 정보를 단순화하는 전문적이고 다양한 다이어그램을 만들 수 있습니다.",
"URL": "https://products.office.com/ko-kr/visio"
},
"nb-no": {
"Description": "Opprett profesjonelle og allsidige diagrammer som forenkler kompleks informasjon.",
"URL": "https://products.office.com/nb-no/visio"
},
"nl-nl": {
"Description": "Maak professionele en veelzijdige diagrammen, die complexe informatie vereenvoudigen.",
"URL": "https://products.office.com/nl-nl/visio"
},
"pl-pl": {
"Description": "Twórz profesjonalne i wszechstronne diagramy, które upraszczają złożone informacje.",
"URL": "https://products.office.com/pl-pl/visio"
},
"pt-br": {
"Description": "Crie diagramas profissionais e versáteis que simplificam informações complexas.",
"URL": "https://products.office.com/pt-br/visio"
},
"pt-pt": {
"Description": "Crie diagramas profissionais e versáteis que simplificam informações complexas.",
"URL": "https://products.office.com/pt-pt/visio"
},
"ro-ro": {
"Description": "Creați diagrame profesionale și versatile care simplifică informațiile complexe.",
"URL": "https://products.office.com/ro-ro/visio"
},
"ru-ru": {
"Description": "Создавайте профессиональные и универсальные диаграммы, которые упрощают сложную информацию.",
"URL": "https://products.office.com/ru-ru/visio"
},
"sv-se": {
"Description": "Skapa professionella och mångsidiga diagram som förenklar komplex information.",
"URL": "https://products.office.com/sv-se/visio"
},
"th-th": {
"Description": "สร้างไดอะแกรมแบบมืออาชีพและหลากหลายที่ทำให้ข้อมูลที่ซับซ้อนง่ายขึ้น",
"URL": "https://products.office.com/th-th/visio"
},
"tr-tr": {
"Description": "Karmaşık bilgileri basitleştiren profesyonel ve çok yönlü diyagramlar oluşturun.",
"URL": "https://products.office.com/tr-tr/visio"
},
"uk-ua": {
"Description": "Створюйте професійні та універсальні діаграми, які спрощують складну інформацію.",
"URL": "https://products.office.com/uk-ua/visio"
},
"vi-vn": {
"Description": "Tạo sơ đồ chuyên nghiệp và linh hoạt giúp đơn giản hóa thông tin phức tạp.",
"URL": "https://products.office.com/vi-vn/visio"
},
"zh-cn": {
"Description": "创建专业及多功能的图表,以简化复杂信息",
"URL": "https://products.office.com/zh-cn/visio"
},
"zh-hk": {
"Description": "建立專業及多功能性的圖表,以簡化巨大資訊",
"URL": "https://products.office.com/zh-hk/visio"
},
"zh-sg": {
"Description": "创建专业及多功能的图表,以简化复杂信息",
"URL": "https://products.office.com/zh-cn/visio"
},
"zh-tw": {
"Description": "建立專業及多功能性的圖表,以簡化巨大資訊",
"URL": "https://products.office.com/zh-tw/visio"
},
"zho-yue": {
"Description": "整專業同多功能嘅圖表,將複雜嘅資訊簡化",
"URL": "https://products.office.com/zh-cn/visio"
},
"my-mm": {
"Description": "ရှုပ်ထွေးသောအချက်အလက်များကို ရိုးရှင်းလွယ်ကူသော၊ ပရော်ဖက်ရှင်နယ်ဆန်သော ရုပ်ပုံများသို့ ဖန်တီးပါ။"
}
}
},
{
"Name": "Word",
"Description": "Make your words shine with smart writing assistance, document designs, and collaboration tools.",
"URL": "https://word.cloud.microsoft",
"Locales": {
"ar-sa": {
"Description": "اجعل كلماتك تتألق مع المساعدة الذكية للكتابة وتصميم الوثائق وأدوات التعاون."
},
"bg-bg": {
"Description": "Направете думите си да блестят с интелигентна помощ за писане, дизайн на документи и инструменти за сътрудничество."
},
"cs-cz": {
"Description": "Dejte svým slovům lesk s chytrou pomocí při psaní, návrhy dokumentů a nástroji pro spolupráci."
},
"da-dk": {
"Description": "Få dine ord til at skinne med smart skriveassistance, dokumentdesigns og samarbejdsværktøjer."
},
"de-de": {
"Description": "Lassen Sie Ihre Worte mit intelligenter Schreibhilfe, Dokumentendesigns und Kollaborationstools glänzen."
},
"el-gr": {
"Description": "Κάντε τις λέξεις σας να λάμψουν με έξυπνη υποστήριξη γραφής, σχεδιασμό εγγράφων και εργαλεία συνεργασίας."
},
"es-es": {
"Description": "Haz que tus palabras brillen con asistencia inteligente para la escritura, diseños de documentos y herramientas de colaboración."
},
"fi-fi": {
"Description": "Anna sanoillesi loistoa älykkään kirjoitusavun, asiakirjasuunnittelun ja yhteistyötyökalujen avulla."
},
"fr-fr": {
"Description": "Faites briller vos mots avec une assistance à l'écriture intelligente, des conceptions de documents et des outils de collaboration."
},
"he-il": {
"Description": "הפוך את המילים שלך לבוהקות עם עזרה חכמה לכתיבה, עיצובי מסמכים וכלים לשיתוף פעולה."
},
"hu-hu": {
"Description": "Tegye ragyogóvá szavait intelligens írássegítővel, dokumentumtervezéssel és együttműködési eszközökkel."
},
"id-id": {
"Description": "Buat kata-kata Anda bersinar dengan bantuan penulisan cerdas, desain dokumen, dan alat kolaborasi."
},
"it-it": {
"Description": "Fai brillare le tue parole con assistenza alla scrittura intelligente, design di documenti e strumenti di collaborazione."
},
"ja-jp": {
"Description": "スマートなライティング支援、ドキュメントデザイン、コラボレーションツールで言葉を輝かせましょう"
},
"ko-kr": {
"Description": "스마트한 글쓰기 지원, 문서 디자인 및 협업 도구로 단어를 빛나게 하세요."
},
"nb-no": {
"Description": "La ordene dine skinne med smart skriveassistanse, dokumentdesign og samarbeidsverktøy."
},
"nl-nl": {
"Description": "Laat uw woorden schitteren met slimme schrijfondersteuning, documentontwerpen en samenwerkingstools."
},
"pl-pl": {
"Description": "Spraw, aby Twoje słowa błyszczały dzięki inteligentnej pomocy w pisaniu, projektowaniu dokumentów i narzędziom do współpracy."
},
"pt-br": {
"Description": "Faça suas palavras brilharem com assistência inteligente à escrita, designs de documentos e ferramentas de colaboração."
},
"pt-pt": {
"Description": "Faça com que as suas palavras brilhem com assistência inteligente à escrita, designs de documentos e ferramentas de colaboração."
},
"ro-ro": {
"Description": "Fă-ți cuvintele să strălucească cu asistență inteligentă la scriere, design de documente și instrumente de colaborare."
},
"ru-ru": {
"Description": "Сделайте свои слова яркими с помощью интеллектуальной поддержки при написании, дизайне документов и инструментов совместной работы."
},
"sv-se": {
"Description": "Låt dina ord lysa med smart skrivhjälp, dokumentdesign och samarbetsverktyg."
},
"th-th": {
"Description": "ทำให้คำพูดของคุณโดดเด่นด้วยความช่วยเหลือในการเขียนอัจฉริยะ การออกแบบเอกสาร และเครื่องมือการทำงานร่วมกัน"
},
"tr-tr": {
"Description": "Akıllı yazma yardımı, belge tasarımları ve işbirliği araçlarıyla kelimelerinizi parlatın."
},
"uk-ua": {
"Description": "Зробіть свої слова яскравими за допомогою інтелектуальної допомоги в написанні, дизайну документів і інструментів для спільної роботи."
},
"vi-vn": {
"Description": "Làm cho từ ngữ của bạn tỏa sáng với sự trợ giúp viết thông minh, thiết kế tài liệu và công cụ cộng tác."
},
"zh-cn": {
"Description": "借助智能写作帮助、文档设计和协作工具,让你的文字大放异彩"
},
"zh-hk": {
"Description": "借助智能寫作幫助、文檔設計和協作工具,讓你的文字大放異彩"
},
"zh-sg": {
"Description": "借助智能写作帮助、文档设计和协作工具,让你的文字大放异彩"
},
"zh-tw": {
"Description": "借助智能寫作幫助、文檔設計和協作工具,讓你的文字大放異彩"
},
"zho-yue": {
"Description": "用智能寫作幫助、文檔設計同協作工具,令你嘅文字更加出色"
},
"my-mm": {
"Description": "ကျွမ်းကျင်သော အရေးအသားအကူအညီ၊ စာရွက်စာတမ်းဒီဇိုင်းများနှင့် ပူးပေါင်းလုပ်ဆောင်နိုင်သည့်ကိရိယာများဖြင့် သင့်စကားလုံးများကို တောက်ပအောင်လုပ်ပါ။"
}
}
},
{
"Name": "Telegram",
"Description": "Join our official Telegram Community.",
"URL": "https://t.me/s/otp_channel",
"Locales": {
"ar-sa": {
"Description": "انضم إلى مجتمع Telegram الرسمي لدينا."
},
"bg-bg": {
"Description": "Присъединете се към официалната ни Telegram общност."
},
"cs-cz": {
"Description": "Připojte se k naší oficiální Telegram komunitě."
},
"da-dk": {
"Description": "Deltag i vores officielle Telegram-fællesskab."
},
"de-de": {
"Description": "Treten Sie unserer offiziellen Telegram-Community bei."
},
"el-gr": {
"Description": "Εγγραφείτε στην επίσημη κοινότητα Telegram μας."
},
"es-es": {
"Description": "Únete a nuestra comunidad oficial de Telegram."
},
"fi-fi": {
"Description": "Liity viralliseen Telegram-yhteisöömme."
},
"fr-fr": {
"Description": "Rejoignez notre communauté officielle Telegram."
},
"he-il": {
"Description": "הצטרף לקהילת ה-Telegram הרשמית שלנו."
},
"hu-hu": {
"Description": "Csatlakozz hivatalos Telegram közösségünkhöz."
},
"id-id": {
"Description": "Bergabunglah dengan Komunitas Telegram resmi kami."
},
"it-it": {
"Description": "Unisciti alla nostra Community ufficiale di Telegram."
},
"ja-jp": {
"Description": "公式Telegramコミュニティに参加してください"
},
"ko-kr": {
"Description": "공식 Telegram 커뮤니티에 가입하세요."
},
"nb-no": {
"Description": "Bli med i vår offisielle Telegram-fellesskap."
},
"nl-nl": {
"Description": "Word lid van onze officiële Telegram-gemeenschap."
},
"pl-pl": {
"Description": "Dołącz do naszej oficjalnej społeczności Telegram."
},
"pt-br": {
"Description": "Junte-se à nossa Comunidade oficial do Telegram."
},
"pt-pt": {
"Description": "Junte-se à nossa Comunidade oficial do Telegram."
},
"ro-ro": {
"Description": "Alăturați-vă comunității noastre oficiale Telegram."
},
"ru-ru": {
"Description": "Присоединяйтесь к нашему официальному Telegram-сообществу."
},
"sv-se": {
"Description": "Gå med i vår officiella Telegram-community."
},
"th-th": {
"Description": "เข้าร่วมชุมชน Telegram อย่างเป็นทางการของเรา"
},
"tr-tr": {
"Description": "Resmi Telegram Topluluğumuza katılın."
},
"uk-ua": {
"Description": "Приєднуйтесь до нашої офіційної спільноти Telegram."
},
"vi-vn": {
"Description": "Tham gia Cộng đồng Telegram chính thức của chúng tôi."
},
"zh-cn": {
"Description": "加入我们的官方 Telegram 社区"
},
"zh-hk": {
"Description": "加入我們的官方 Telegram 社區"
},
"zh-sg": {
"Description": "加入我们的官方 Telegram 社区"
},
"zh-tw": {
"Description": "加入我們的官方 Telegram 社區"
},
"zho-yue": {
"Description": "加入我哋嘅官方 Telegram 社區"
},
"my-mm": {
"Description": "ကျွန်ုပ်တို့ရဲ့တရားဝင် Telegram အဖွဲ့တွင် ပါဝင်လိုက်ပါ။"
}
}
},
{
"Name": "Discord",
"Description": "Join our official Discord Community.",
"URL": "https://discord.gg/TpXTgfgf2a",
"Locales": {
"ar-sa": {
"Description": "انضم إلى مجتمع Discord الرسمي لدينا."
},
"bg-bg": {
"Description": "Присъединете се към официалната ни Discord общност."
},
"cs-cz": {
"Description": "Připojte se k naší oficiální Discord komunitě."
},
"da-dk": {
"Description": "Deltag i vores officielle Discord-fællesskab."
},
"de-de": {
"Description": "Treten Sie unserer offiziellen Discord-Community bei."
},
"el-gr": {
"Description": "Εγγραφείτε στην επίσημη κοινότητα Discord μας."
},
"es-es": {
"Description": "Únete a nuestra comunidad oficial de Discord."
},
"fi-fi": {
"Description": "Liity viralliseen Discord-yhteisöömme."
},
"fr-fr": {
"Description": "Rejoignez notre communauté officielle Discord."
},
"he-il": {
"Description": "הצטרף לקהילת ה-Discord הרשמית שלנו."
},
"hu-hu": {
"Description": "Csatlakozz hivatalos Discord közösségünkhöz."
},
"id-id": {
"Description": "Bergabunglah dengan Komunitas Discord resmi kami."
},
"it-it": {
"Description": "Unisciti alla nostra Community Discord ufficiale."
},
"ja-jp": {
"Description": "公式Discordコミュニティに参加してください"
},
"ko-kr": {
"Description": "공식 Discord 커뮤니티에 가입하세요."
},
"nb-no": {
"Description": "Bli med i vår offisielle Discord-fellesskap."
},
"nl-nl": {
"Description": "Word lid van onze officiële Discord-gemeenschap."
},
"pl-pl": {
"Description": "Dołącz do naszej oficjalnej społeczności Discord."
},
"pt-br": {
"Description": "Junte-se à nossa Comunidade oficial do Discord."
},
"pt-pt": {
"Description": "Junte-se à nossa Comunidade oficial do Discord."
},
"ro-ro": {
"Description": "Alăturați-vă comunității noastre oficiale Discord."
},
"ru-ru": {
"Description": "Присоединяйтесь к нашему официальному Discord-сообществу."
},
"sv-se": {
"Description": "Gå med i vår officiella Discord-community."
},
"th-th": {
"Description": "เข้าร่วมชุมชน Discord อย่างเป็นทางการของเรา"
},
"tr-tr": {
"Description": "Resmi Discord Topluluğumuza katılın."
},
"uk-ua": {
"Description": "Приєднуйтесь до нашої офіційної спільноти Discord."
},
"vi-vn": {
"Description": "Tham gia Cộng đồng Discord chính thức của chúng tôi."
},
"zh-cn": {
"Description": "加入我们的官方 Discord 社区"
},
"zh-hk": {
"Description": "加入我們的官方 Discord 社區"
},
"zh-sg": {
"Description": "加入我们的官方 Discord 社区"
},
"zh-tw": {
"Description": "加入我們的官方 Discord 社區"
},
"zho-yue": {
"Description": "加入我哋嘅官方 Discord 社區"
},
"my-mm": {
"Description": "ကျွန်ုပ်တို့ရဲ့တရားဝင် Discord အဖွဲ့တွင် ပါဝင်လိုက်ပါ။"
}
}
}
]
================================================
FILE: config/Message/end_of_support.json
================================================
{
"ar-sa": {
"Title": "نهاية دعم تطبيقات Microsoft 365",
"Content": "قد لا يتم تثبيت تطبيقات Microsoft 365 أو تشغيلها بشكل صحيح على الأنظمة القديمة، يرجى [زيارة مستنداتنا](https://otp.landian.vip/help/?ref=out-of-ms-support) لمزيد من المعلومات."
},
"bg-bg": {
"Title": "Край на поддръжката на Microsoft 365 приложения",
"Content": "Microsoft 365 приложенията може да не се инсталират или да не работят правилно на по-стари системи, моля, [посетете нашата документация](https://otp.landian.vip/help/?ref=out-of-ms-support) за повече информация."
},
"cs-cz": {
"Title": "Konec podpory aplikací Microsoft 365",
"Content": "Aplikace Microsoft 365 se nemusí správně instalovat nebo spouštět na starších systémech, prosím [navštivte naši dokumentaci](https://otp.landian.vip/help/?ref=out-of-ms-support) pro více informací."
},
"da-dk": {
"Title": "Microsoft 365-apps – afslutning af support",
"Content": "Microsoft 365-apps kan muligvis ikke installeres eller køre korrekt på ældre systemer, [besøg vores dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) for flere oplysninger."
},
"de-de": {
"Title": "Ende des Supports für Microsoft 365-Apps",
"Content": "Microsoft 365-Apps können möglicherweise nicht installiert oder auf älteren Systemen nicht korrekt ausgeführt werden. Bitte [besuchen Sie unsere Dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) für weitere Informationen."
},
"el-gr": {
"Title": "Λήξη υποστήριξης εφαρμογών Microsoft 365",
"Content": "Οι εφαρμογές Microsoft 365 ενδέχεται να μην εγκαθίστανται ή να εκτελούνται σωστά σε παλαιότερα συστήματα, παρακαλώ [επισκεφθείτε την τεκμηρίωσή μας](https://otp.landian.vip/help/?ref=out-of-ms-support) για περισσότερες πληροφορίες."
},
"en-us": {
"Title": "Microsoft 365 Apps End of Support",
"Content": "Microsoft 365 Apps may not install or run correctly on older systems, please [visit our docs](https://otp.landian.vip/help/?ref=out-of-ms-support) for more information."
},
"es-es": {
"Title": "Fin del soporte para las aplicaciones de Microsoft 365",
"Content": "Es posible que las aplicaciones de Microsoft 365 no se instalen o no se ejecuten correctamente en sistemas más antiguos; [visite nuestros documentos](https://otp.landian.vip/help/?ref=out-of-ms-support) para obtener más información."
},
"fi-fi": {
"Title": "Microsoft 365 -sovellusten tuen päättyminen",
"Content": "Microsoft 365 -sovellukset eivät ehkä asennu tai toimi oikein vanhemmissa järjestelmissä, [katso asiakirjamme](https://otp.landian.vip/help/?ref=out-of-ms-support) lisätietoja varten."
},
"fr-fr": {
"Title": "Fin du support des applications Microsoft 365",
"Content": "Les applications Microsoft 365 peuvent ne pas s’installer ou s’exécuter correctement sur des systèmes plus anciens, veuillez [visitez notre documentation](https://otp.landian.vip/help/?ref=out-of-ms-support) pour plus d’informations."
},
"he-il": {
"Title": "סיום התמיכה באפליקציות Microsoft 365",
"Content": "אפליקציות Microsoft 365 עשויות שלא להתקין או לפעול כראוי במערכות ישנות יותר, [בקרו במסמכים שלנו](https://otp.landian.vip/help/?ref=out-of-ms-support) למידע נוסף."
},
"hu-hu": {
"Title": "A Microsoft 365 alkalmazások támogatásának vége",
"Content": "Előfordulhat, hogy a Microsoft 365 alkalmazások nem települnek vagy nem futnak megfelelően a régebbi rendszereken, további információkért kérjük, [látogasson el a dokumentumainkba](https://otp.landian.vip/help/?ref=out-of-ms-support)."
},
"id-id": {
"Title": "Akhir Dukungan untuk Microsoft 365 Apps",
"Content": "Mungkin aplikasi Microsoft 365 tidak terpasang dengan benar di sistem lawas, silakan [kunjungi dokumen ini](https://otp.landian.vip/help/?ref=out-of-ms-support) untuk informasi lebih lanjut."
},
"it-it": {
"Title": "Fine del supporto per le app Microsoft 365",
"Content": "Le app Microsoft 365 potrebbero non essere installate o eseguite correttamente su sistemi meno recenti, [visita la nostra documentazione](https://otp.landian.vip/help/?ref=out-of-ms-support) per altre informazioni."
},
"ja-jp": {
"Title": "Microsoft 365 アプリのサポート終了",
"Content": "Microsoft 365 アプリは古いシステムに正しくインストールまたは実行されない場合があります。詳細については、[ドキュメント](https://otp.landian.vip/help/?ref=out-of-ms-support)をご覧ください。"
},
"ko-kr": {
"Title": "Microsoft 365 앱 지원 종료",
"Content": "Microsoft 365 앱이 이전 시스템에서 올바르게 설치되거나 실행되지 않을 수 있습니다. 자세한 내용은 [문서](https://otp.landian.vip/help/?ref=out-of-ms-support)를 참조하십시오."
},
"my-mm": {
"Title": "Microsoft 365 Apps ၏ ထောက်ပံ့မှုအဆုံးသတ်ခြင်း",
"Content": "Microsoft 365 Apps သည် စနစ်ဟောင်းများတွင် မှန်ကန်စွာ တပ်ဆင်ရန် သို့မဟုတ် အလုပ်လုပ်ရန် မဖြစ်နိုင်ပါ။ နောက်ထပ်အချက်အလက်များအတွက် [ကျွန်ုပ်တို့၏စာရွက်စာတမ်းများသို့ သွားပါ](https://otp.landian.vip/help/?ref=out-of-ms-support)"
},
"nb-no": {
"Title": "Slutt på støtte for Microsoft 365-apper",
"Content": "Microsoft 365-apper kan hende ikke installeres eller kjøre riktig på eldre systemer, vennligst [besøk dokumentasjonen vår](https://otp.landian.vip/help/?ref=out-of-ms-support) for mer informasjon."
},
"nl-nl": {
"Title": "Einde van de ondersteuning voor Microsoft 365-apps",
"Content": "Microsoft 365-apps worden mogelijk niet geïnstalleerd of werken niet correct op oudere systemen. [Bezoek onze documenten](https://otp.landian.vip/help/?ref=out-of-ms-support) voor meer informatie."
},
"pl-pl": {
"Title": "Koniec wsparcia dla aplikacji Microsoft 365",
"Content": "Aplikacje Microsoft 365 mogą не instalować się lub działać poprawnie w starszych systemach [visit our docs](https://otp.landian.vip/help/?ref=out-of-ms-support) po więcej informacji."
},
"pt-br": {
"Title": "Fim do suporte para aplicativos Microsoft 365",
"Content": "Os aplicativos do Microsoft 365 podem não ser instalados ou executados corretamente em sistemas mais antigos, [visite nossa documentação](https://otp.landian.vip/help/?ref=out-of-ms-support) para mais informações."
},
"pt-pt": {
"Title": "Fim do suporte para aplicações do Microsoft 365",
"Content": "As aplicações do Microsoft 365 podem não ser instaladas ou funcionar corretamente em sistemas mais antigos, [visite a nossa documentação](https://otp.landian.vip/help/?ref=out-of-ms-support) para mais informações."
},
"ro-ro": {
"Title": "Sfârșitul asistenței pentru aplicațiile Microsoft 365",
"Content": "Aplicațiile Microsoft 365 s-ar putea să nu se instaleze sau să nu funcționeze corect pe sistemele mai vechi, vă rugăm să [vizitați documentația noastră](https://otp.landian.vip/help/?ref=out-of-ms-support) pentru mai multe informații."
},
"ru-ru": {
"Title": "Завершение поддержки приложений Microsoft 365",
"Content": "Приложения Microsoft 365 могут не устанавливаться или работать должным образом на старых системах, пожалуйста, [посетите нашу документацию](https://otp.landian.vip/help/?ref=out-of-ms-support) для получения дополнительной информации."
},
"sv-se": {
"Title": "Slutet på supporten för Microsoft 365-appar",
"Content": "Microsoft 365-appar kanske inte installeras eller körs korrekt på äldre system, vänligen [besök vår dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) för mer information."
},
"th-th": {
"Title": "สิ้นสุดการสนับสนุนแอป Microsoft 365",
"Content": "แอป Microsoft 365 อาจไม่สามารถติดตั้งหรือทำงานได้อย่างถูกต้องในระบบเก่า โปรด [ดูเอกสารของเรา](https://otp.landian.vip/help/?ref=out-of-ms-support) สำหรับข้อมูลเพิ่มเติม"
},
"tr-tr": {
"Title": "Microsoft 365 Uygulamaları Destek Sonu",
"Content": "Microsoft 365 uygulamaları eski sistemlerde doğru şekilde yüklenmeyebilir veya çalışmayabilir, daha fazla bilgi için lütfen [sitemizdeki dökümanları okuyun](https://otp.landian.vip/help/?ref=out-of-ms-support)."
},
"uk-ua": {
"Title": "Завершення підтримки Microsoft 365 Apps",
"Content": "Microsoft 365 Apps може не встановлюватися або не працювати належним чином на старих системах, будь ласка, [відвідайте нашу документацію](https://otp.landian.vip/help/?ref=out-of-ms-support) для отримання додаткової інформації."
},
"vi-vn": {
"Title": "Kết thúc hỗ trợ cho Microsoft 365 Apps",
"Content": "Các ứng dụng Microsoft 365 có thể không cài đặt hoặc chạy ổn định trên hệ thống cũ, hãy [xem tài liệu](https://otp.landian.vip/help/?ref=out-of-ms-support) để biết thêm chi tiết."
},
"zh-cn": {
"Title": "Microsoft 365 应用停止支持",
"Content": "Microsoft 365 应用可能无法在老旧的系统上安装或运行,请[查看此处](https://otp.landian.vip/help/?ref=out-of-ms-support)了解更多信息。"
},
"zh-hk": {
"Title": "Microsoft 365 應用程式終止支援",
"Content": "Microsoft 365 應用可能無法在老舊的系統上安裝或運行,請[查看此處](https://otp.landian.vip/help/?ref=out-of-ms-support)了解更多信息。"
},
"zh-tw": {
"Title": "Microsoft 365 應用程式終止支援",
"Content": "Microsoft 365 應用可能無法在老舊的系統上安裝或運行,請[查看此處](https://otp.landian.vip/help/?ref=out-of-ms-support)了解更多信息。"
}
}
================================================
FILE: config/Message/win7-setup-issue.json
================================================
{
"ar-sa": {
"Title": "مشكلة في التثبيت",
"Content": "إذا توقف **Microsoft Office عن العمل** أثناء النشر، يمكنك تغيير وحدة التثبيت من أداة نشر Office إلى **Office Tool Plus** والمحاولة مرة أخرى."
},
"bg-bg": {
"Title": "Проблем с настройката",
"Content": "Ако по време на разгръщането се появи съобщение **Microsoft Office спря да работи**, можете да промените инсталационния модул от Office Deployment Tool на **Office Tool Plus** и да опитате отново."
},
"cs-cz": {
"Title": "Problém s nastavením",
"Content": "Pokud se během nasazení zobrazí zpráva **Microsoft Office přestal fungovat**, můžete změnit instalační modul z Office Deployment Tool na **Office Tool Plus** a zkusit to znovu."
},
"da-dk": {
"Title": "Opsætningsproblem",
"Content": "Hvis **Microsoft Office er holdt op med at fungere** under implementeringen, kan du ændre installationsmodulet fra Office Deployment Tool til **Office Tool Plus** og prøve igen."
},
"de-de": {
"Title": "Einrichtungsproblem",
"Content": "Wenn während der Bereitstellung die Meldung **Microsoft Office funktioniert nicht mehr** angezeigt wird, können Sie das Installationsmodul vom Office-Bereitstellungstool auf **Office Tool Plus** ändern und es erneut versuchen."
},
"el-gr": {
"Title": "Πρόβλημα εγκατάστασης",
"Content": "Εάν εμφανιστεί το μήνυμα **Microsoft Office σταμάτησε να λειτουργεί** κατά τη διάρκεια της ανάπτυξης, μπορείτε να αλλάξετε το Εγκατάσταση μονάδας από το Office Deployment Tool σε **Office Tool Plus** και να δοκιμάσετε ξανά."
},
"en-us": {
"Title": "Setup issue",
"Content": "If **Microsoft Office stopped working** during deployment, you can change Installation module from Office Deployment Tool to **Office Tool Plus** and try again."
},
"es-es": {
"Title": "Problema de instalación",
"Content": "Si **Microsoft Office dejó de funcionar** durante la implementación, puede cambiar el módulo de instalación de la herramienta de implementación de Office a **Office Tool Plus** y volver a intentarlo."
},
"fi-fi": {
"Title": "Asennusongelma",
"Content": "Jos **Microsoft Office on lakannut toimimasta** käyttöönotton aikana, voit vaihtaa asennusmoduulin Office Deployment Toolista **Office Tool Plus**:iin ja yrittää uudelleen."
},
"fr-fr": {
"Title": "Problème d'installation",
"Content": "Si **Microsoft Office a cessé de fonctionner** pendant le déploiement, vous pouvez changer le module d'installation de l'outil de déploiement Office à **Office Tool Plus** et réessayer."
},
"he-il": {
"Title": "בעיה בהתקנה",
"Content": "אם במהלך הפריסה מופיעה הודעה **Microsoft Office הפסיק לעבוד**, תוכל לשנות את מודול ההתקנה מ-Office Deployment Tool ל-**Office Tool Plus** ולנסות שוב."
},
"hu-hu": {
"Title": "Telepítési probléma",
"Content": "Ha a telepítés során megjelenik a **Microsoft Office leállt** üzenet, megváltoztathatja a telepítési modult az Office Deployment Toolról **Office Tool Plus**-ra, és próbálkozhat újra."
},
"id-id": {
"Title": "Masalah Pengaturan",
"Content": "Jika **Microsoft Office berhenti bekerja** selama penyebaran, Anda dapat mengubah modul Instalasi dari Office Deployment Tool ke **Office Tool Plus** dan coba lagi."
},
"it-it": {
"Title": "Problema di installazione",
"Content": "Se durante la distribuzione viene visualizzato **Microsoft Office ha smesso di funzionare**, è possibile modificare il modulo di installazione da Office Deployment Tool a **Office Tool Plus** e riprovare."
},
"ja-jp": {
"Title": "セットアップの問題",
"Content": "展開中に**Microsoft Office が動作を停止しました**が表示された場合は、インストールモジュールを Office 展開ツールから**Office Tool Plus**に変更して、もう一度お試しください。"
},
"ko-kr": {
"Title": "설치 문제",
"Content": "배포 중에 **Microsoft Office가 작동을 멈췄습니다**라는 메시지가 표시되면 설치 모듈을 Office 배포 도구에서 **Office Tool Plus**로 변경하고 다시 시도할 수 있습니다."
},
"nb-no": {
"Title": "Installasjonsproblem",
"Content": "Hvis **Microsoft Office har sluttet å fungere** under distribusjonen, kan du endre installasjonsmodulen fra Office Deployment Tool til **Office Tool Plus** og prøve igjen."
},
"nl-nl": {
"Title": "Installatieprobleem",
"Content": "Als **Microsoft Office is gestopt met werken** tijdens de implementatie, kunt u de Installatiemodule wijzigen van Office Deployment Tool naar **Office Tool Plus** en het opnieuw proberen."
},
"pl-pl": {
"Title": "Problem z instalacją",
"Content": "Jeśli podczas wdrażania pojawi się komunikat **Microsoft Office przestał działać**, możesz zmienić moduł instalacji z Office Deployment Tool na **Office Tool Plus** i spróbować ponownie."
},
"pt-br": {
"Title": "Problema de instalação",
"Content": "Se **Microsoft Office parou de funcionar** durante a implantação, você pode alterar o módulo de instalação da Ferramenta de Implantação do Office para **Office Tool Plus** e tentar novamente."
},
"pt-pt": {
"Title": "Problema de instalação",
"Content": "Se **Microsoft Office parou de funcionar** durante a implantação, você pode alterar o módulo de instalação da Ferramenta de Implantação do Office para **Office Tool Plus** e tentar novamente."
},
"ro-ro": {
"Title": "Problemă de configurare",
"Content": "Dacă în timpul implementării apare mesajul **Microsoft Office a încetat să funcționeze**, puteți schimba modulul de instalare de la Office Deployment Tool la **Office Tool Plus** și încercați din nou."
},
"ru-ru": {
"Title": "Проблема установки",
"Content": "Если во время развертывания появилось сообщение **Microsoft Office перестал работать**, вы можете изменить модуль установки с Office Deployment Tool на **Office Tool Plus** и попробовать снова."
},
"sv-se": {
"Title": "Installationsproblem",
"Content": "Om **Microsoft Office har slutat fungera** under distributionen, kan du ändra installationsmodulen från Office Deployment Tool till **Office Tool Plus** och försöka igen."
},
"th-th": {
"Title": "ปัญหาการตั้งค่า",
"Content": "หาก **Microsoft Office หยุดทำงาน** ในระหว่างการปรับใช้ คุณสามารถเปลี่ยนโมดูลการติดตั้งจากเครื่องมือปรับใช้ Office เป็น **Office Tool Plus** และลองอีกครั้ง"
},
"tr-tr": {
"Title": "Kurulum Sorunu",
"Content": "Dağıtım sırasında **Microsoft Office çalışmayı durdurdu** hatası alırsanız, Kurulum modülünü Office Dağıtım Aracı'ndan **Office Tool Plus**'a değiştirebilir ve tekrar deneyebilirsiniz."
},
"uk-ua": {
"Title": "Проблем з налаштуванням",
"Content": "Якщо під час розгортання з'явиться повідомлення **Microsoft Office перестав працювати**, ви можете змінити модуль встановлення з Office Deployment Tool на **Office Tool Plus** і спробувати знову."
},
"vi-vn": {
"Title": "Vấn đề cài đặt",
"Content": "Nếu **Microsoft Office ngừng hoạt động** trong quá trình triển khai, bạn có thể thay đổi mô-đun cài đặt từ Công cụ Triển khai Office sang **Office Tool Plus** và thử lại."
},
"zh-cn": {
"Title": "安装问题",
"Content": "如果部署过程中出现 **Microsoft Office 已停止工作**,您可以将安装模块从 Office 部署工具更改为 **Office Tool Plus**,然后重试。"
},
"zh-hk": {
"Title": "安裝問題",
"Content": "如果部署過程中出現 **Microsoft Office 已停止工作**,您可以將安裝模塊從 Office 部署工具更改為 **Office Tool Plus**,然後重試。"
},
"zh-tw": {
"Title": "安裝問題",
"Content": "如果部署過程中出現 **Microsoft Office 已停止工作**,您可以將安裝模塊從 Office 部署工具更改為 **Office Tool Plus**,然後重試。"
}
}
================================================
FILE: src/OfficeToolPlus/Dictionaries/Languages/ar-ly.xaml
================================================
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=System.RunTime"
xml:space="preserve">
<!-- Country settings, it is used to get information from server. -->
<sys:String x:Key="Culture">ar-sa</sys:String>
<!-- Products name settings, "en-us" is default value if not set. -->
<sys:String x:Key="ProductDict">ar-sa</sys:String>
<!-- Markdown document font family. -->
<FontFamily x:Key="Markdown.FontFamily">Segoe UI</FontFamily>
<!-- Eula content -->
<sys:String x:Key="Eula.Title">شروط الترخيص</sys:String>
<sys:String x:Key="Eula.Content">باستخدام هذا البرنامج، يجب أن تقبل [شروط ترخيص البرنامج]({0}) و[اتفاقية خدمات مايكروسوفت]({1}).</sys:String>
<!-- Custom control -->
<sys:String x:Key="Yerong_String_ToggleButton.Unset">غير محدد</sys:String>
<sys:String x:Key="Yerong_String_ToggleButton.Off">إيقاف</sys:String>
<sys:String x:Key="Yerong_String_ToggleButton.On">تشغيل</sys:String>
<sys:String x:Key="Yerong_String_MicaMenu.Name">القائمة</sys:String>
<sys:String x:Key="Yerong_String_MicaMenu.HelpText">انقر لفتح قائمة السياق.</sys:String>
<!-- Title bar -->
<sys:String x:Key="Title_Bar_GoBack_Button">رجوع</sys:String>
<sys:String x:Key="Title_Bar_SysMenu_Button">قائمة النظام</sys:String>
<sys:String x:Key="Title_Bar_Command_Box">أمر</sys:String>
<!-- Navigation bar -->
<sys:String x:Key="Navigation_Menu.Name">قائمة التنقل</sys:String>
<sys:String x:Key="Navigation_Menu.ToolTip">انقر لتوسيع أو طي شريط التنقل.</sys:String>
<sys:String x:Key="Navigation_Bar.Name">شريط التنقل</sys:String>
<sys:String x:Key="Navigate_Page.Home">الرئيسية</sys:String>
<sys:String x:Key="Navigate_Page.Deploy">النشر</sys:String>
<sys:String x:Key="Navigate_Page.Activate">التفعيل</sys:String>
<sys:String x:Key="Navigate_Page.Toolbox">الأدوات</sys:String>
<sys:String x:Key="Navigate_Page.ConvertDocuments">تحويل المستندات</sys:String>
<sys:String x:Key="Navigate_Page.HashChecker">فحص التحقق</sys:String>
<sys:String x:Key="Navigate_Page.Settings">الإعدادات</sys:String>
<sys:String x:Key="Navigate_Page.About">حول</sys:String>
<!-- Notification list -->
<sys:String x:Key="Notification_Close_Message.Name">إغلاق الرسالة</sys:String>
<sys:String x:Key="Notification_Message_Button_List">أزرار الرسالة</sys:String>
<sys:String x:Key="Notification_Cancel_Task.Name">إلغاء المهمة</sys:String>
<!-- Home page -->
<sys:String x:Key="Home_Messages_Center.Name">مركز الرسائل</sys:String>
<!-- Greetings, customize it according to your country and habits. -->
<sys:String x:Key="Home_Greeting_Hello">مرحبًا</sys:String>
<!-- 00:00 -> 05:00 -->
<sys:String x:Key="Home_Greeting_Hour.0">لقد تأخر الوقت، نتمنى لك أحلامًا سعيدة!</sys:String>
<!-- 05:00 -> 06:00 -->
<sys:String x:Key="Home_Greeting_Hour.5">يكاد الفجر يطلع، هل أنت مستعد للاستيقاظ؟</sys:String>
<!-- 06:00 -> 10:00 -->
<sys:String x:Key="Home_Greeting_Hour.6">صباح الخير</sys:String>
<!-- 10:00 -> 11:00 -->
<sys:String x:Key="Home_Greeting_Hour.10">صباح الخير</sys:String>
<!-- 11:00 -> 12:00 -->
<sys:String x:Key="Home_Greeting_Hour.11">مساء الخير</sys:String>
<!-- 12:00 -> 13:00 -->
<sys:String x:Key="Home_Greeting_Hour.12">مساء الخير</sys:String>
<!-- 13:00 -> 15:00 -->
<sys:String x:Key="Home_Greeting_Hour.13">مساء الخير</sys:String>
<!-- 15:00 -> 17:00 -->
<sys:String x:Key="Home_Greeting_Hour.15">مساء الخير</sys:String>
<!-- 17:00 -> 18:00 -->
<sys:String x:Key="Home_Greeting_Hour.17">مساء الخير</sys:String>
<!-- 18:00 -> 21:00 -->
<sys:String x:Key="Home_Greeting_Hour.18">مساء الخير</sys:String>
<!-- 21:00 -> 22:00 -->
<sys:String x:Key="Home_Greeting_Hour.21">حان وقت النوم، نتمنى لك أحلامًا سعيدة!</sys:String>
<!-- 22:00 -> 00:00 (+1) -->
<sys:String x:Key="Home_Greeting_Hour.22">لقد تأخر الوقت، نتمنى لك أحلامًا سعيدة!</sys:String>
<!-- Greetings end -->
<sys:String x:Key="Home_Install_Office">تثبيت أوفيس</sys:String>
<sys:String x:Key="Home_Install_Office.O365PPRDescription">يشمل Outlook وOneDrive للأعمال وWord وExcel وPowerPoint والمزيد.</sys:String>
<sys:String x:Key="Home_Install_Office.O365HPRDescription">يشمل Outlook وWord وExcel وPowerPoint والمزيد.</sys:String>
<sys:String x:Key="Home_Install_Office.PP2019RDescription">يشمل Outlook وWord وExcel وPowerPoint والمزيد.</sys:String>
<sys:String x:Key="Home_Install_Office.HS2019Description">يشمل Word وExcel وPowerPoint.</sys:String>
<sys:String x:Key="Home_Loading_Content">Loading content...</sys:String>
<sys:String x:Key="Home_Error_While_Loading_Content">Unable to load content. Please check your Internet connection and try again.</sys:String>
<sys:String x:Key="Home_Retry">_إعادة المحاولة</sys:String>
<sys:String x:Key="Home_Launcher.Name">قائمة التطبيقات</sys:String>
<sys:String x:Key="Home_Launcher_OpenInBrowser">_فتح في المتصفح</sys:String>
<sys:String x:Key="Home_Launcher_CreateShortcut">_إنشاء اختصار على سطح المكتب</sys:String>
<!-- Deploy page -->
<sys:String x:Key="Deploy_Help_Docs">Having trouble installing Office? Please check our help docs for possible solutions.</sys:String>
<sys:String x:Key="Deploy_Learn_More">اعرف المزيد</sys:String>
<!-- Channels Name, if you do not want to translate them, please keep in English. -->
<sys:String x:Key="PerpetualVL2019">أوفيس 2019 إصدار المؤسسات الدائم</sys:String>
<sys:String x:Key="PerpetualVL2021">أوفيس 2021 إصدار المؤسسات الدائم</sys:String>
<sys:String x:Key="PerpetualVL2024">أوفيس 2024 إصدار المؤسسات الدائم</sys:String>
<sys:String x:Key="SemiAnnual">قناة المؤسسات نصف السنوية</sys:String>
<sys:String x:Key="MonthlyEnterprise">قناة المؤسسات الشهرية</sys:String>
<sys:String x:Key="Current">القناة الحالية</sys:String>
<sys:String x:Key="CurrentPreview">القناة الحالية (معاينة)</sys:String>
<sys:String x:Key="BetaChannel">قناة بيتا</sys:String>
<!-- Error messages -->
<!-- {0} means product name. -->
<sys:String x:Key="Deploy_Error_Coexist">{0} لا يمكن أن يتواجد مع المنتجات الحالية.</sys:String>
<!-- {0} means product name. -->
<sys:String x:Key="Deploy_Error_ODT_Not_Supported">إذا كنت تريد تثبيت {0}، غيّر وحدة التثبيت إلى Office Tool Plus.</sys:String>
<!-- {0} means product name, {1} means channel name. -->
<sys:String x:Key="Deploy_Error_Channel">{0} لا يمكن تثبيته على القناة المحددة: {1}.</sys:String>
<!-- {0} means channel name, such as Current Channel. -->
<sys:String x:Key="Deploy_Error_Unsupported_Channel">إذا كنت تريد استخدام {0}، غيّر وحدة التثبيت إلى Office Tool Plus.</sys:String>
<!-- Example: You cannot install 32 bit of Office, because you have the 64 bit of Office installed on your computer. -->
<sys:String x:Key="Deploy_Error_Office_Architecture">لا يمكنك تثبيت {0} من أوفيس، لأن لديك {1} من أوفيس مثبت على النظام.</sys:String>
<sys:String x:Key="Deploy_Error_Installation_Arch">البنية التي اخترتها لا تتطابق مع بنية ملفات التثبيت المحلية. يرجى إعادة اختيار البنية أو عدم استخدام الملفات المحلية للنشر.</sys:String>
<sys:String x:Key="Deploy_Error_Installation_Channel">قناة التحديث التي اخترتها لا تتطابق مع قناة التحديث لملفات التثبيت المحلية. يرجى إعادة اختيار قناة التحديث أو عدم استخدام الملفات المحلية للنشر.</sys:String>
<sys:String x:Key="Deploy_Deployment">نشر أوفيس</sys:String>
<sys:String x:Key="Deploy_Deployment.Description">قبل نشر أوفيس، تأكد من ضبط وضع النشر بشكل صحيح وتكوين المنتج واللغة.</sys:String>
<sys:String x:Key="Deploy_Start_Deploy">بدء _النشر</sys:String>
<sys:String x:Key="Deploy_Reset">_إعادة ضبط جميع الإعدادات</sys:String>
<sys:String x:Key="Deploy_View_Code">_عرض كود XML</sys:String>
<sys:String x:Key="Deploy_Generate_Command">_توليد أوامر النشر</sys:String>
<sys:String x:Key="Deploy_Apply_Preferences">_تطبيق تفضيلات تطبيقات أوفيس</sys:String>
<sys:String x:Key="Deploy_Export_Config">_تصدير التكوين</sys:String>
<sys:String x:Key="Deploy_Import_Config">_استيراد التكوين</sys:String>
<sys:String x:Key="Deploy_Import_Config_Web">استيراد التكوين من _الويب</sys:String>
<sys:String x:Key="Deploy_Check_Updates">التحقق من _تحديثات أوفيس</sys:String>
<sys:String x:Key="Deploy_Repair_Office">إصلاح أوفيس</sys:String>
<sys:String x:Key="Deploy_Mode">وضع النشر</sys:String>
<sys:String x:Key="Deploy_Mode.Edit">تعديل التكوين</sys:String>
<sys:String x:Key="Deploy_Mode.Download">تنزيل</sys:String>
<sys:String x:Key="Deploy_Mode.Install">تثبيت</sys:String>
<sys:String x:Key="Deploy_Mode.Create_ISO">إنشاء ملف ISO</sys:String>
<sys:String x:Key="Deploy_Architecture">البنية</sys:String>
<!-- {0} represents the Office version number, and {1} represents the architecture. -->
<sys:String x:Key="Deploy_Architecture_Current_Installed">Currently installed Office version: {0} ({1}).</sys:String>
<sys:String x:Key="Deploy_Architecture_Installed.X86">32-بت</sys:String>
<sys:String x:Key="Deploy_Architecture_Installed.X64">64-بت</sys:String>
<sys:String x:Key="Deploy_Architecture_Installed.Arm">ARM</sys:String>
<sys:String x:Key="Deploy_Architecture_Installed.Arm64">ARM64</sys:String>
<sys:String x:Key="Deploy_Architecture.X86">32-بت</sys:String>
<sys:String x:Key="Deploy_Architecture.X64">64-بت</sys:String>
<sys:String x:Key="Deploy_Architecture.Arm">ARM (متوافق مع 32-بت)</sys:String>
<sys:String x:Key="Deploy_Architecture.Arm64">ARM64 (متوافق مع 64-بت)</sys:String>
<sys:String x:Key="Deploy_Channel">قناة التحديث</sys:String>
<sys:String x:Key="Deploy_Channel_Available_Version">إصدار أوفيس المتوفر حاليًا: {0}</sys:String>
<sys:String x:Key="Deploy_Module">وحدة التثبيت</sys:String>
<sys:String x:Key="Deploy_Module.Description">اختر Office Deployment Tool لمزيد من التوافق، أو Office Tool Plus لتجربة أفضل.</sys:String>
<sys:String x:Key="Deploy_Module.ODT">Office Deployment Tool</sys:String>
<sys:String x:Key="Deploy_Module.OTP">Office Tool Plus</sys:String>
<sys:String x:Key="Deploy_Download_First">التنزيل أولاً، ثم النشر</sys:String>
<sys:String x:Key="Deploy_Download_First.Description">سيتم حفظ ملفات التثبيت في دليل البرنامج أو الدليل المحدد بواسطة مسار المصدر.</sys:String>
<sys:String x:Key="Deploy_Create_Shortcut">إنشاء اختصارات سطح المكتب</sys:String>
<sys:String x:Key="Deploy_Create_Shortcut.Description">إنشاء اختصارات سطح المكتب لتطبيقات أوفيس بعد تثبيت أوفيس.</sys:String>
<!-- Do not edit them or translate them. iSlide and AiPPT only provided in mainland China. -->
<sys:String x:Key="Deploy_iSlide">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_iSlide.Description">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_iSlide_Install">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_iSlide_Install.Name">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_AiPPT">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_AiPPT.Description">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_AiPPT_Install">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_AiPPT_Install.Name">PlaceHolder</sys:String>
<sys:String x:Key="Deploy_Product">المنتجات</sys:String>
<sys:String x:Key="Deploy_Product.Description">{0} منتج(ات) مثبتة، {1} جاهزة للنشر و{2} جاهزة للإزالة.</sys:String>
<sys:String x:Key="Deploy_Product_Button">إضافة _منتجات</sys:String>
<sys:String x:Key="Deploy_Product_Nothing_Here">لا يوجد شيء هنا.</sys:String>
<sys:String x:Key="Deploy_Product_Installed">المنتجات المثبتة</sys:String>
<sys:String x:Key="Deploy_Product_To_Be_Deployed">جاهزة للنشر</sys:String>
<sys:String x:Key="Deploy_Product_To_Be_Uninstalled">جاهزة للإزالة</sys:String>
<sys:String x:Key="Deploy_Uninstall_Product">إزالة التثبيت</sys:String>
<sys:String x:Key="Deploy_Cancel_Uninstall_Product">إلغاء الإزالة</sys:String>
<sys:String x:Key="Deploy_Cancel_Deploy_Product">إلغاء النشر</sys:String>
<sys:String x:Key="Deploy_Applications">التطبيقات</sys:String>
<sys:String x:Key="Deploy_Addons">الإضافات</sys:String>
<sys:String x:Key="Deploy_Addons.Tip">لا تقم بإلغاء تحديد الإضافات إذا لم تكن تعرف ما هي.</sys:String>
<sys:String x:Key="Deploy_Language">اللغات</sys:String>
<sys:String x:Key="Deploy_Language.Description">{0} لغة مثبتة، {1} جاهزة للنشر و{2} جاهزة للإزالة.</sys:String>
<sys:String x:Key="Deploy_Language_Button">إضافة _لغات</sys:String>
<sys:String x:Key="Deploy_Language_Nothing_Here">لا يوجد شيء هنا.</sys:String>
<sys:String x:Key="Deploy_Language_Installed">اللغات المثبتة</sys:String>
<sys:String x:Key="Deploy_Language_To_Be_Deployed">جاهزة للنشر</sys:String>
<sys:String x:Key="Deploy_Language_To_Be_Uninstalled">جاهزة للإزالة</sys:String>
<sys:String x:Key="Deploy_Uninstall_Language">إزالة التثبيت</sys:String>
<sys:String x:Key="Deploy_Cancel_Uninstall_Language">إلغاء الإزالة</sys:String>
<sys:String x:Key="Deploy_Edit_Language_Settings">إعدادات اللغة</sys:String>
<sys:String x:Key="Deploy_Cancel_Deploy_Language">إلغاء النشر</sys:String>
<sys:String x:Key="Deploy_Products_List">قائمة المنتجات</sys:String>
<sys:String x:Key="Deploy_Products_List_Type_To_Search">اكتب لتصفية قائمة المنتجات</sys:String>
<sys:String x:Key="Deploy_Products_List_ID">معرف المنتج:</sys:String>
<sys:String x:Key="Deploy_Languages_List">قائمة اللغات</sys:String>
<sys:String x:Key="Deploy_Languages_List_Type_To_Search">اكتب لتصفية قائمة اللغات</sys:String>
<sys:String x:Key="Deploy_Languages_List_Proofing_Tool_Only">نشر أدوات التدقيق فقط.</sys:String>
<sys:String x:Key="Deploy_Languages_List_ID">معرف اللغة:</sys:String>
<sys:String x:Key="Deploy_Languages_List_Type">نوع اللغة:</sys:String>
<sys:String x:Key="Deploy_Language_Type.Full">كامل</sys:String>
<sys:String x:Key="Deploy_Language_Type.PartialAndProofing">جزئي</sys:String>
<sys:String x:Key="Deploy_Language_Type.Partial">جزئي بدون أدوات التدقيق</sys:String>
<sys:String x:Key="Deploy_Language_Type.Proofing">أدوات التدقيق</sys:String>
<sys:String x:Key="Deploy_Language_Settings_Exclude">تثبيت للمنتجات التالية</sys:String>
<sys:String x:Key="Deploy_Installation_Files">ملفات التثبيت</sys:String>
<sys:String x:Key="Deploy_Installation_Files.Description">حدد أو تحقق أو احذف ملفات تثبيت أوفيس.</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Select">تحديد</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Select.Description">عند تحديد ملفات التثبيت، اختر أي ملف من ملفات CAB.</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Verify">تحقق</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Verify.Description">تحقق من ملفات التثبيت بحثًا عن الأخطاء.</sys:String>
<sys:String x:Key="Deploy_Installation_Files_DeleteAll">حذف الكل</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Reset">إعادة ضبط</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Reset.Description">لا تستخدم ملفات التثبيت الحالية لنشر أوفيس.</sys:String>
<sys:String x:Key="Deploy_Installation_Files_UseAsSource">_استخدام كمصدر</sys:String>
<sys:String x:Key="Deploy_Installation_Files_UseAsSource.Description">سيتم مطابقة البنية وقناة التحديث تلقائيًا مع هذا التثبيت.</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Open_Location">_فتح موقع الملف</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Delete">حذف</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Package.x-none">الحزمة الأساسية (مطلوبة)</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Package.x-none.arm64x">حزمة ARM64</sys:String>
<sys:String x:Key="Deploy_Installation_Files_Package.x-none.chpe">حزمة ARM</sys:String>
<sys:String x:Key="Deploy_Advanced_Settings">الانتقال إلى الإعدادات المتقدمة</sys:String>
<sys:String x:Key="Deploy_Advanced_Settings.Description">انتقل إلى الإعدادات المتقدمة لضبط المزيد من الخيارات.</sys:String>
<sys:String x:Key="Deploy_Advanced_Settings_Button">_إعدادات متقدمة</sys:String>
gitextract_j8lc3xg9/
├── .github/
│ └── ISSUE_TEMPLATE/
│ ├── bug-report.yaml
│ └── feature-request.yaml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── NOTICE.md
├── README-ar-sa.md
├── README-de-de.md
├── README-en-gb.md
├── README-es-es.md
├── README-fr-fr.md
├── README-hu-hu.md
├── README-id-id.md
├── README-it-it.md
├── README-ko-kr.md
├── README-my-mm.md
├── README-nl-nl.md
├── README-pl-pl.md
├── README-ro-ro.md
├── README-ru-ru.md
├── README-th-th.md
├── README-tr-tr.md
├── README-zh-cn.md
├── README-zh-tw.md
├── README.md
├── config/
│ ├── Launcher/
│ │ └── Locales.json
│ └── Message/
│ ├── end_of_support.json
│ └── win7-setup-issue.json
└── src/
├── OfficeToolPlus/
│ └── Dictionaries/
│ ├── Languages/
│ │ ├── ar-ly.xaml
│ │ ├── ar-sa.xaml
│ │ ├── de-de.xaml
│ │ ├── en-gb.xaml
│ │ ├── en-us.xaml
│ │ ├── es-es.xaml
│ │ ├── fr-fr.xaml
│ │ ├── hu-hu.xaml
│ │ ├── id-id.xaml
│ │ ├── it-it.xaml
│ │ ├── ja-jp.xaml
│ │ ├── ko-kr.xaml
│ │ ├── my-mm.xaml
│ │ ├── nl-nl.xaml
│ │ ├── pl-pl.xaml
│ │ ├── pt-br.xaml
│ │ ├── ro-ro.xaml
│ │ ├── ru-ru.xaml
│ │ ├── th-th.xaml
│ │ ├── tr-tr.xaml
│ │ ├── uk-ua.xaml
│ │ ├── vi-vn.xaml
│ │ ├── zh-cn.xaml
│ │ ├── zh-sg.xaml
│ │ ├── zh-tw.xaml
│ │ └── zho-yue.xaml
│ ├── ProductsName/
│ │ ├── en-gb.xaml
│ │ ├── en-us.xaml
│ │ ├── es-es.xaml
│ │ ├── fr-fr.xaml
│ │ ├── it-it.xaml
│ │ ├── ja-jp.xaml
│ │ ├── ko-kr.xaml
│ │ ├── my-mm.xaml
│ │ ├── nl-nl.xaml
│ │ ├── tr-tr.xaml
│ │ ├── uk-ua.xaml
│ │ ├── vi-vn.xaml
│ │ ├── zh-cn.xaml
│ │ └── zh-tw.xaml
│ └── README.md
└── scripts/
├── Get-OfficeToolPlus.ps1
└── Invoke-Commands.ps1
Condensed preview — 71 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (2,620K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/bug-report.yaml",
"chars": 1730,
"preview": "name: Bug Report\ndescription: Submit a bug report to help us resolve issue.\ntitle: \"[Bug] \"\nlabels: [\"Bug\"]\nassignees:\n "
},
{
"path": ".github/ISSUE_TEMPLATE/feature-request.yaml",
"chars": 678,
"preview": "name: Feature request\ndescription: Suggest an idea for this project.\ntitle: \"[IDEA] \"\nlabels: [\"Idea-Enhancement\"]\nassig"
},
{
"path": ".gitignore",
"chars": 470,
"preview": "# Prerequisites\n*.d\n\n# Object files\n*.o\n*.ko\n*.obj\n*.elf\n\n# Linker output\n*.ilk\n*.map\n*.exp\n\n# Precompiled Headers\n*.gch"
},
{
"path": "CONTRIBUTING.md",
"chars": 535,
"preview": "# Help With Localization\n\nWe encourage everyone to help with localization. The following is how to do it.\n\n1. Fork this "
},
{
"path": "LICENSE",
"chars": 1063,
"preview": "MIT License\n\nCopyright (c) 2023 Yerong\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof "
},
{
"path": "NOTICE.md",
"chars": 1113,
"preview": "# NOTICES AND INFORMATION\n\nThis software incorporates material from third parties.\n\n## IsoCreator\n\nAuthor: [epurasu](htt"
},
{
"path": "README-ar-sa.md",
"chars": 2196,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-de-de.md",
"chars": 3142,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-en-gb.md",
"chars": 2624,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-es-es.md",
"chars": 2901,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-fr-fr.md",
"chars": 3020,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-hu-hu.md",
"chars": 2905,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-id-id.md",
"chars": 2123,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-it-it.md",
"chars": 2750,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-ko-kr.md",
"chars": 2042,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p"
},
{
"path": "README-my-mm.md",
"chars": 3108,
"preview": "#\r\n\r\n<p align=\"center\">\r\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\r\n</p>\r"
},
{
"path": "README-nl-nl.md",
"chars": 2779,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-pl-pl.md",
"chars": 2159,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-ro-ro.md",
"chars": 2786,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-ru-ru.md",
"chars": 2147,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-th-th.md",
"chars": 2635,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-tr-tr.md",
"chars": 2831,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README-zh-cn.md",
"chars": 1791,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p"
},
{
"path": "README-zh-tw.md",
"chars": 2183,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "README.md",
"chars": 4140,
"preview": "#\n\n<p align=\"center\">\n<img alt=\"Office Tool Plus Logo\" src=\"https://otp.landian.vip/assets/images/logo.webp\"/>\n</p>\n\n<p "
},
{
"path": "config/Launcher/Locales.json",
"chars": 107019,
"preview": "[\n {\n \"Name\": \"M365 Copilot\",\n \"Description\": \"Supercharge productivity, streamline tasks, and uncover "
},
{
"path": "config/Message/end_of_support.json",
"chars": 9400,
"preview": "{\n \"ar-sa\": {\n \"Title\": \"نهاية دعم تطبيقات Microsoft 365\",\n \"Content\": \"قد لا يتم تثبيت تطبيقات Micros"
},
{
"path": "config/Message/win7-setup-issue.json",
"chars": 7764,
"preview": "{\n \"ar-sa\": {\n \"Title\": \"مشكلة في التثبيت\",\n \"Content\": \"إذا توقف **Microsoft Office عن العمل** أثناء ا"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ar-ly.xaml",
"chars": 83184,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ar-sa.xaml",
"chars": 82928,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/de-de.xaml",
"chars": 91701,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/en-gb.xaml",
"chars": 86232,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/en-us.xaml",
"chars": 86221,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/es-es.xaml",
"chars": 90972,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/fr-fr.xaml",
"chars": 92785,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/hu-hu.xaml",
"chars": 90331,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/id-id.xaml",
"chars": 87778,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/it-it.xaml",
"chars": 90410,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ja-jp.xaml",
"chars": 77902,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ko-kr.xaml",
"chars": 75171,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/my-mm.xaml",
"chars": 91084,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\r\n xmlns:x=\"http"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/nl-nl.xaml",
"chars": 89908,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/pl-pl.xaml",
"chars": 89802,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/pt-br.xaml",
"chars": 90790,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ro-ro.xaml",
"chars": 89992,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/ru-ru.xaml",
"chars": 89216,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/th-th.xaml",
"chars": 85328,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/tr-tr.xaml",
"chars": 88260,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/uk-ua.xaml",
"chars": 88544,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/vi-vn.xaml",
"chars": 86196,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/zh-cn.xaml",
"chars": 70513,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/zh-sg.xaml",
"chars": 7994,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/zh-tw.xaml",
"chars": 72190,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/Languages/zho-yue.xaml",
"chars": 70359,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/en-gb.xaml",
"chars": 12738,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/en-us.xaml",
"chars": 12754,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/es-es.xaml",
"chars": 12846,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/fr-fr.xaml",
"chars": 13046,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/it-it.xaml",
"chars": 12761,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/ja-jp.xaml",
"chars": 12534,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/ko-kr.xaml",
"chars": 12364,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\r\n xmlns:x=\"http"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/my-mm.xaml",
"chars": 13218,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\r\n xmlns:x=\"http"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/nl-nl.xaml",
"chars": 12819,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/tr-tr.xaml",
"chars": 12611,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/uk-ua.xaml",
"chars": 13151,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/vi-vn.xaml",
"chars": 13222,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/zh-cn.xaml",
"chars": 11578,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/ProductsName/zh-tw.xaml",
"chars": 11456,
"preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n xmlns:x=\"http:"
},
{
"path": "src/OfficeToolPlus/Dictionaries/README.md",
"chars": 1483,
"preview": "# Office Tool Plus Translation Guidelines\n\nXAML files are localized files used by Office Tool Plus. We recommend that yo"
},
{
"path": "src/scripts/Get-OfficeToolPlus.ps1",
"chars": 18347,
"preview": "# Enable TLSv1.2 for compatibility with older clients.\n[System.Net.ServicePointManager]::SecurityProtocol = [System.Net."
},
{
"path": "src/scripts/Invoke-Commands.ps1",
"chars": 5729,
"preview": "# Set commands like this:\n# $Commands = @(\"deploy /add O365ProPlusRetail_en-us\", \"ospp /inslicid MondoVolume /sethst 192"
}
]
About this extraction
This page contains the full source code of the YerongAI/Office-Tool GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 71 files (2.4 MB), approximately 635.6k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.