mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-02-05 16:47:51 +01:00
reuse some resources from the Commons lib
This commit is contained in:
parent
9585c3912d
commit
c6b81f45f2
@ -32,7 +32,7 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.simplemobiletools:commons:2.1.6'
|
||||
compile 'com.simplemobiletools:commons:2.1.7'
|
||||
compile 'com.facebook.stetho:stetho:1.4.1'
|
||||
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ class MyWidgetProvider : AppWidgetProvider() {
|
||||
|
||||
override fun onUpdate(context: Context, appWidgetManager: AppWidgetManager, appWidgetIds: IntArray) {
|
||||
initVariables(context)
|
||||
val defaultColor = context.resources.getColor(R.color.dark_grey)
|
||||
val defaultColor = Color.BLACK
|
||||
val newBgColor = mPrefs.getInt(WIDGET_BG_COLOR, defaultColor)
|
||||
val newTextColor = mPrefs.getInt(WIDGET_TEXT_COLOR, Color.WHITE)
|
||||
|
||||
|
@ -1,114 +1,9 @@
|
||||
package com.simplemobiletools.notes.activities
|
||||
|
||||
import android.content.ActivityNotFoundException
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import android.text.Html
|
||||
import android.text.method.LinkMovementMethod
|
||||
import android.view.View
|
||||
import com.simplemobiletools.notes.BuildConfig
|
||||
import com.simplemobiletools.notes.R
|
||||
import kotlinx.android.synthetic.main.activity_about.*
|
||||
import java.util.*
|
||||
|
||||
class AboutActivity : SimpleActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
setContentView(R.layout.activity_about)
|
||||
|
||||
setupEmail()
|
||||
setupMoreApps()
|
||||
setupCopyright()
|
||||
setupRateUs()
|
||||
setupInvite()
|
||||
setupLicense()
|
||||
setupDonate()
|
||||
setupFacebook()
|
||||
setupGPlus()
|
||||
}
|
||||
|
||||
private fun setupEmail() {
|
||||
val email = getString(R.string.email)
|
||||
val appName = getString(R.string.app_name)
|
||||
val href = "<a href=\"mailto:$email?subject=$appName\">$email</a>"
|
||||
about_email.text = Html.fromHtml(href)
|
||||
about_email.movementMethod = LinkMovementMethod.getInstance()
|
||||
}
|
||||
|
||||
private fun setupMoreApps() {
|
||||
about_more_apps.setOnClickListener {
|
||||
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/dev?id=9070296388022589266")))
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupCopyright() {
|
||||
val versionName = BuildConfig.VERSION_NAME
|
||||
val year = Calendar.getInstance().get(Calendar.YEAR)
|
||||
val copyrightText = String.format(getString(R.string.copyright), versionName, year)
|
||||
about_copyright.text = copyrightText
|
||||
}
|
||||
|
||||
private fun setupRateUs() {
|
||||
if (config.isFirstRun) {
|
||||
about_rate_us.visibility = View.GONE
|
||||
} else {
|
||||
about_rate_us.setOnClickListener {
|
||||
val uri = Uri.parse("market://details?id=$packageName")
|
||||
try {
|
||||
startActivity(Intent(Intent.ACTION_VIEW, uri))
|
||||
} catch (ignored: ActivityNotFoundException) {
|
||||
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(getStoreUrl())))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun setupInvite() {
|
||||
about_invite.setOnClickListener {
|
||||
val text = String.format(getString(R.string.share_text), getString(R.string.app_name), getStoreUrl())
|
||||
Intent().apply {
|
||||
action = Intent.ACTION_SEND
|
||||
putExtra(Intent.EXTRA_SUBJECT, getString(R.string.app_name))
|
||||
putExtra(Intent.EXTRA_TEXT, text)
|
||||
type = "text/plain"
|
||||
startActivity(Intent.createChooser(this, getString(R.string.invite_via)))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun setupLicense() {
|
||||
about_license.setOnClickListener {
|
||||
val intent = Intent(applicationContext, LicenseActivity::class.java)
|
||||
startActivity(intent)
|
||||
}
|
||||
}
|
||||
|
||||
fun setupDonate() {
|
||||
about_donate.setOnClickListener {
|
||||
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("http://simplemobiletools.github.io/donate")))
|
||||
}
|
||||
}
|
||||
|
||||
fun setupFacebook() {
|
||||
about_facebook.setOnClickListener {
|
||||
var link = "https://www.facebook.com/simplemobiletools"
|
||||
try {
|
||||
packageManager.getPackageInfo("com.facebook.katana", 0)
|
||||
link = "fb://page/150270895341774"
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
|
||||
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(link)))
|
||||
}
|
||||
}
|
||||
|
||||
fun setupGPlus() {
|
||||
about_gplus.setOnClickListener {
|
||||
val link = "https://plus.google.com/communities/104880861558693868382"
|
||||
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(link)))
|
||||
}
|
||||
}
|
||||
|
||||
private fun getStoreUrl() = "https://play.google.com/store/apps/details?id=$packageName"
|
||||
}
|
||||
|
@ -3,19 +3,11 @@ package com.simplemobiletools.notes.activities
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import com.simplemobiletools.notes.R
|
||||
import kotlinx.android.synthetic.main.activity_license.*
|
||||
|
||||
class LicenseActivity : SimpleActivity() {
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
setContentView(R.layout.activity_license)
|
||||
|
||||
license_kotlin_title.setOnClickListener { openUrl(R.string.kotlin_url) }
|
||||
license_ambilwarna_title.setOnClickListener { openUrl(R.string.ambilwarna_url) }
|
||||
license_filepicker_title.setOnClickListener { openUrl(R.string.filepicker_url) }
|
||||
license_stetho_title.setOnClickListener { openUrl(R.string.stetho_url) }
|
||||
}
|
||||
|
||||
private fun openUrl(id: Int) {
|
||||
|
@ -12,7 +12,6 @@ open class SimpleActivity : AppCompatActivity() {
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
config = Config.newInstance(applicationContext)
|
||||
setTheme(if (config.isDarkTheme) R.style.AppTheme_Dark else R.style.AppTheme)
|
||||
super.onCreate(savedInstanceState)
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ class WidgetConfigureActivity : AppCompatActivity() {
|
||||
}
|
||||
updateBackgroundColor()
|
||||
|
||||
mTextColor = prefs.getInt(WIDGET_TEXT_COLOR, resources.getColor(R.color.colorPrimary))
|
||||
mTextColor = prefs.getInt(WIDGET_TEXT_COLOR, resources.getColor(R.color.color_primary))
|
||||
updateTextColor()
|
||||
}
|
||||
|
||||
|
@ -10,11 +10,7 @@ import com.simplemobiletools.notes.fragments.NoteFragment
|
||||
import com.simplemobiletools.notes.models.Note
|
||||
|
||||
class NotesPagerAdapter(fm: FragmentManager, private val notes: List<Note>) : FragmentStatePagerAdapter(fm) {
|
||||
var fragments: SparseArray<NoteFragment>
|
||||
|
||||
init {
|
||||
fragments = SparseArray(5)
|
||||
}
|
||||
var fragments: SparseArray<NoteFragment> = SparseArray(5)
|
||||
|
||||
override fun getCount() = notes.size
|
||||
|
||||
|
@ -9,10 +9,10 @@ import com.simplemobiletools.notes.*
|
||||
|
||||
fun Context.getTextSize() =
|
||||
when (Config.newInstance(this).fontSize) {
|
||||
FONT_SIZE_SMALL -> resources.getDimension(R.dimen.small_text_size)
|
||||
FONT_SIZE_LARGE -> resources.getDimension(R.dimen.large_text_size)
|
||||
FONT_SIZE_EXTRA_LARGE -> resources.getDimension(R.dimen.extra_large_text_size)
|
||||
else -> resources.getDimension(R.dimen.medium_text_size)
|
||||
FONT_SIZE_SMALL -> resources.getDimension(R.dimen.smaller_text_size)
|
||||
FONT_SIZE_LARGE -> resources.getDimension(R.dimen.big_text_size)
|
||||
FONT_SIZE_EXTRA_LARGE -> resources.getDimension(R.dimen.extra_big_text_size)
|
||||
else -> resources.getDimension(R.dimen.bigger_text_size)
|
||||
}
|
||||
|
||||
fun Context.getTextGravity() =
|
||||
|
@ -1,125 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/about_scrollview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/about_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/activity_margin">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_website"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web"
|
||||
android:text="@string/website"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_email_label"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_website"
|
||||
android:layout_marginTop="@dimen/activity_margin"
|
||||
android:text="@string/email_label"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_email"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_email_label"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:text="@string/email"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_more_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_email"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/more_apps_underlined"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_invite"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_more_apps"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/invite_friends_underlined"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_rate_us"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_invite"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/rate_us_underlined"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_license"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_rate_us"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/third_party_licences_underlined"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_donate"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_license"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/donate_underlined"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_follow_us"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/about_donate"
|
||||
android:paddingBottom="@dimen/social_padding"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/follow_us"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/about_facebook"
|
||||
android:layout_width="@dimen/social_logo"
|
||||
android:layout_height="@dimen/social_logo"
|
||||
android:layout_below="@+id/about_follow_us"
|
||||
android:src="@drawable/ic_facebook"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/about_gplus"
|
||||
android:layout_width="@dimen/social_logo"
|
||||
android:layout_height="@dimen/social_logo"
|
||||
android:layout_below="@+id/about_follow_us"
|
||||
android:layout_marginLeft="@dimen/social_padding"
|
||||
android:layout_marginRight="@dimen/social_padding"
|
||||
android:layout_toEndOf="@+id/about_facebook"
|
||||
android:layout_toRightOf="@+id/about_facebook"
|
||||
android:src="@drawable/ic_gplus"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_copyright"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_below="@+id/about_gplus"
|
||||
android:gravity="center_horizontal|bottom"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="v1.0\nCopyright © Simple Mobile Tools 2016"/>
|
||||
</RelativeLayout>
|
||||
</ScrollView>
|
@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/license_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/license"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/activity_margin">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_notice"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/notice"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_kotlin_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/kotlin_title"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_kotlin_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/kotlin_text"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_ambilwarna_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/ambilwarna_title"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_ambilwarna_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/ambilwarna_text"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_stetho_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/stetho_title"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_stetho_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/stetho_text"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_filepicker_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:text="@string/filepicker_title"
|
||||
android:textColor="@color/colorPrimary"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/license_filepicker_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/filepicker_text"/>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
@ -15,7 +15,7 @@
|
||||
android:id="@+id/settings_dark_theme_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/normal_padding"
|
||||
android:layout_marginTop="@dimen/medium_margin"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:padding="@dimen/activity_margin">
|
||||
|
||||
@ -24,8 +24,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:paddingLeft="@dimen/normal_padding"
|
||||
android:paddingStart="@dimen/normal_padding"
|
||||
android:paddingLeft="@dimen/medium_margin"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:text="@string/dark_theme"/>
|
||||
|
||||
<android.support.v7.widget.SwitchCompat
|
||||
@ -43,10 +43,10 @@
|
||||
android:id="@+id/settings_font_size_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/normal_padding"
|
||||
android:layout_marginTop="@dimen/medium_margin"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingLeft="@dimen/activity_margin"
|
||||
android:paddingRight="@dimen/normal_padding"
|
||||
android:paddingRight="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/activity_margin">
|
||||
|
||||
<TextView
|
||||
@ -54,8 +54,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:paddingLeft="@dimen/normal_padding"
|
||||
android:paddingStart="@dimen/normal_padding"
|
||||
android:paddingLeft="@dimen/medium_margin"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:text="@string/note_font_size"/>
|
||||
|
||||
<android.support.v7.widget.AppCompatSpinner
|
||||
@ -72,10 +72,10 @@
|
||||
android:id="@+id/settings_gravity_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/normal_padding"
|
||||
android:layout_marginTop="@dimen/medium_margin"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingLeft="@dimen/activity_margin"
|
||||
android:paddingRight="@dimen/normal_padding"
|
||||
android:paddingRight="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/activity_margin">
|
||||
|
||||
<TextView
|
||||
@ -83,8 +83,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:paddingLeft="@dimen/normal_padding"
|
||||
android:paddingStart="@dimen/normal_padding"
|
||||
android:paddingLeft="@dimen/medium_margin"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:text="@string/gravity"/>
|
||||
|
||||
<android.support.v7.widget.AppCompatSpinner
|
||||
@ -101,10 +101,10 @@
|
||||
android:id="@+id/settings_widget_note_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/normal_padding"
|
||||
android:layout_marginTop="@dimen/medium_margin"
|
||||
android:paddingBottom="@dimen/activity_margin"
|
||||
android:paddingLeft="@dimen/activity_margin"
|
||||
android:paddingRight="@dimen/normal_padding"
|
||||
android:paddingRight="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/activity_margin">
|
||||
|
||||
<TextView
|
||||
@ -112,8 +112,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:paddingLeft="@dimen/normal_padding"
|
||||
android:paddingStart="@dimen/normal_padding"
|
||||
android:paddingLeft="@dimen/medium_margin"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:text="@string/widget_note"/>
|
||||
|
||||
<android.support.v7.widget.AppCompatSpinner
|
||||
|
@ -61,6 +61,6 @@
|
||||
android:paddingRight="@dimen/activity_margin"
|
||||
android:text="@android:string/ok"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="@dimen/config_text_size"/>
|
||||
android:textSize="@dimen/big_text_size"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notizen</string>
|
||||
<string name="widget_config">Vielen dank, dass du Simple Notes benutzt.\nWeitere einfache Apps findest du auf SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Speichern</string>
|
||||
<string name="share">Teilen</string>
|
||||
<string name="share_via">Teilen via</string>
|
||||
<string name="cannot_share_empty_text">Leerer Text kann nicht geteilt werden</string>
|
||||
<string name="simple_note">Einfache Notiz</string>
|
||||
<string name="new_note">Neue Notiz hinzufügen</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Abbrechen</string>
|
||||
<string name="no_title">Bitte benenne deine Notiz</string>
|
||||
<string name="title_taken">Es existiert bereits eine Notiz mit diesem Namen</string>
|
||||
<string name="open_note">Notiz öffnen</string>
|
||||
@ -17,15 +11,12 @@
|
||||
<string name="delete_note_prompt_title">Notiz löschen</string>
|
||||
<string name="delete_note_prompt_message">Bist du sicher, dass du Notiz \"%1$s\" löschen willst?</string>
|
||||
<string name="pick_a_note">Notiz auswählen</string>
|
||||
<string name="rename">Umbennen</string>
|
||||
<string name="rename_note">Notiz umbenennen</string>
|
||||
<string name="general_note">Hauptnotiz</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Einstellungen</string>
|
||||
<string name="dark_theme">Dunkles Thema</string>
|
||||
<string name="note_font_size">Schriftgröße</string>
|
||||
<string name="widget_note">Widget Notiz</string>
|
||||
<string name="note_font_size">Schriftgröße</string>
|
||||
<string name="small">Klein</string>
|
||||
<string name="normal">Normal</string>
|
||||
<string name="large">Groß</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Zentriert</string>
|
||||
<string name="right">Rechtsbündig</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Über</string>
|
||||
<string name="website">Weitere einfache Apps und Quellcode findest du auf:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Bitte sende Vorschläge und Feedback an:</string>
|
||||
<string name="more_apps_underlined"><u>Weitere Apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Drittanbieterlizenzen</u></string>
|
||||
<string name="invite_friends_underlined"><u>Freunde einladen</u></string>
|
||||
<string name="share_text">Hey, wirf doch mal einen Blick auf %1$s: %2$s</string>
|
||||
<string name="invite_via">Einladen via</string>
|
||||
<string name="rate_us_underlined"><u>Bewerte uns im Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Spenden</u></string>
|
||||
<string name="follow_us">Folge uns:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Diese App nutzt die folgenden Drittanbieterbibliotheken, die mein Leben einfacher machen. Danke.</string>
|
||||
<string name="third_party_licences">Drittanbieterlizenzen</string>
|
||||
<string name="kotlin_title"><u>Kotlin (Programmiersprache)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (Farbauswahltool)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (Debugging für Datenbanken)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (Dateiauswahldialog)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">Ein einfaches Textfeld für Notizen. Komplett ohne Werbung</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Gracias por usar Simple Notes.\nPara más aplicaciones simples, por favor visite SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Guardar</string>
|
||||
<string name="share">Compartir</string>
|
||||
<string name="share_via">Compartir vía</string>
|
||||
<string name="cannot_share_empty_text">No se puede compartir una nota vacía</string>
|
||||
<string name="simple_note">Nota simple</string>
|
||||
<string name="new_note">Añadir una nueva nota</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancelar</string>
|
||||
<string name="no_title">Por favor, asigne un nombre a la nota</string>
|
||||
<string name="title_taken">Ya existe una nota con ese nombre</string>
|
||||
<string name="open_note">Abrir nota</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Eliminar nota</string>
|
||||
<string name="delete_note_prompt_message">¿Está seguro de querer eliminar la nota \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Seleccione una nota</string>
|
||||
<string name="rename">Renombrar</string>
|
||||
<string name="rename_note">Renombrar nota</string>
|
||||
<string name="general_note">Nota principal</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Opciones</string>
|
||||
<string name="dark_theme">Tema oscuro</string>
|
||||
<string name="note_font_size">Tamaño de fuente</string>
|
||||
<string name="widget_note">Nota del widget</string>
|
||||
<string name="small">Pequeña</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Centrado</string>
|
||||
<string name="right">Derecha</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Acerca de Simple Notes</string>
|
||||
<string name="website">Más aplicaciones simples y su código fuente en:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Envíe sus comentarios y sugerencias a:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Licencias de terceros</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invitar a amigos</u></string>
|
||||
<string name="share_text">Hola, venga y échele un vistazo a %1$s en %2$s</string>
|
||||
<string name="invite_via">Invitar vía</string>
|
||||
<string name="rate_us_underlined"><u>Evalúenos en Google Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Síganos:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicación usa las siguientes librerías de terceros para hacerme la vida más fácil. Gracias.</string>
|
||||
<string name="third_party_licences">Licencias de terceros</string>
|
||||
<string name="kotlin_title"><u>Kotlin (Lenguaje de programación)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (Selector de colores)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (debugging databases)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (filepicker dialog)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">Un simple campo de texto para añadir breves y rápidas notas, sin anuncios.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Merci d\'utiliser Simple Notes.\nPour plus d\'applications simples merci de visiter SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Sauvegarder</string>
|
||||
<string name="share">Partager</string>
|
||||
<string name="share_via">Partager via</string>
|
||||
<string name="cannot_share_empty_text">Impossible de partager un texte vide</string>
|
||||
<string name="simple_note">Simple Note</string>
|
||||
<string name="new_note">Ajouter une nouvelle note</string>
|
||||
<string name="ok">Ok</string>
|
||||
<string name="cancel">Annuler</string>
|
||||
<string name="no_title">Veuillez nommer votre note</string>
|
||||
<string name="title_taken">Une note avec le même titre existe déjà</string>
|
||||
<string name="open_note">Ouvrir la note</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Supprimer la note</string>
|
||||
<string name="delete_note_prompt_message">Etes-vous sûr de vouloir supprimer la note \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Choisir une note</string>
|
||||
<string name="rename">Renommer</string>
|
||||
<string name="rename_note">Renomme la note</string>
|
||||
<string name="general_note">Note générale</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Paramètres</string>
|
||||
<string name="dark_theme">Thème sombre</string>
|
||||
<string name="widget_note">Note utilisée dans le widget</string>
|
||||
<string name="note_font_size">Taille de la police de la note</string>
|
||||
<string name="small">Petite</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Centre</string>
|
||||
<string name="right">Droite</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">A propos</string>
|
||||
<string name="website">Plus d\'applications simples et code source à :\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Envoyez vos impresions ou suggestions à :</string>
|
||||
<string name="more_apps_underlined"><u>Plus d\'applications</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Licences tierces</u></string>
|
||||
<string name="invite_friends_underlined"><u>Inviter des amis</u></string>
|
||||
<string name="share_text">Hey, viens voir %1$s à %2$s</string>
|
||||
<string name="invite_via">Inviter via</string>
|
||||
<string name="rate_us_underlined"><u>Notez nous dans le Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Faire un don</u></string>
|
||||
<string name="follow_us">Nous suivre:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Cette application utilise les librairies tierces suivants pour me faciliter la vie. Merci.</string>
|
||||
<string name="third_party_licences">Licence tierces</string>
|
||||
<string name="kotlin_title"><u>Kotlin (langage de programmation)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (sélecteur de couleur)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (débogage de base de données)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (dialogue de sélecteur de fichier)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">Un champ texte simple pour ajouter des notes rapides, sans publicités.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Egyszerű Jegyzetfüzet</string>
|
||||
<string name="app_launcher_name">Jegyzetek</string>
|
||||
<string name="widget_config">Köszönjük, hogy az Egyszerű Jegyzetfüzetet használod.\nTovábbi egyszerű alkalmazásokért látogass a SimpleMobileTools.com-ra.\n</string>
|
||||
<string name="save">Mentés</string>
|
||||
<string name="share">Megosztás</string>
|
||||
<string name="share_via">Megosztás itt:</string>
|
||||
<string name="cannot_share_empty_text">Nem létező szöveget nem lehet megosztani</string>
|
||||
<string name="simple_note">Egyszerű Jegyzet</string>
|
||||
<string name="new_note">Új jegyzet hozzáadása</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Mégsem</string>
|
||||
<string name="no_title">Adj címet a jegyzetednek</string>
|
||||
<string name="title_taken">Egy jegyzet ugyanilyen címmel már létezik</string>
|
||||
<string name="open_note">Jegyzet megnyitása</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Jegyzet törlése</string>
|
||||
<string name="delete_note_prompt_message">Biztos, hogy törlöd a(z) \"%1$s\" című jegyzetet?</string>
|
||||
<string name="pick_a_note">Válassz egy jegyzetet</string>
|
||||
<string name="rename">Átnevezés</string>
|
||||
<string name="rename_note">Jegyzet átnevezése</string>
|
||||
<string name="general_note">Alapértelmezett jegyzet</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Beállítások</string>
|
||||
<string name="dark_theme">Sötét téma</string>
|
||||
<string name="widget_note">A widget-ben használt jegyzet</string>
|
||||
<string name="note_font_size">Betűméret</string>
|
||||
<string name="small">Kis</string>
|
||||
@ -35,32 +26,6 @@
|
||||
<string name="center">Középre</string>
|
||||
<string name="right">Jobbra</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Információ</string>
|
||||
<string name="website">További egyszerű alkalmazások és a forráskód itt:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Visszajelzés és javaslatok:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Harmadik fél licenszek</u></string>
|
||||
<string name="invite_friends_underlined"><u>Barátok meghívása</u></string>
|
||||
<string name="share_text">Szia, ezt nézd meg! %1$s itt: %2$s</string>
|
||||
<string name="invite_via">Meghívó küldése itt</string>
|
||||
<string name="rate_us_underlined"><u>Értékelés a Play Store-ban</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Követés:</string>
|
||||
<string name="copyright">%1$s verzió\nSzerzői jogok: © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Ez az alkalmazás az alábbi könyvtárakat használja, hogy a munkám egyszerűbb legyen. Köszönöm szépen.</string>
|
||||
<string name="third_party_licences">Harmadik fél licenszek</string>
|
||||
<string name="kotlin_title"><u>Kotlin (programozási nyelv)</u></string>
|
||||
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (színválasztó)</u></string>
|
||||
|
||||
<string name="stetho_title"><u>Stetho (adatbázisok hibakeresésére)</u></string>
|
||||
|
||||
<string name="filepicker_title"><u>Simple File Picker (fájlválasztó párbeszédablak)</u></string>
|
||||
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">Egyszerű szövegmező gyors jegyzetírásra, reklámok nélkül.</string>
|
||||
@ -78,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Grazie per avere scelto Simple Notes.\nPer altre semplici app visita SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Salva</string>
|
||||
<string name="share">Condividi</string>
|
||||
<string name="share_via">Condividi via</string>
|
||||
<string name="cannot_share_empty_text">Impossibile condividere un testo vuoto</string>
|
||||
<string name="simple_note">Simple Note</string>
|
||||
<string name="new_note">Add a new note</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Open note</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Delete note</string>
|
||||
<string name="delete_note_prompt_message">Are you sure you want to delete note \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Pick a note</string>
|
||||
<string name="rename">Rename</string>
|
||||
<string name="rename_note">Rename note</string>
|
||||
<string name="general_note">General note</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Impostazioni</string>
|
||||
<string name="dark_theme">Tema scuro</string>
|
||||
<string name="note_font_size">Note font size</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="small">Small</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Center</string>
|
||||
<string name="right">Right</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Informazioni</string>
|
||||
<string name="website">Altre semplici app e codici sorgenti in:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Invia la tua opinione o i tuoi suggerimenti a:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Licenze di terze parti</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invite friends</u></string>
|
||||
<string name="share_text">Hey, come check out %1$s at %2$s</string>
|
||||
<string name="invite_via">Invite via</string>
|
||||
<string name="rate_us_underlined"><u>Dacci un voto sul Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Seguici:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Questa app usa le seguenti librerie di terze parti per semplificarmi la vita. Grazie.</string>
|
||||
<string name="third_party_licences">Licenze di terze parti</string>
|
||||
<string name="kotlin_title"><u>Kotlin (programming language)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (color picker)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (debugging databases)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (filepicker dialog)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">A simple textfield for adding quick notes, without ads.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">シンプル メモ</string>
|
||||
<string name="app_launcher_name">メモ</string>
|
||||
<string name="widget_config">シンプルメモのご利用ありがとうございます。\n他のシンプルアプリは SimpleMobileTools.com をご覧ください。\n</string>
|
||||
<string name="save">保存</string>
|
||||
<string name="share">共有</string>
|
||||
<string name="share_via">共有…</string>
|
||||
<string name="cannot_share_empty_text">空のテキストは共有できません</string>
|
||||
<string name="simple_note">シンプル メモ</string>
|
||||
<string name="new_note">新しいメモを追加</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">キャンセル</string>
|
||||
<string name="no_title">メモに名前をつけてください</string>
|
||||
<string name="title_taken">そのタイトルのメモはすでに存在します</string>
|
||||
<string name="open_note">メモを開く</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">メモを削除</string>
|
||||
<string name="delete_note_prompt_message">メモ \"%1$s\" を削除してもよろしいですか?</string>
|
||||
<string name="pick_a_note">メモを選択</string>
|
||||
<string name="rename">名前を変更</string>
|
||||
<string name="rename_note">メモの名前を変更</string>
|
||||
<string name="general_note">全般メモ</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">設定</string>
|
||||
<string name="dark_theme">ダークテーマ</string>
|
||||
<string name="note_font_size">メモのフォントサイズ</string>
|
||||
<string name="widget_note">ウィジェットで使用するメモ</string>
|
||||
<string name="small">小</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">中央</string>
|
||||
<string name="right">右</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">アプリについて</string>
|
||||
<string name="website">もっとシンプルなアプリとソースコードは:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">ご意見やご提案をお送りください:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>サードパーティー ライセンス</u></string>
|
||||
<string name="invite_friends_underlined"><u>友達を招待</u></string>
|
||||
<string name="share_text">%2$s で %1$s をチェックしてみてください</string>
|
||||
<string name="invite_via">招待...</string>
|
||||
<string name="rate_us_underlined"><u>Play ストアで評価してください</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">フォローしてください:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">このアプリは、私の暮らしにゆとりを持たせるために、次のサードパーティのライブラリーを使用しています。 ありがとうございます。</string>
|
||||
<string name="third_party_licences">サードパーティー ライセンス</string>
|
||||
<string name="kotlin_title"><u>Kotlin (プログラミング言語)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (カラー ピッカー)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (デバッグ データベース)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (ファイルピッカー ダイアログ)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">簡単なメモを追加するためのシンプルなテキストフィールド。広告はありません。</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notas</string>
|
||||
<string name="widget_config">Obrigado por usar o Simple Notes.\nPara mais aplicações Simple, aceda a SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Guardar</string>
|
||||
<string name="share">Partilhar</string>
|
||||
<string name="share_via">Partilhar via</string>
|
||||
<string name="cannot_share_empty_text">Não pode partilhar texto em branco</string>
|
||||
<string name="simple_note">Nota simples</string>
|
||||
<string name="new_note">Adicionar uma nota</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancelar</string>
|
||||
<string name="no_title">Por favor dê um nome à sua nota</string>
|
||||
<string name="title_taken">Já existe uma nota com este título</string>
|
||||
<string name="open_note">Abrir nota</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Apagar nota</string>
|
||||
<string name="delete_note_prompt_message">Deseja mesmo apagar a nota \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Selecione uma nota</string>
|
||||
<string name="rename">Renomear</string>
|
||||
<string name="rename_note">Renomear nota</string>
|
||||
<string name="general_note">Nota genérica</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Definições</string>
|
||||
<string name="dark_theme">Tema escuro</string>
|
||||
<string name="note_font_size">Tamanho do texto da nota</string>
|
||||
<string name="widget_note">Nota utilizada no widget</string>
|
||||
<string name="small">Pequeno</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Centro</string>
|
||||
<string name="right">Direita</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Acerca</string>
|
||||
<string name="website">Mais aplicações Simple e código fonte em:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Envie os seus comentários ou sugestões para:</string>
|
||||
<string name="more_apps_underlined"><u>Mais aplicações</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Licenças de terceiros</u></string>
|
||||
<string name="invite_friends_underlined"><u>Convidar amigos</u></string>
|
||||
<string name="share_text">Olá, experimenta %1$s em %2$s</string>
|
||||
<string name="invite_via">Convidar via</string>
|
||||
<string name="rate_us_underlined"><u>Avalie-nos na Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Donativos</u></string>
|
||||
<string name="follow_us">Siga-nos:</string>
|
||||
<string name="copyright">V %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicação usa as seguintes bibliotecas de terceiros para facilitar a minha vida. Obrigado.</string>
|
||||
<string name="third_party_licences">Licenças de terceiros</string>
|
||||
<string name="kotlin_title"><u>Kotlin (linguagem de programação)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (seletor de cores)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (depuração a bases de dados)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (diálogo de seleção de ficheiros)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">Um campo de texto para adicionar as suas notas.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Não encontrou todas as cadeias a traduzir? Existem mais algumas em:
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Tack för att du använder Simple Notes.\nFör fler enkla appar, gå till simplemobiletools.com.\n</string>
|
||||
<string name="save">Spara</string>
|
||||
<string name="share">Dela</string>
|
||||
<string name="share_via">Dela via</string>
|
||||
<string name="cannot_share_empty_text">Det går inte att dela utan text</string>
|
||||
<string name="simple_note">Simple Note</string>
|
||||
<string name="new_note">Add a new note</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Open note</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Delete note</string>
|
||||
<string name="delete_note_prompt_message">Are you sure you want to delete note \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Pick a note</string>
|
||||
<string name="rename">Rename</string>
|
||||
<string name="rename_note">Rename note</string>
|
||||
<string name="general_note">General note</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Inställningar</string>
|
||||
<string name="dark_theme">Mörkt tema</string>
|
||||
<string name="note_font_size">Note font size</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="small">Small</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Center</string>
|
||||
<string name="right">Right</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Om</string>
|
||||
<string name="website">Fler enkla appar och källkod här:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Skicka feedback och förslag till:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Tredjepartslicenser</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invite friends</u></string>
|
||||
<string name="share_text">Hey, come check out %1$s at %2$s</string>
|
||||
<string name="invite_via">Invite via</string>
|
||||
<string name="rate_us_underlined"><u>Betygsätt oss i Play Butiken</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Följ oss:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Denna app använder följande tredjepartsbibliotek för att göra mitt liv enklare. Tack.</string>
|
||||
<string name="third_party_licences">Tredjepartslicenser</string>
|
||||
<string name="kotlin_title"><u>Kotlin (programming language)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (color picker)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (debugging databases)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (filepicker dialog)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">A simple textfield for adding quick notes, without ads.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,8 +0,0 @@
|
||||
<resources>
|
||||
<dimen name="social_padding">12dp</dimen>
|
||||
<dimen name="social_logo">50dp</dimen>
|
||||
<dimen name="normal_padding">12dp</dimen>
|
||||
|
||||
<dimen name="normal_text_size">18sp</dimen>
|
||||
<dimen name="config_text_size">22sp</dimen>
|
||||
</resources>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#fff68630</color>
|
||||
<color name="colorPrimaryDark">#ffe27725</color>
|
||||
<color name="colorAccent">@color/colorPrimary</color>
|
||||
<color name="dark_grey">#88000000</color>
|
||||
</resources>
|
@ -1,13 +0,0 @@
|
||||
<resources>
|
||||
<dimen name="activity_margin">16dp</dimen>
|
||||
<dimen name="social_padding">8dp</dimen>
|
||||
<dimen name="social_logo">40dp</dimen>
|
||||
<dimen name="normal_padding">8dp</dimen>
|
||||
|
||||
<dimen name="small_text_size">12sp</dimen>
|
||||
<dimen name="normal_text_size">14sp</dimen>
|
||||
<dimen name="medium_text_size">16sp</dimen>
|
||||
<dimen name="large_text_size">18sp</dimen>
|
||||
<dimen name="extra_large_text_size">22sp</dimen>
|
||||
<dimen name="config_text_size">18sp</dimen>
|
||||
</resources>
|
@ -1,14 +1,3 @@
|
||||
<resources>
|
||||
<!-- About -->
|
||||
<string name="email" translatable="false">hello@simplemobiletools.com</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="kotlin_text" translatable="false">Copyright 2010 - 2016 JetBrains s.r.o.\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
|
||||
<string name="kotlin_url" translatable="false">https://github.com/JetBrains/kotlin</string>
|
||||
<string name="ambilwarna_text" translatable="false">Copyright 2009-2015 Yuku\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</string>
|
||||
<string name="ambilwarna_url" translatable="false">https://github.com/yukuku/ambilwarna</string>
|
||||
<string name="stetho_text" translatable="false">BSD License\n\nFor Stetho software\n\nCopyright (c) 2015, Facebook, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
|
||||
<string name="stetho_url" translatable="false">https://github.com/facebook/stetho</string>
|
||||
<string name="filepicker_text" translatable="false">Copyright 2016 SimpleMobileTools\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
|
||||
<string name="filepicker_url" translatable="false">https://github.com/SimpleMobileTools/Simple-File-Picker</string>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
</resources>
|
||||
|
@ -1,15 +1,9 @@
|
||||
<resources>
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="app_launcher_name">Notes</string>
|
||||
<string name="widget_config">Thank you for using Simple Notes.\nFor more simple apps please visit SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Save</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="share_via">Share via</string>
|
||||
<string name="cannot_share_empty_text">Cannot share empty text</string>
|
||||
<string name="simple_note">Simple Note</string>
|
||||
<string name="new_note">Add a new note</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="no_title">Please name your note</string>
|
||||
<string name="title_taken">A note with that title already exists</string>
|
||||
<string name="open_note">Open note</string>
|
||||
@ -17,13 +11,10 @@
|
||||
<string name="delete_note_prompt_title">Delete note</string>
|
||||
<string name="delete_note_prompt_message">Are you sure you want to delete note \"%1$s\"?</string>
|
||||
<string name="pick_a_note">Pick a note</string>
|
||||
<string name="rename">Rename</string>
|
||||
<string name="rename_note">Rename note</string>
|
||||
<string name="general_note">General note</string>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Settings</string>
|
||||
<string name="dark_theme">Dark theme</string>
|
||||
<string name="widget_note">Note used in widget</string>
|
||||
<string name="note_font_size">Note font size</string>
|
||||
<string name="small">Small</string>
|
||||
@ -35,28 +26,6 @@
|
||||
<string name="center">Center</string>
|
||||
<string name="right">Right</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
<string name="website">More simple apps and source code at:\nhttp://simplemobiletools.com</string>
|
||||
<string name="email_label">Send your feedback or suggestions to:</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invite friends</u></string>
|
||||
<string name="share_text">Hey, come check out %1$s at %2$s</string>
|
||||
<string name="invite_via">Invite via</string>
|
||||
<string name="rate_us_underlined"><u>Rate us in the Play Store</u></string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Follow us:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
<string name="third_party_licences">Third party licences</string>
|
||||
<string name="kotlin_title"><u>Kotlin (programming language)</u></string>
|
||||
<string name="ambilwarna_title"><u>AmbilWarna (color picker)</u></string>
|
||||
<string name="stetho_title"><u>Stetho (debugging databases)</u></string>
|
||||
<string name="filepicker_title"><u>Simple File Picker (filepicker dialog)</u></string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- Short description has to have less than 80 chars -->
|
||||
<string name="app_short_description">A simple textfield for adding quick notes, without ads.</string>
|
||||
@ -74,7 +43,5 @@
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Picker/tree/master/library/src/main/res
|
||||
https://github.com/SimpleMobileTools/Simple-File-Properties/tree/master/library/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
|
@ -1,53 +1,5 @@
|
||||
<resources>
|
||||
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
<item name="actionBarStyle">@style/AppTheme.ActionBarStyle</item>
|
||||
<item name="android:textSize">@dimen/normal_text_size</item>
|
||||
<item name="android:spinnerItemStyle">@style/SpinnerItem</item>
|
||||
<item name="spinnerDropDownItemStyle">@style/SpinnerItem.DropDownItem</item>
|
||||
<item name="android:spinnerDropDownItemStyle">@style/SpinnerItem.DropDownItem</item>
|
||||
</style>
|
||||
<style name="AppTheme" parent="AppTheme.Base"/>
|
||||
|
||||
<style name="AppTheme.Dark" parent="Theme.AppCompat">
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
<item name="actionBarStyle">@style/AppTheme.ActionBarStyle</item>
|
||||
<item name="android:textSize">@dimen/normal_text_size</item>
|
||||
<item name="android:windowBackground">@android:color/black</item>
|
||||
<item name="android:spinnerItemStyle">@style/SpinnerItem</item>
|
||||
<item name="spinnerDropDownItemStyle">@style/SpinnerItem.DropDownItem</item>
|
||||
<item name="android:spinnerDropDownItemStyle">@style/SpinnerItem.DropDownItem</item>
|
||||
</style>
|
||||
|
||||
<style name="MyWidgetConfigTheme" parent="@style/AppTheme">
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<item name="android:windowShowWallpaper">true</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.ActionBarStyle" parent="@style/Base.Widget.AppCompat.ActionBar">
|
||||
<item name="background">@color/colorPrimary</item>
|
||||
<item name="titleTextStyle">@style/AppTheme.ActionBar.TitleTextStyle</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
|
||||
<item name="android:fontFamily">sans-serif</item>
|
||||
<item name="android:textSize">20sp</item>
|
||||
</style>
|
||||
|
||||
<style name="SpinnerItem" parent="@android:style/Widget.TextView">
|
||||
<item name="android:paddingRight">@dimen/activity_margin</item>
|
||||
<item name="android:gravity">end</item>
|
||||
</style>
|
||||
|
||||
<style name="SpinnerItem.DropDownItem" parent="@android:style/Widget.TextView">
|
||||
<item name="android:gravity">center_vertical</item>
|
||||
<item name="android:paddingTop">@dimen/normal_padding</item>
|
||||
<item name="android:paddingBottom">@dimen/normal_padding</item>
|
||||
<item name="android:paddingLeft">@dimen/activity_margin</item>
|
||||
<item name="android:paddingRight">@dimen/activity_margin</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
Loading…
x
Reference in New Issue
Block a user