Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion l10n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -3484,7 +3484,8 @@ OC.L10N.register(
"Yes or no": "Yes or no",
"Maximum length": "Maximum length",
"Longest value this property accepts.": "Longest value this property accepts.",
"The status from which this property must be answered.": "The status from which this property must be answered."
"The status from which this property must be answered.": "The status from which this property must be answered.",
"Save store settings": "Save store settings"
},
"nplurals=2; plural=(n != 1);"
)
3 changes: 2 additions & 1 deletion l10n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3483,7 +3483,8 @@
"Yes or no": "Yes or no",
"Maximum length": "Maximum length",
"Longest value this property accepts.": "Longest value this property accepts.",
"The status from which this property must be answered.": "The status from which this property must be answered."
"The status from which this property must be answered.": "The status from which this property must be answered.",
"Save store settings": "Save store settings"
},
"plurals": ""
}
3 changes: 2 additions & 1 deletion l10n/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -3484,7 +3484,8 @@ OC.L10N.register(
"Yes or no": "Ja of nee",
"Maximum length": "Maximale lengte",
"Longest value this property accepts.": "De langste waarde die deze eigenschap accepteert.",
"The status from which this property must be answered.": "De status vanaf wanneer deze eigenschap ingevuld moet zijn."
"The status from which this property must be answered.": "De status vanaf wanneer deze eigenschap ingevuld moet zijn.",
"Save store settings": "Store-instellingen opslaan"
},
"nplurals=2; plural=(n != 1);"
)
3 changes: 2 additions & 1 deletion l10n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -3483,6 +3483,7 @@
"Yes or no": "Ja of nee",
"Maximum length": "Maximale lengte",
"Longest value this property accepts.": "De langste waarde die deze eigenschap accepteert.",
"The status from which this property must be answered.": "De status vanaf wanneer deze eigenschap ingevuld moet zijn."
"The status from which this property must be answered.": "De status vanaf wanneer deze eigenschap ingevuld moet zijn.",
"Save store settings": "Store-instellingen opslaan"
}
}
4 changes: 3 additions & 1 deletion src/views/settings/tabs/StoreSettingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
</p>

<NcButton variant="primary" :disabled="saving" @click="save">
{{ saving ? t('dossiq', 'Saving…') : t('dossiq', 'Save') }}
{{
saving ? t('dossiq', 'Saving…') : t('dossiq', 'Save store settings')
}}
</NcButton>
</div>
</template>
Expand Down
Loading