Skip to content

Commit f14bc3d

Browse files
committed
updating some lithuanian strings
1 parent 51546e4 commit f14bc3d

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

app/src/main/kotlin/com/simplemobiletools/notes/helpers/DBHelper.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ class DBHelper private constructor(private val mContext: Context) : SQLiteOpenHe
3535
}
3636

3737
override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
38-
if (oldVersion < 2)
38+
if (oldVersion < 2) {
3939
db.execSQL("ALTER TABLE $TABLE_NAME ADD COLUMN $COL_TYPE INTEGER DEFAULT 0")
40+
}
4041

41-
if (oldVersion < 3)
42+
if (oldVersion < 3) {
4243
db.execSQL("ALTER TABLE $TABLE_NAME ADD COLUMN $COL_PATH TEXT DEFAULT ''")
44+
}
4345
}
4446

4547
private fun insertFirstNote(db: SQLiteDatabase) {

app/src/main/res/values-lt/strings.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<resources>
2-
<string name="app_name">Simple Notes</string>
3-
<string name="app_launcher_name">Notes</string>
2+
<string name="app_name">Paprasti užrašai</string>
3+
<string name="app_launcher_name">Užrašai</string>
44
<string name="widget_config">Ačiū, jog naudojate Simple Notes.\nDaugiau paprastų programų rasite SimpleMobileTools.com.</string>
55
<string name="cannot_share_empty_text">Negalima dalintis tuščiu įrašu</string>
6-
<string name="simple_note">Simple Note</string>
6+
<string name="simple_note">Paprastas užrašas</string>
77
<string name="new_note">Pridėti naujà įrašą</string>
88
<string name="no_title">Įrašo pavadinimas</string>
99
<string name="title_taken">Įrašas tokiu pavadinimu jau egzistuoja</string>
@@ -38,13 +38,13 @@
3838
<string name="center">Centre</string>
3939
<string name="right">Dešinėje</string>
4040
<string name="widget_note">Įraðas panaudotas šaukinyje</string>
41-
<string name="show_note_picker">Show a note picker on startup</string>
42-
<string name="autosave_notes">Autosave notes</string>
43-
<string name="enable_line_wrap">Enable line wrap</string>
41+
<string name="show_note_picker">Rodyti užrašų parinkiklį pajungus programėlę</string>
42+
<string name="autosave_notes">Automatiškai išsaugoti užrašus</string>
43+
<string name="enable_line_wrap">naudoti eilutės perkėlimą</string>
4444

4545
<!-- Import / Export -->
46-
<string name="export_all_notes">Export all notes as files</string>
47-
<string name="import_notes">Import multiple files as notes</string>
46+
<string name="export_all_notes">Eksportuoti visus užrašus kaip bylas</string>
47+
<string name="import_notes">Importuoti keletą bylų, kaip užrašus</string>
4848

4949
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
5050
<!-- Short description has to have less than 80 chars -->

0 commit comments

Comments
 (0)