├── .gitignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── deploy ├── azuredeploy.json └── deployBuild.ps1 ├── doc └── Splash.gif ├── localization-pipelines.yml ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── CopyMeetingPage.tsx ├── CreateLandingPage.tsx ├── ErrorPage.tsx ├── MeetingPage.tsx ├── RootReducer.ts ├── SigninPage.tsx ├── auth │ ├── actions.ts │ ├── index.ts │ ├── middleware.ts │ └── msalApp.ts ├── components │ └── header.tsx ├── images │ ├── calendar.svg │ ├── genericError.svg │ └── signin.svg ├── index.css ├── index.tsx ├── localization │ ├── edu │ │ └── strings.json │ ├── health │ │ └── strings.json │ └── translate.ts ├── meeting-creator │ ├── actions.ts │ ├── middleware.ts │ ├── models.ts │ ├── reducers.ts │ ├── service.ts │ ├── state.ts │ └── validators.ts ├── react-app-env.d.ts └── translations │ ├── edu │ ├── ar-SA │ │ └── strings.json │ ├── az-Latn-AZ │ │ └── strings.json │ ├── bg-BG │ │ └── strings.json │ ├── cs-CZ │ │ └── strings.json │ ├── cy-GB │ │ └── strings.json │ ├── da-DK │ │ └── strings.json │ ├── de-DE │ │ └── strings.json │ ├── en-GB │ │ └── strings.json │ ├── en-US │ │ └── strings.json │ ├── es-ES │ │ └── strings.json │ ├── es-MX │ │ └── strings.json │ ├── eu-ES │ │ └── strings.json │ ├── fi-FI │ │ └── strings.json │ ├── fr-CA │ │ └── strings.json │ ├── fr-FR │ │ └── strings.json │ ├── gl-ES │ │ └── strings.json │ ├── he-IL │ │ └── strings.json │ ├── is-IS │ │ └── strings.json │ ├── it-IT │ │ └── strings.json │ ├── ja-JP │ │ └── strings.json │ ├── kk-KZ │ │ └── strings.json │ ├── ko-KR │ │ └── strings.json │ ├── nb-NO │ │ └── strings.json │ ├── nl-NL │ │ └── strings.json │ ├── nn-NO │ │ └── strings.json │ ├── pl-PL │ │ └── strings.json │ ├── pt-BR │ │ └── strings.json │ ├── pt-PT │ │ └── strings.json │ ├── ru-RU │ │ └── strings.json │ ├── sk-SK │ │ └── strings.json │ ├── sq-AL │ │ └── strings.json │ ├── sr-Latn-RS │ │ └── strings.json │ ├── sv-SE │ │ └── strings.json │ ├── th-TH │ │ └── strings.json │ ├── tr-TR │ │ └── strings.json │ ├── zh-CN │ │ └── strings.json │ └── zh-TW │ │ └── strings.json │ └── health │ ├── ar-SA │ └── strings.json │ ├── az-Latn-AZ │ └── strings.json │ ├── bg-BG │ └── strings.json │ ├── cs-CZ │ └── strings.json │ ├── cy-GB │ └── strings.json │ ├── da-DK │ └── strings.json │ ├── de-DE │ └── strings.json │ ├── en-GB │ └── strings.json │ ├── en-US │ └── strings.json │ ├── es-ES │ └── strings.json │ ├── es-MX │ └── strings.json │ ├── eu-ES │ └── strings.json │ ├── fi-FI │ └── strings.json │ ├── fr-CA │ └── strings.json │ ├── fr-FR │ └── strings.json │ ├── gl-ES │ └── strings.json │ ├── he-IL │ └── strings.json │ ├── is-IS │ └── strings.json │ ├── it-IT │ └── strings.json │ ├── ja-JP │ └── strings.json │ ├── kk-KZ │ └── strings.json │ ├── ko-KR │ └── strings.json │ ├── nb-NO │ └── strings.json │ ├── nl-NL │ └── strings.json │ ├── nn-NO │ └── strings.json │ ├── pl-PL │ └── strings.json │ ├── pt-BR │ └── strings.json │ ├── pt-PT │ └── strings.json │ ├── ru-RU │ └── strings.json │ ├── sk-SK │ └── strings.json │ ├── sq-AL │ └── strings.json │ ├── sr-Latn-RS │ └── strings.json │ ├── sv-SE │ └── strings.json │ ├── th-TH │ └── strings.json │ ├── tr-TR │ └── strings.json │ ├── zh-CN │ └── strings.json │ └── zh-TW │ └── strings.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /deploy/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/deploy/azuredeploy.json -------------------------------------------------------------------------------- /deploy/deployBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/deploy/deployBuild.ps1 -------------------------------------------------------------------------------- /doc/Splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/doc/Splash.gif -------------------------------------------------------------------------------- /localization-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/localization-pipelines.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/CopyMeetingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/CopyMeetingPage.tsx -------------------------------------------------------------------------------- /src/CreateLandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/CreateLandingPage.tsx -------------------------------------------------------------------------------- /src/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/ErrorPage.tsx -------------------------------------------------------------------------------- /src/MeetingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/MeetingPage.tsx -------------------------------------------------------------------------------- /src/RootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/RootReducer.ts -------------------------------------------------------------------------------- /src/SigninPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/SigninPage.tsx -------------------------------------------------------------------------------- /src/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/auth/actions.ts -------------------------------------------------------------------------------- /src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/auth/index.ts -------------------------------------------------------------------------------- /src/auth/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/auth/middleware.ts -------------------------------------------------------------------------------- /src/auth/msalApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/auth/msalApp.ts -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/images/calendar.svg -------------------------------------------------------------------------------- /src/images/genericError.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/images/genericError.svg -------------------------------------------------------------------------------- /src/images/signin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/images/signin.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/localization/edu/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/localization/edu/strings.json -------------------------------------------------------------------------------- /src/localization/health/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/localization/health/strings.json -------------------------------------------------------------------------------- /src/localization/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/localization/translate.ts -------------------------------------------------------------------------------- /src/meeting-creator/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/actions.ts -------------------------------------------------------------------------------- /src/meeting-creator/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/middleware.ts -------------------------------------------------------------------------------- /src/meeting-creator/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/models.ts -------------------------------------------------------------------------------- /src/meeting-creator/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/reducers.ts -------------------------------------------------------------------------------- /src/meeting-creator/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/service.ts -------------------------------------------------------------------------------- /src/meeting-creator/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/state.ts -------------------------------------------------------------------------------- /src/meeting-creator/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/meeting-creator/validators.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/translations/edu/ar-SA/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/ar-SA/strings.json -------------------------------------------------------------------------------- /src/translations/edu/az-Latn-AZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/az-Latn-AZ/strings.json -------------------------------------------------------------------------------- /src/translations/edu/bg-BG/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/bg-BG/strings.json -------------------------------------------------------------------------------- /src/translations/edu/cs-CZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/cs-CZ/strings.json -------------------------------------------------------------------------------- /src/translations/edu/cy-GB/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/cy-GB/strings.json -------------------------------------------------------------------------------- /src/translations/edu/da-DK/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/da-DK/strings.json -------------------------------------------------------------------------------- /src/translations/edu/de-DE/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/de-DE/strings.json -------------------------------------------------------------------------------- /src/translations/edu/en-GB/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/en-GB/strings.json -------------------------------------------------------------------------------- /src/translations/edu/en-US/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/en-US/strings.json -------------------------------------------------------------------------------- /src/translations/edu/es-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/es-ES/strings.json -------------------------------------------------------------------------------- /src/translations/edu/es-MX/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/es-MX/strings.json -------------------------------------------------------------------------------- /src/translations/edu/eu-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/eu-ES/strings.json -------------------------------------------------------------------------------- /src/translations/edu/fi-FI/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/fi-FI/strings.json -------------------------------------------------------------------------------- /src/translations/edu/fr-CA/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/fr-CA/strings.json -------------------------------------------------------------------------------- /src/translations/edu/fr-FR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/fr-FR/strings.json -------------------------------------------------------------------------------- /src/translations/edu/gl-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/gl-ES/strings.json -------------------------------------------------------------------------------- /src/translations/edu/he-IL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/he-IL/strings.json -------------------------------------------------------------------------------- /src/translations/edu/is-IS/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/is-IS/strings.json -------------------------------------------------------------------------------- /src/translations/edu/it-IT/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/it-IT/strings.json -------------------------------------------------------------------------------- /src/translations/edu/ja-JP/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/ja-JP/strings.json -------------------------------------------------------------------------------- /src/translations/edu/kk-KZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/kk-KZ/strings.json -------------------------------------------------------------------------------- /src/translations/edu/ko-KR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/ko-KR/strings.json -------------------------------------------------------------------------------- /src/translations/edu/nb-NO/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/nb-NO/strings.json -------------------------------------------------------------------------------- /src/translations/edu/nl-NL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/nl-NL/strings.json -------------------------------------------------------------------------------- /src/translations/edu/nn-NO/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/nn-NO/strings.json -------------------------------------------------------------------------------- /src/translations/edu/pl-PL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/pl-PL/strings.json -------------------------------------------------------------------------------- /src/translations/edu/pt-BR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/pt-BR/strings.json -------------------------------------------------------------------------------- /src/translations/edu/pt-PT/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/pt-PT/strings.json -------------------------------------------------------------------------------- /src/translations/edu/ru-RU/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/ru-RU/strings.json -------------------------------------------------------------------------------- /src/translations/edu/sk-SK/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/sk-SK/strings.json -------------------------------------------------------------------------------- /src/translations/edu/sq-AL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/sq-AL/strings.json -------------------------------------------------------------------------------- /src/translations/edu/sr-Latn-RS/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/sr-Latn-RS/strings.json -------------------------------------------------------------------------------- /src/translations/edu/sv-SE/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/sv-SE/strings.json -------------------------------------------------------------------------------- /src/translations/edu/th-TH/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/th-TH/strings.json -------------------------------------------------------------------------------- /src/translations/edu/tr-TR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/tr-TR/strings.json -------------------------------------------------------------------------------- /src/translations/edu/zh-CN/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/zh-CN/strings.json -------------------------------------------------------------------------------- /src/translations/edu/zh-TW/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/edu/zh-TW/strings.json -------------------------------------------------------------------------------- /src/translations/health/ar-SA/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/ar-SA/strings.json -------------------------------------------------------------------------------- /src/translations/health/az-Latn-AZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/az-Latn-AZ/strings.json -------------------------------------------------------------------------------- /src/translations/health/bg-BG/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/bg-BG/strings.json -------------------------------------------------------------------------------- /src/translations/health/cs-CZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/cs-CZ/strings.json -------------------------------------------------------------------------------- /src/translations/health/cy-GB/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/cy-GB/strings.json -------------------------------------------------------------------------------- /src/translations/health/da-DK/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/da-DK/strings.json -------------------------------------------------------------------------------- /src/translations/health/de-DE/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/de-DE/strings.json -------------------------------------------------------------------------------- /src/translations/health/en-GB/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/en-GB/strings.json -------------------------------------------------------------------------------- /src/translations/health/en-US/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/en-US/strings.json -------------------------------------------------------------------------------- /src/translations/health/es-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/es-ES/strings.json -------------------------------------------------------------------------------- /src/translations/health/es-MX/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/es-MX/strings.json -------------------------------------------------------------------------------- /src/translations/health/eu-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/eu-ES/strings.json -------------------------------------------------------------------------------- /src/translations/health/fi-FI/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/fi-FI/strings.json -------------------------------------------------------------------------------- /src/translations/health/fr-CA/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/fr-CA/strings.json -------------------------------------------------------------------------------- /src/translations/health/fr-FR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/fr-FR/strings.json -------------------------------------------------------------------------------- /src/translations/health/gl-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/gl-ES/strings.json -------------------------------------------------------------------------------- /src/translations/health/he-IL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/he-IL/strings.json -------------------------------------------------------------------------------- /src/translations/health/is-IS/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/is-IS/strings.json -------------------------------------------------------------------------------- /src/translations/health/it-IT/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/it-IT/strings.json -------------------------------------------------------------------------------- /src/translations/health/ja-JP/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/ja-JP/strings.json -------------------------------------------------------------------------------- /src/translations/health/kk-KZ/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/kk-KZ/strings.json -------------------------------------------------------------------------------- /src/translations/health/ko-KR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/ko-KR/strings.json -------------------------------------------------------------------------------- /src/translations/health/nb-NO/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/nb-NO/strings.json -------------------------------------------------------------------------------- /src/translations/health/nl-NL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/nl-NL/strings.json -------------------------------------------------------------------------------- /src/translations/health/nn-NO/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/nn-NO/strings.json -------------------------------------------------------------------------------- /src/translations/health/pl-PL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/pl-PL/strings.json -------------------------------------------------------------------------------- /src/translations/health/pt-BR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/pt-BR/strings.json -------------------------------------------------------------------------------- /src/translations/health/pt-PT/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/pt-PT/strings.json -------------------------------------------------------------------------------- /src/translations/health/ru-RU/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/ru-RU/strings.json -------------------------------------------------------------------------------- /src/translations/health/sk-SK/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/sk-SK/strings.json -------------------------------------------------------------------------------- /src/translations/health/sq-AL/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/sq-AL/strings.json -------------------------------------------------------------------------------- /src/translations/health/sr-Latn-RS/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/sr-Latn-RS/strings.json -------------------------------------------------------------------------------- /src/translations/health/sv-SE/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/sv-SE/strings.json -------------------------------------------------------------------------------- /src/translations/health/th-TH/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/th-TH/strings.json -------------------------------------------------------------------------------- /src/translations/health/tr-TR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/tr-TR/strings.json -------------------------------------------------------------------------------- /src/translations/health/zh-CN/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/zh-CN/strings.json -------------------------------------------------------------------------------- /src/translations/health/zh-TW/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/src/translations/health/zh-TW/strings.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/msteams-meetings-template/HEAD/yarn.lock --------------------------------------------------------------------------------