diff --git a/.github/ISSUE_TEMPLATE/bug_resolution.yml b/.github/ISSUE_TEMPLATE/bug_resolution.yml
index 60e415d7a..a10f732e5 100644
--- a/.github/ISSUE_TEMPLATE/bug_resolution.yml
+++ b/.github/ISSUE_TEMPLATE/bug_resolution.yml
@@ -85,6 +85,7 @@ body:
label: Version
description: What version of CryptPad are you running?
options:
+ - 5.4-rc
- 5.3.0
- 5.2.1
- 5.2.0
diff --git a/www/common/onlyoffice/inner.js b/www/common/onlyoffice/inner.js
index d6a1b24b4..1634e4edc 100644
--- a/www/common/onlyoffice/inner.js
+++ b/www/common/onlyoffice/inner.js
@@ -241,6 +241,12 @@ define([
type = APP.downloadType;
title = "download";
}
+ if(title === "" && APP.startWithTemplate) {
+ var metadata = APP.startWithTemplate.content.metadata;
+ var copyTitle = Messages._getKey('copy_title', [metadata.title || metadata.defaultTitle]);
+ common.getMetadataMgr().updateTitle(copyTitle);
+ title = copyTitle;
+ }
var file = {};
switch(type) {
case 'doc':
diff --git a/www/common/translations/messages.ar.json b/www/common/translations/messages.ar.json
index d6e117fa9..bcdfb8d96 100644
--- a/www/common/translations/messages.ar.json
+++ b/www/common/translations/messages.ar.json
@@ -1625,5 +1625,6 @@
"admin_totpRecoveryHint": "يمكن للمستخدمين نسخ بيانات الإسترجاع على صفحة استرجاع المصادقة الثنائية (2FA) /recovery/ ورسله للإيميل مسؤولين المنصة. ألصق بيانات الإسترجاع أدناه لتعطيل المصادقة الثنائية (2FA) لحساب",
"admin_totpEnabled": "المصادقة الثنائية (2FA) مُمكنة",
"admin_totpRecoveryMethod": "طريقة استرجاع المصادقة الثنائية (2FA)",
- "admin_totpCheck": "نجاح التحقق من صحة التوقيع"
+ "admin_totpCheck": "نجاح التحقق من صحة التوقيع",
+ "recovery_mfa_secret_ph": "رمز الإسترجاع"
}
diff --git a/www/common/translations/messages.de.json b/www/common/translations/messages.de.json
index 0d1f81241..3919c1dd3 100644
--- a/www/common/translations/messages.de.json
+++ b/www/common/translations/messages.de.json
@@ -1614,5 +1614,6 @@
"recovery_header": "2FA-Wiederherstellung",
"mfa_revoke_code": "Bitte gib den Verifizierungscode ein",
"recovery_mfa_error": "Unbekannter Fehler. Bitte neu laden und erneut versuchen.",
- "recovery_mfa_disabled": "Multi-Faktor-Authentifizierung ist für diesen Account bereits deaktiviert."
+ "recovery_mfa_disabled": "Multi-Faktor-Authentifizierung ist für diesen Account bereits deaktiviert.",
+ "recovery_mfa_secret_ph": "Wiederherstellungscode"
}
diff --git a/www/common/translations/messages.ja.json b/www/common/translations/messages.ja.json
index d9313a206..579d94228 100644
--- a/www/common/translations/messages.ja.json
+++ b/www/common/translations/messages.ja.json
@@ -1623,5 +1623,6 @@
"admin_totpCheck": "署名の認証に成功しました",
"settings_mfaTitle": "二要素認証",
"form_condorcetSchulze": "シュルツェ",
- "form_noCondorcetWinner": "勝者がありません"
+ "form_noCondorcetWinner": "勝者がありません",
+ "recovery_mfa_secret_ph": "復旧コード"
}
diff --git a/www/common/translations/messages.json b/www/common/translations/messages.json
index eeee8330a..15f66fdaf 100644
--- a/www/common/translations/messages.json
+++ b/www/common/translations/messages.json
@@ -1628,5 +1628,6 @@
"admin_totpDisableButton": "Disable",
"register_nameTooLong": "Usernames must be shorter than {0} characters",
"loading_enter_otp": "This account is protected with Two-Factor Authentication. Please enter your verification code",
- "loading_recover": "Unable to get a code? Recover your account"
+ "loading_recover": "Unable to get a code? Recover your account",
+ "recovery_mfa_secret_ph": "Recovery code"
}