diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Db/AddMissingIndices.php | 14 | ||||
-rw-r--r-- | core/l10n/fi.js | 3 | ||||
-rw-r--r-- | core/l10n/fi.json | 3 |
3 files changed, 15 insertions, 5 deletions
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php index f1dba2f4c31..a4379ffacc3 100644 --- a/core/Command/Db/AddMissingIndices.php +++ b/core/Command/Db/AddMissingIndices.php @@ -258,11 +258,15 @@ class AddMissingIndices extends Command { $table = $schema->getTable('cards'); if ($table->hasIndex('addressbookid_uri_index')) { - $output->writeln('<info>Renaming addressbookid_uri_index index to to the cards table, this can take some time...</info>'); - - foreach ($table->getIndexes() as $index) { - if ($index->getColumns() === ['addressbookid', 'uri']) { - $table->renameIndex('addressbookid_uri_index', 'cards_abiduri'); + if ($table->hasIndex('cards_abiduri')) { + $table->dropIndex('addressbookid_uri_index'); + } else { + $output->writeln('<info>Renaming addressbookid_uri_index index to cards_abiduri in the cards table, this can take some time...</info>'); + + foreach ($table->getIndexes() as $index) { + if ($index->getColumns() === ['addressbookid', 'uri']) { + $table->renameIndex('addressbookid_uri_index', 'cards_abiduri'); + } } } diff --git a/core/l10n/fi.js b/core/l10n/fi.js index 84a06de64c5..ceeeaff66c7 100644 --- a/core/l10n/fi.js +++ b/core/l10n/fi.js @@ -147,6 +147,7 @@ OC.L10N.register( "Back" : "Takaisin", "Login form is disabled." : "Kirjautumislomake on poistettu käytöstä.", "Edit Profile" : "Muokkaa profiilia", + "You have not added any info yet" : "Et ole lisännyt tietoja vielä", "Reset search" : "Tyhjennä haku", "Search for {name} only" : "Etsi vain {name}", "No results for {query}" : "Ei tuloksia haulle {query}", @@ -281,6 +282,8 @@ OC.L10N.register( "You chose SQLite as database." : "Valitsit SQLiten tietokannaksi.", "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite tulisi ottaa käyttöön vain minimaalisissa kehitysympäristöissä. Tuotantokäyttöön suosittelemme toista tietokantaratkaisua.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Jos käytät asiakasohjelmia tiedostojen synkronointiin, SQLiten käyttöä ei suositella.", + "Install" : "Asenna", + "Installing …" : "Asennetaan …", "Need help?" : "Tarvitsetko apua?", "See the documentation" : "Tutustu ohjeisiin", "It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Vaikuttaa siltä, että yrität Nextcloudin uudelleenasennusta. Tiedosto CAN_INSTALL puuttuu asetuskansiosta. Ole hyvä ja luo tiedosto CAN_INSTALL asetuskansioon jatkaaksesi.", diff --git a/core/l10n/fi.json b/core/l10n/fi.json index 0c79e519c3e..6c932d8aebe 100644 --- a/core/l10n/fi.json +++ b/core/l10n/fi.json @@ -145,6 +145,7 @@ "Back" : "Takaisin", "Login form is disabled." : "Kirjautumislomake on poistettu käytöstä.", "Edit Profile" : "Muokkaa profiilia", + "You have not added any info yet" : "Et ole lisännyt tietoja vielä", "Reset search" : "Tyhjennä haku", "Search for {name} only" : "Etsi vain {name}", "No results for {query}" : "Ei tuloksia haulle {query}", @@ -279,6 +280,8 @@ "You chose SQLite as database." : "Valitsit SQLiten tietokannaksi.", "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite tulisi ottaa käyttöön vain minimaalisissa kehitysympäristöissä. Tuotantokäyttöön suosittelemme toista tietokantaratkaisua.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Jos käytät asiakasohjelmia tiedostojen synkronointiin, SQLiten käyttöä ei suositella.", + "Install" : "Asenna", + "Installing …" : "Asennetaan …", "Need help?" : "Tarvitsetko apua?", "See the documentation" : "Tutustu ohjeisiin", "It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Vaikuttaa siltä, että yrität Nextcloudin uudelleenasennusta. Tiedosto CAN_INSTALL puuttuu asetuskansiosta. Ole hyvä ja luo tiedosto CAN_INSTALL asetuskansioon jatkaaksesi.", |