mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 18:51:14 +02:00
allow translating the "General note" string
This commit is contained in:
parent
532013a1cf
commit
4e930335a6
@ -6,6 +6,7 @@ import android.database.Cursor
|
|||||||
import android.database.sqlite.SQLiteDatabase
|
import android.database.sqlite.SQLiteDatabase
|
||||||
import android.database.sqlite.SQLiteOpenHelper
|
import android.database.sqlite.SQLiteOpenHelper
|
||||||
import com.simplemobiletools.notes.PREFS_KEY
|
import com.simplemobiletools.notes.PREFS_KEY
|
||||||
|
import com.simplemobiletools.notes.R
|
||||||
import com.simplemobiletools.notes.TEXT
|
import com.simplemobiletools.notes.TEXT
|
||||||
import com.simplemobiletools.notes.TYPE_NOTE
|
import com.simplemobiletools.notes.TYPE_NOTE
|
||||||
import com.simplemobiletools.notes.models.Note
|
import com.simplemobiletools.notes.models.Note
|
||||||
@ -18,7 +19,6 @@ class DBHelper private constructor(private val mContext: Context) : SQLiteOpenHe
|
|||||||
private val DB_NAME = "notes.db"
|
private val DB_NAME = "notes.db"
|
||||||
private val DB_VERSION = 2
|
private val DB_VERSION = 2
|
||||||
private val TABLE_NAME = "notes"
|
private val TABLE_NAME = "notes"
|
||||||
private val NOTE = "General note"
|
|
||||||
|
|
||||||
private val COL_ID = "id"
|
private val COL_ID = "id"
|
||||||
private val COL_TITLE = "title"
|
private val COL_TITLE = "title"
|
||||||
@ -43,9 +43,10 @@ class DBHelper private constructor(private val mContext: Context) : SQLiteOpenHe
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun insertFirstNote(db: SQLiteDatabase) {
|
private fun insertFirstNote(db: SQLiteDatabase) {
|
||||||
|
val generalNote = mContext.resources.getString(R.string.general_note)
|
||||||
val prefs = mContext.getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE)
|
val prefs = mContext.getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE)
|
||||||
val text = prefs.getString(TEXT, "")
|
val text = prefs.getString(TEXT, "")
|
||||||
val note = Note(1, NOTE, text, TYPE_NOTE)
|
val note = Note(1, generalNote, text, TYPE_NOTE)
|
||||||
insertNote(note, db)
|
insertNote(note, db)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -68,12 +69,12 @@ class DBHelper private constructor(private val mContext: Context) : SQLiteOpenHe
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun deleteNote(id: Int) {
|
fun deleteNote(id: Int) {
|
||||||
mDb.delete(TABLE_NAME, COL_ID + " = " + id, null)
|
mDb.delete(TABLE_NAME, "$COL_ID = $id", null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun doesTitleExist(title: String): Boolean {
|
fun doesTitleExist(title: String): Boolean {
|
||||||
val cols = arrayOf(COL_ID)
|
val cols = arrayOf(COL_ID)
|
||||||
val selection = COL_TITLE + " = ?"
|
val selection = "$COL_TITLE = ?"
|
||||||
val selectionArgs = arrayOf(title)
|
val selectionArgs = arrayOf(title)
|
||||||
val cursor = mDb.query(TABLE_NAME, cols, selection, selectionArgs, null, null, null) ?: return false
|
val cursor = mDb.query(TABLE_NAME, cols, selection, selectionArgs, null, null, null) ?: return false
|
||||||
val cnt = cursor.count
|
val cnt = cursor.count
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Wähle Notiz für das Widget</string>
|
<string name="pick_a_note_for_widget">Wähle Notiz für das Widget</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Einstellungen</string>
|
<string name="settings">Einstellungen</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Seleccione una nota para el widget</string>
|
<string name="pick_a_note_for_widget">Seleccione una nota para el widget</string>
|
||||||
<string name="rename">Renombrar</string>
|
<string name="rename">Renombrar</string>
|
||||||
<string name="rename_note">Renombrar nota</string>
|
<string name="rename_note">Renombrar nota</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Opciones</string>
|
<string name="settings">Opciones</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Impostazioni</string>
|
<string name="settings">Impostazioni</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">ウィジェットのメモを選択</string>
|
<string name="pick_a_note_for_widget">ウィジェットのメモを選択</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">設定</string>
|
<string name="settings">設定</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Escolha uma nota para o widget</string>
|
<string name="pick_a_note_for_widget">Escolha uma nota para o widget</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Definições</string>
|
<string name="settings">Definições</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Inställningar</string>
|
<string name="settings">Inställningar</string>
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
<string name="pick_a_note_for_widget">Pick a note for the widget</string>
|
||||||
<string name="rename">Rename</string>
|
<string name="rename">Rename</string>
|
||||||
<string name="rename_note">Rename note</string>
|
<string name="rename_note">Rename note</string>
|
||||||
|
<string name="general_note">General note</string>
|
||||||
|
|
||||||
<!-- Settings -->
|
<!-- Settings -->
|
||||||
<string name="settings">Settings</string>
|
<string name="settings">Settings</string>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user