mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-26 10:17:09 +00:00
0065527a5e
Refactor the plugin to support internationalization and ship it in three languages. Internationalizing requires updating the manifest, which involves touching the Helm chart and releasing a new version. Ship a beta version of the plugin once the i18n work is done to bundle these changes together.
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title data-app-name></title>
|
|
<link rel="stylesheet" href="../styles/spinner.css" />
|
|
<script nonce="NONCE_PLACEHOLDER" src="/addons/outlook/config.js"></script>
|
|
<script nonce="NONCE_PLACEHOLDER" src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="sideload-msg" data-i18n="app.sideload"></div>
|
|
<div
|
|
class="spinner-container"
|
|
role="progressbar"
|
|
data-i18n-aria="app.loading"
|
|
>
|
|
<svg
|
|
class="spinner-svg"
|
|
viewBox="0 0 28 28"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<!-- Background track -->
|
|
<circle class="spinner-track" cx="14" cy="14" r="11"
|
|
/>
|
|
<!-- Rotating arc -->
|
|
<circle class="spinner-arc" cx="14" cy="14" r="11"
|
|
/>
|
|
</svg>
|
|
|
|
<!-- Fallback hourglass icon (Remix Icon RiHourglassFill SVG path) -->
|
|
<span class="spinner-fallback" aria-hidden="true">
|
|
<svg
|
|
width="22"
|
|
height="22"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
style="display: block; transform: translateY(1px);"
|
|
>
|
|
<path d="M6 2H18V4L13 12L18 20V22H6V20L11 12L6 4V2ZM8.535 4L13 11.143L17.465 4H8.535Z"/>
|
|
</svg>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|