mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Swedish for migration_lang.php
This commit is contained in:
parent
2b561122a7
commit
9996b38e1e
1 changed files with 19 additions and 0 deletions
19
application/language/swedish/migration_lang.php
Normal file
19
application/language/swedish/migration_lang.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = 'Hittade inga migrationer.';
|
||||
$lang['migration_not_found'] = 'Hittade inga migrationer med versionsnummer: %s.';
|
||||
$lang['migration_sequence_gap'] = 'Det är glapp i migrationssekvensen i version nummer: %s.';
|
||||
$lang['migration_multiple_version'] = 'Det finn flera migrationer med samma versionsnummer: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'Migrationsklassen "%s" hittades inte.';
|
||||
$lang['migration_missing_up_method'] = 'Migrationsklassen "%s" saknar "up"-metoden.';
|
||||
$lang['migration_missing_down_method'] = 'Migrationsklassen "%s" saknar "down"-metoden.';
|
||||
$lang['migration_invalid_filename'] = 'Migrationen "%s" har ogiltigt filnamn.';
|
Loading…
Reference in a new issue