This commit is contained in:
+3
-3
@@ -3988,7 +3988,7 @@ async function doOnlineBackupCreate() {
|
||||
const authority = beginManagedOnlineBackupMutation();
|
||||
const createButton = document.getElementById('createOnlineBackupBtn');
|
||||
const retentionSelect = document.getElementById('onlineBackupRetentionSelect');
|
||||
const retention = retentionSelect?.value || '7d';
|
||||
const retention = retentionSelect?.value || 'forever';
|
||||
if (createButton) createButton.disabled = true;
|
||||
if (retentionSelect) retentionSelect.disabled = true;
|
||||
setOnlineBackupStatus('Verschlüssele und speichere Einstellungen…', 'busy', authority.statusContext);
|
||||
@@ -6615,9 +6615,9 @@ function renderSettings() {
|
||||
<select id="onlineBackupRetentionSelect">
|
||||
<option value="1d">24 Stunden</option>
|
||||
<option value="3d">3 Tage</option>
|
||||
<option value="7d" selected>7 Tage (Standard)</option>
|
||||
<option value="7d">7 Tage</option>
|
||||
<option value="31d">31 Tage</option>
|
||||
<option value="forever">Unbegrenzt</option>
|
||||
<option value="forever" selected>Unbegrenzt (Standard)</option>
|
||||
</select>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
+2
-1
@@ -381,7 +381,8 @@
|
||||
['Gültigkeitsdauer', 'Validity period'],
|
||||
['24 Stunden', '24 hours'],
|
||||
['3 Tage', '3 days'],
|
||||
['7 Tage (Standard)', '7 days (default)'],
|
||||
['7 Tage', '7 days'],
|
||||
['Unbegrenzt (Standard)', 'Unlimited (default)'],
|
||||
['31 Tage', '31 days'],
|
||||
['Erstellt', 'Created'],
|
||||
['Gültig bis', 'Valid until'],
|
||||
|
||||
Reference in New Issue
Block a user