Skip to content

Commit

Permalink
First minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vavassor committed Apr 3, 2017
1 parent e46e50a commit 1ebe514
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.keylesspalace.tusky"
minSdkVersion 15
targetSdkVersion 25
versionCode 12
versionName "1.0.3"
versionCode 13
versionName "1.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary true
}
Expand All @@ -18,6 +18,9 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
disable 'MissingTranslation'
}
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ public void onClick(View v) {
String[] pageTitles = {
getString(R.string.title_home),
getString(R.string.title_notifications),
getString(R.string.title_public_federated),
getString(R.string.title_public_local),
getString(R.string.title_public_federated),
};
adapter.setPageTitles(pageTitles);

Expand Down
7 changes: 6 additions & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_public" />
android:text="@string/title_public_local" />

<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_public_federated" />

</android.support.design.widget.TabLayout>

Expand Down
13 changes: 4 additions & 9 deletions app/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

<string name="title_home">Start</string>
<string name="title_notifications">Benachrichtigungen</string>
<string name="title_public">Öffentlich</string>
<string name="title_thread">Unterhaltung</string>
<string name="title_tag">#%s</string>
<string name="title_statuses">Posts</string>
Expand Down Expand Up @@ -82,9 +81,9 @@
<string name="hint_compose">Was passiert gerade?</string>
<string name="hint_content_warning">Inhaltswarnung</string>

<string name="link_no_account">Noch keinen Account?</string>
<string name="link_whats_an_instance">Was ist ein Instanz?</string>

<string name="dialog_no_account">
<string name="dialog_whats_an_instance">
Wie bei E-Mailadressen auch, so kann eine Mastodon-Adresse von verschiedenen Websites
angeboten werden.\n\nHier kannst du eine Adresse einer Instanz eingeben, wo du dir entweder
ein Benutzerkonto erstellen kannst oder dich einloggst.\n\nWeitere Informationen unter
Expand All @@ -98,13 +97,9 @@
<string name="visibility_private">Nur Follower und Erwähnte dürfen sehen</string>

<string name="pref_title_notification_settings">Benachrichtigungen</string>
<string name="pref_title_pull_notifications">Aktiviere Pull-Benachrichtigungen</string>
<string name="pref_summary_pull_notifications">Prüfe auf Benachrichtigungen nach Intervall</string>
<string name="pref_title_pull_notification_check_interval">Intervall</string>
<string name="pref_summary_pull_notification_check_interval">Wie oft heruntergeladen werden soll</string>
<string name="pref_title_notification_alert_sound">Benachrichtige mit Sound</string>
<string name="pref_title_notification_style_vibrate">Benachrichtige mit Vibration</string>
<string name="pref_title_notification_style_light">Benachrichtige mit Licht</string>
<string name="pref_title_notification_alert_vibrate">Benachrichtige mit Vibration</string>
<string name="pref_title_notification_alert_light">Benachrichtige mit Licht</string>
<string name="pref_title_appearance_settings">Aussehen</string>
<string name="pref_title_light_theme">Benutze helles Theme</string>
<string name="action_submit">Senden</string>
Expand Down

0 comments on commit 1ebe514

Please sign in to comment.