Merge pull request #19300 from nextcloud/rakekniven-patch-1

l10n: Triple dot to ellipsis
This commit is contained in:
Roeland Jago Douma 2020-02-05 14:22:46 +01:00 committed by GitHub
commit f11e4c9ec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -1345,7 +1345,7 @@ $(document).ready(function() {
var user = $form.find('[name=username]').val();
var password = $form.find('[name=password]').val();
var $submit = $form.find('[type=submit]');
$submit.val(t('files_external', 'Saving...'));
$submit.val(t('files_external', 'Saving'));
$.ajax({
type: 'POST',
contentType: 'application/json',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@ export default {
* @param {Object} selector Placeholder to display the message in
*/
startSaving: function(selector) {
this.startAction(selector, t('core', 'Saving...'))
this.startAction(selector, t('core', 'Saving'))
},
/**