]> source.dussan.org Git - nextcloud-server.git/commitdiff
Return to quotation marks 30939/head
authorValdnet <47037905+Valdnet@users.noreply.github.com>
Mon, 31 Jan 2022 18:46:32 +0000 (19:46 +0100)
committerMichaIng <micha@dietpi.com>
Thu, 31 Mar 2022 14:21:28 +0000 (16:21 +0200)
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
core/js/setupchecks.js

index b7345ff1f73cf6d624574359618bb70422974944..6fd6fce5dcfd28156eec7be2a3e08a2fd5deaa2c 100644 (file)
                                                        listOfMissingIndexes += '</li>';
                                                });
                                                messages.push({
-                                                       msg: t('core', 'The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running \'occ db:add-missing-indices\' those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster.') + '<ul>' + listOfMissingIndexes + '</ul>',
+                                                       msg: t('core', 'The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running "occ db:add-missing-indices" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster.') + '<ul>' + listOfMissingIndexes + '</ul>',
                                                        type: OC.SetupChecks.MESSAGE_TYPE_INFO
                                                })
                                        }
                                                        listOfMissingPrimaryKeys += '</li>';
                                                });
                                                messages.push({
-                                                       msg: t('core', 'The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running \'occ db:add-missing-primary-keys\' those missing primary keys could be added manually while the instance keeps running.') + '<ul>' + listOfMissingPrimaryKeys + '</ul>',
+                                                       msg: t('core', 'The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running "occ db:add-missing-primary-keys" those missing primary keys could be added manually while the instance keeps running.') + '<ul>' + listOfMissingPrimaryKeys + '</ul>',
                                                        type: OC.SetupChecks.MESSAGE_TYPE_INFO
                                                })
                                        }
                                                        listOfMissingColumns += '</li>';
                                                });
                                                messages.push({
-                                                       msg: t('core', 'The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running \'occ db:add-missing-columns\' those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.') + '<ul>' + listOfMissingColumns + '</ul>',
+                                                       msg: t('core', 'The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running "occ db:add-missing-columns" those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.') + '<ul>' + listOfMissingColumns + '</ul>',
                                                        type: OC.SetupChecks.MESSAGE_TYPE_INFO
                                                })
                                        }
                                                        listOfPendingBigIntConversionColumns += '<li>' + element + '</li>';
                                                });
                                                messages.push({
-                                                       msg: t('core', 'Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running \'occ db:convert-filecache-bigint\' those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read {linkstart}the documentation page about this ↗{linkend}.')
+                                                       msg: t('core', 'Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running "occ db:convert-filecache-bigint" those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read {linkstart}the documentation page about this ↗{linkend}.')
                                                                .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-bigint-conversion') + '">')
                                                                .replace('{linkend}', '</a>') + '<ul>' + listOfPendingBigIntConversionColumns + '</ul>',
                                                        type: OC.SetupChecks.MESSAGE_TYPE_INFO
                                        if (data.isSqliteUsed) {
                                                messages.push({
                                                        msg: t('core', 'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.') + ' ' + t('core', 'This is particularly recommended when using the desktop client for file synchronisation.') + ' ' +
-                                                       t('core', 'To migrate to another database use the command line tool: \'occ db:convert-type\', or see the {linkstart}documentation ↗{linkend}.')
+                                                       t('core', 'To migrate to another database use the command line tool: "occ db:convert-type", or see the {linkstart}documentation ↗{linkend}.')
                                                                .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.databaseConversionDocumentation + '">')
                                                                .replace('{linkend}', '</a>'),
                                                        type: OC.SetupChecks.MESSAGE_TYPE_WARNING