mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 11:49:04 +01:00
Make animations more consistent
This commit is contained in:
7
briar-android/src/main/res/anim/dialog_in.xml
Normal file
7
briar-android/src/main/res/anim/dialog_in.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_longAnimTime"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:toAlpha="1.0"/>
|
||||
7
briar-android/src/main/res/anim/dialog_out.xml
Normal file
7
briar-android/src/main/res/anim/dialog_out.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="1.0"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:toAlpha="0.0"/>
|
||||
12
briar-android/src/main/res/anim/screen_new_in.xml
Normal file
12
briar-android/src/main/res/anim/screen_new_in.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- slide in from right -->
|
||||
<translate
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="100%p"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:toXDelta="0"/>
|
||||
|
||||
</set>
|
||||
12
briar-android/src/main/res/anim/screen_new_out.xml
Normal file
12
briar-android/src/main/res/anim/screen_new_out.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- slide out to right -->
|
||||
<translate
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="0"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:toXDelta="100%p"/>
|
||||
|
||||
</set>
|
||||
7
briar-android/src/main/res/anim/screen_old_in.xml
Normal file
7
briar-android/src/main/res/anim/screen_old_in.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:toAlpha="1.0"/>
|
||||
7
briar-android/src/main/res/anim/screen_old_out.xml
Normal file
7
briar-android/src/main/res/anim/screen_old_out.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="1.0"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:toAlpha="0.0"/>
|
||||
12
briar-android/src/main/res/anim/step_next_in.xml
Normal file
12
briar-android/src/main/res/anim/step_next_in.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- slide in from right -->
|
||||
<translate
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="100%p"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:toXDelta="0"/>
|
||||
|
||||
</set>
|
||||
12
briar-android/src/main/res/anim/step_next_out.xml
Normal file
12
briar-android/src/main/res/anim/step_next_out.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- slide out to right -->
|
||||
<translate
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="0"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:toXDelta="100%p"/>
|
||||
|
||||
</set>
|
||||
7
briar-android/src/main/res/anim/step_previous_in.xml
Normal file
7
briar-android/src/main/res/anim/step_previous_in.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:toAlpha="1.0"/>
|
||||
7
briar-android/src/main/res/anim/step_previous_out.xml
Normal file
7
briar-android/src/main/res/anim/step_previous_out.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="1.0"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:toAlpha="0.0"/>
|
||||
@@ -6,8 +6,30 @@
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<!-- The first child(root) is the content view -->
|
||||
<include
|
||||
layout="@layout/activity_with_loading"/>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<android.support.v7.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
style="@style/BriarToolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/fragmentContainer"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/window_background"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- The second child is the menu -->
|
||||
<include
|
||||
@@ -16,4 +38,4 @@
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="start"/>
|
||||
|
||||
</android.support.v4.widget.DrawerLayout>
|
||||
</android.support.v4.widget.DrawerLayout>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/content_fragment"
|
||||
android:id="@+id/fragmentContainer"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/window_background"/>
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<android.support.v7.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
style="@style/BriarToolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/content_fragment"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/window_background"/>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/container_progress"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/window_background"
|
||||
android:layout_gravity="center"
|
||||
android:visibility="invisible"
|
||||
tools:visibility="visible">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progress_bar"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_progress_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/progress_bar"
|
||||
android:gravity="center"
|
||||
android:paddingTop="@dimen/margin_large"
|
||||
tools:text="progress bar title"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<android.support.v4.view.ViewPager
|
||||
android:id="@+id/pager"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"/>
|
||||
|
||||
</FrameLayout>
|
||||
@@ -4,6 +4,7 @@
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/window_background"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ScrollView
|
||||
@@ -41,7 +42,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="bottom"
|
||||
app:buttonText="@string/blogs_reblog_button"
|
||||
app:maxLines="5"
|
||||
app:hint="@string/blogs_reblog_comment_hint"/>
|
||||
app:hint="@string/blogs_reblog_comment_hint"
|
||||
app:maxLines="5"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
23
briar-android/src/main/res/layout/fragment_sign_out.xml
Normal file
23
briar-android/src/main/res/layout/fragment_sign_out.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar"
|
||||
style="?android:attr/progressBarStyleLarge"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_progress_bar"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/progressBar"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:paddingTop="@dimen/margin_large"
|
||||
android:text="@string/progress_title_logout"/>
|
||||
|
||||
</RelativeLayout>
|
||||
@@ -77,7 +77,6 @@
|
||||
android:layout_marginLeft="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginStart="@dimen/listitem_horizontal_margin"
|
||||
android:transitionName="avatar"
|
||||
tools:src="@drawable/ic_launcher"/>
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
|
||||
@@ -1,79 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginStart="@dimen/listitem_horizontal_margin"
|
||||
android:background="?attr/selectableItemBackground">
|
||||
|
||||
<org.briarproject.briar.android.view.TextAvatarView
|
||||
android:id="@+id/avatarView"
|
||||
android:layout_width="@dimen/listitem_picture_frame_size"
|
||||
android:layout_height="@dimen/listitem_picture_frame_size"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_marginEnd="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginTop="@dimen/margin_medium"/>
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
android:id="@+id/nameView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginTop="@dimen/listitem_horizontal_margin"
|
||||
android:layout_toEndOf="@+id/avatarView"
|
||||
android:layout_toRightOf="@+id/avatarView"
|
||||
android:maxLines="2"
|
||||
android:textColor="@color/briar_text_primary"
|
||||
android:textSize="@dimen/text_size_medium"
|
||||
tools:text="This is a name of a blog"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/postCountView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/nameView"
|
||||
android:layout_marginBottom="@dimen/margin_small"
|
||||
android:layout_toEndOf="@+id/avatarView"
|
||||
android:layout_toRightOf="@+id/avatarView"
|
||||
android:paddingTop="@dimen/margin_small"
|
||||
android:textColor="@color/briar_text_secondary"
|
||||
android:textSize="@dimen/text_size_small"
|
||||
tools:text="1337 posts"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/dateView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@+id/nameView"
|
||||
android:layout_marginEnd="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/listitem_horizontal_margin"
|
||||
android:paddingTop="@dimen/margin_small"
|
||||
android:textColor="@color/briar_text_secondary"
|
||||
android:textSize="@dimen/text_size_small"
|
||||
tools:text="Dec 24"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/statusView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/postCountView"
|
||||
android:layout_toEndOf="@+id/avatarView"
|
||||
android:layout_toRightOf="@+id/avatarView"
|
||||
android:textColor="@color/briar_text_tertiary"
|
||||
tools:text="@string/blogs_blog_is_empty"/>
|
||||
|
||||
<View
|
||||
style="@style/Divider.ForumList"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_below="@+id/statusView"
|
||||
android:layout_marginTop="@dimen/listitem_horizontal_margin"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_marginEnd="@dimen/listitem_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/listitem_horizontal_margin"
|
||||
android:transitionName="avatar"
|
||||
tools:src="@drawable/ic_launcher"/>
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
|
||||
@@ -20,7 +20,6 @@
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:transitionName="avatar"
|
||||
tools:src="@drawable/ic_launcher"/>
|
||||
|
||||
<LinearLayout
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">Passwort zu schwach</string>
|
||||
<string name="passwords_do_not_match">Passwörter stimmen nicht überein</string>
|
||||
<string name="create_account_button">Konto anlegen</string>
|
||||
<string name="progress_title_please_wait">Bitte warten ...</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Passwort eingeben:</string>
|
||||
<string name="try_again">Passwort falsch, bitte erneut versuchen</string>
|
||||
@@ -24,8 +23,6 @@
|
||||
<string name="startup_failed_db_error">Deine Briar-Datenbank ist korrupt. Briar-Konto, Daten und alle Verbindungen zu Kontakten können nicht mehr wiederhergestellt werden. Deinstalliere Briar und erstelle nach Installation der aktuellen Briar-Version ein neues Konto.</string>
|
||||
<string name="startup_failed_service_error">Briar konnte ein benötigtes Plugin nicht starten. Normalerweise kann das Problem durch eine Neuinstallation von Briar gelöst werden. Eine Neuinstallation führt jedoch zum Verlust des Kontos und aller dazugehörigen Daten, da Briar deine Daten nicht auf zentralen Servern speichert</string>
|
||||
<string name="expiry_warning">Diese Version von Briar ist nicht mehr aktuell.\nBitte installiere eine neuere Version.</string>
|
||||
<string name="dialog_title_welcome">Willkommen bei Briar</string>
|
||||
<string name="dialog_welcome_message">Füge einen Kontakt hinzu, um mit verschlüsselter Kommunikation zu beginnen oder wähle das Icon in der oberen linken Ecke für mehr Optionen.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="nav_drawer_open_description">Navigationsleiste öffnen</string>
|
||||
<string name="nav_drawer_close_description">Navigationsleiste schliessen</string>
|
||||
@@ -87,7 +84,6 @@
|
||||
<string name="searching_format">Suche nach Kontakt mit Einladungs-Code %06d\u2026</string>
|
||||
<string name="connection_failed">Verbindung fehlgeschlagen</string>
|
||||
<string name="could_not_find_contact">Briar kann Deinen Kontakt nicht innerhalb der Reichweite finden</string>
|
||||
<string name="could_not_open_camera">Es konnte nicht auf die Kamera zugegriffen werden. Bitte versuche es erneut.</string>
|
||||
<string name="try_again_button">Noch einmal versuchen</string>
|
||||
<string name="connected_to_contact">Mit Kontakt verbunden</string>
|
||||
<string name="calculating_confirmation_code">Bestätigungscode wird berechnet\u2026</string>
|
||||
@@ -116,7 +112,6 @@
|
||||
<string name="introduction_sent">Deine Kontaktempfehlung wurde verschickt</string>
|
||||
<string name="introduction_error">Es gab einen Fehler beim Versuch, die Kontaktempfehlung zu verschicken</string>
|
||||
<string name="introduction_response_error">Fehler bei Antwort auf Kontaktempfehlung</string>
|
||||
<string name="dialog_button_introduce">Als Kontakt empfehlen</string>
|
||||
<string name="introduction_request_sent">Du wolltest %1$s an %2$s als Kontakt empfehlen</string>
|
||||
<string name="introduction_request_received">%1$s schlägt vor, dich als Kontakt an %2$s zu empfehlen. Möchtest Du %2$s zu deiner Kontaktliste hinzufügen?</string>
|
||||
<string name="introduction_request_exists_received">%1$s schlägt vor, dich als Kontakt an %2$s zu empfehlen. %2$s ist allerdings bereits in deiner Kontaktliste. Da %1$s das vielleicht nicht weiss, kannst du trotzdem antworten:</string>
|
||||
@@ -140,7 +135,6 @@
|
||||
<string name="groups_group_is_empty">Diese Gruppe ist leer.</string>
|
||||
<string name="groups_remove">Entfernen</string>
|
||||
<string name="groups_create_group_title">Private Gruppe erstellen</string>
|
||||
<string name="groups_no_messages">Diese Gruppe hat keine Teilnehmer.\n\nErstelle die erste Nachricht über das Stift-Symbol am oberen Rand.</string>
|
||||
<string name="groups_create_group_button">Gruppe erstellen</string>
|
||||
<string name="groups_create_group_invitation_button">Einladung schicken</string>
|
||||
<string name="groups_create_group_hint">Gebe Deiner privaten Gruppe einen Namen</string>
|
||||
@@ -240,7 +234,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s hat das persönliche Blog von %2$s mit dir geteilt.</string>
|
||||
<string name="blogs_sharing_invitation_sent">Du hast das persönliche Blog von %1$s mit %2$s geteilt.</string>
|
||||
<string name="blogs_sharing_invitations_title">Blogeinladungen</string>
|
||||
<string name="blogs_sharing_exists">Du hast dieses Blog bereits abonniert. Ein neues Abo anzunehmen kann dazu führen, dass neue Einträge schneller verfügbar werden.</string>
|
||||
<string name="blogs_sharing_joined_toast">Blog abonniert</string>
|
||||
<string name="blogs_sharing_declined_toast">Blogeinladung abgelehnt</string>
|
||||
<!--RSS Feeds-->
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">La contraseña es demasiado débil</string>
|
||||
<string name="passwords_do_not_match">Las contraseñas no coinciden</string>
|
||||
<string name="create_account_button">Registrar una nueva cuenta</string>
|
||||
<string name="progress_title_please_wait">Espera, por favor</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Introduce tu contraseña:</string>
|
||||
<string name="try_again">Contraseña incorrecta, inténtalo de nuevo</string>
|
||||
@@ -24,8 +23,6 @@
|
||||
<string name="startup_failed_db_error">Por alguna razón, la base de datos de Briar ha sufrido daños irreparables. Tu cuenta, tus datos y todos tus contactos se han perdido. Desafortunadamente, tendrás que reinstalar Briar y registrar una nueva cuenta.</string>
|
||||
<string name="startup_failed_service_error">Briar no pudo iniciar un complemento necesario. Reinstalar Briar suele solucionar el problema. Sin embargo, ten en cuenta que perderás tu cuenta y todos los datos asociados ya que Briar no almacena esta información en ningún servidor centrar.</string>
|
||||
<string name="expiry_warning">Esta versión ha caducado.\nInstala una más reciente, por favor.</string>
|
||||
<string name="dialog_title_welcome">Bienvenido a Briar</string>
|
||||
<string name="dialog_welcome_message">Añade un contacto para empezar a comunicarte de forma segura o pulsa el icono de la esquina superior izquierda de la pantalla para otras opciones.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="nav_drawer_open_description">Abrir el panel de navegación</string>
|
||||
<string name="nav_drawer_close_description">Cierra el panel de navegación</string>
|
||||
@@ -94,7 +91,6 @@
|
||||
<string name="searching_format">Buscando el contacto con el código de invitación %06d\u2026</string>
|
||||
<string name="connection_failed">La conexión falló</string>
|
||||
<string name="could_not_find_contact">Briar no pudo encontrar a tu contacto cerca</string>
|
||||
<string name="could_not_open_camera">No se pudo acceder a la cámara. ¡Prueba de nuevo, por favor!</string>
|
||||
<string name="try_again_button">Prueba de nuevo</string>
|
||||
<string name="connected_to_contact">Conectado con el contacto</string>
|
||||
<string name="calculating_confirmation_code">Calculando código de confirmación\u2026</string>
|
||||
@@ -124,7 +120,6 @@
|
||||
<string name="introduction_sent">Tu presentación se ha mandado.</string>
|
||||
<string name="introduction_error">Ocurrió un error realizando la presentación.</string>
|
||||
<string name="introduction_response_error">Error al responder a la presentación</string>
|
||||
<string name="dialog_button_introduce">Presentar</string>
|
||||
<string name="introduction_request_sent">Has pedido presentar a %1$s a %2$s.</string>
|
||||
<string name="introduction_request_received">%1$s ha pedido presentarte a %2$s. ¿Quieres añadir a %2$s a tu lista de contactos?</string>
|
||||
<string name="introduction_request_exists_received">%1$s ha pedido presentarte a %2$s, pero %2$s ya está en tu lista de contactos. %1$s puede no saberlo, así que puedes responderle de todas maneras:</string>
|
||||
@@ -149,7 +144,6 @@
|
||||
<string name="groups_group_is_dissolved">Este grupo ha sido disuelto</string>
|
||||
<string name="groups_remove">Eliminar</string>
|
||||
<string name="groups_create_group_title">Crear grupo privado</string>
|
||||
<string name="groups_no_messages">Este grupo está vacío.\n\nPuedes usar el icono del lápiz arriba para escribir el primer mensaje.</string>
|
||||
<string name="groups_create_group_button">Crear grupo</string>
|
||||
<string name="groups_create_group_invitation_button">Enviar invitación</string>
|
||||
<string name="groups_create_group_hint">Dar nombre al grupo privado</string>
|
||||
@@ -277,7 +271,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s ha compartido el blog personal de %2$s contigo.</string>
|
||||
<string name="blogs_sharing_invitation_sent">Has compartido el blog personal de %1$s con %2$s.</string>
|
||||
<string name="blogs_sharing_invitations_title">Invitaciones a blogs</string>
|
||||
<string name="blogs_sharing_exists">Ya estás suscrito a este blog. Aceptar la invitación de nuevo conllevará una mejora de la velocidad en la recepción de los artículos.</string>
|
||||
<string name="blogs_sharing_joined_toast">Suscrito al blog</string>
|
||||
<string name="blogs_sharing_declined_toast">Rechazada invitación al blog</string>
|
||||
<!--RSS Feeds-->
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">Le mot de passe est trop faible</string>
|
||||
<string name="passwords_do_not_match">Les mots de passes ne correspondent pas</string>
|
||||
<string name="create_account_button">Créer un compte</string>
|
||||
<string name="progress_title_please_wait">Veuillez patienter ...</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Tapez votre mot de passe :</string>
|
||||
<string name="try_again">Mot de passe incorrecte, essayer à nouveau</string>
|
||||
@@ -24,8 +23,6 @@
|
||||
<string name="startup_failed_db_error">Pour une raison indéterminée, votre base de donnée Briar est corrompue et irrécupérable. Vos comptes, données et contacts sont perdus. Vous devez malheureusement réinstaller Briar et configurer un nouveau compte.</string>
|
||||
<string name="startup_failed_service_error">Briar n\'a pas pu démarrer un module nécessaire. Réinstaller Briar résout généralement ce problème. Veuillez noter que vous perdrez votre compte et toutes les données associées puisque Briar n\'utilise pas de serveurs centralisés pour enregistrer les données.</string>
|
||||
<string name="expiry_warning">Ce logiciel est arrivé à expiration.\n Veuillez installer une version plus récente.</string>
|
||||
<string name="dialog_title_welcome">Bienvenue sur Briar</string>
|
||||
<string name="dialog_welcome_message">Ajouter un contact pour communiquer de manière sécurisée ou toucher l\'icône en haut à gauche pour plus d\'options.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="nav_drawer_open_description">Ouvrir le panneau de navigation</string>
|
||||
<string name="nav_drawer_close_description">Fermer le panneau de navigation</string>
|
||||
@@ -95,7 +92,6 @@
|
||||
<string name="searching_format">Recherche de contacts avec le code d\'invitation %06d\u2026</string>
|
||||
<string name="connection_failed">Échec de connexion</string>
|
||||
<string name="could_not_find_contact">Briar n\'a pas trouvé de contacts à proximité</string>
|
||||
<string name="could_not_open_camera">Appareil photo inaccessible. Essayez à nouveau !</string>
|
||||
<string name="try_again_button">Essayer à nouveau</string>
|
||||
<string name="connected_to_contact">Connecté au contact</string>
|
||||
<string name="calculating_confirmation_code">Calcul du code de confirmation\u2026</string>
|
||||
@@ -125,7 +121,6 @@
|
||||
<string name="introduction_sent">Votre admission a été envoyée.</string>
|
||||
<string name="introduction_error">Une erreur s\'est produite lors de l\'admission.</string>
|
||||
<string name="introduction_response_error">Erreur lors de la réponse à l\'admission</string>
|
||||
<string name="dialog_button_introduce">Introduire</string>
|
||||
<string name="introduction_request_sent">Vous avez demandé à %2$s d\'admettre %1$s.</string>
|
||||
<string name="introduction_request_received">%1$s vous a demandé l\'admission de %2$s. Souhaitez-vous ajouter %2$s à votre liste de contacts ?</string>
|
||||
<string name="introduction_request_exists_received">%1$s vous a demandé l\'admission de %2$s mais %2$s est déjà dans votre liste de contacts. Puisque %1$s ne le sait pas, vous pouvez tout de même répondre : </string>
|
||||
@@ -150,7 +145,6 @@
|
||||
<string name="groups_group_is_dissolved">Ce groupe a été supprimé</string>
|
||||
<string name="groups_remove">Supprimer</string>
|
||||
<string name="groups_create_group_title">Créer un groupe privé</string>
|
||||
<string name="groups_no_messages">Ce groupe est vide. \n\nUtilisez l\'icône crayon, en haut, pour composer le premier message.</string>
|
||||
<string name="groups_create_group_button">Créer un groupe</string>
|
||||
<string name="groups_create_group_invitation_button">Envoyer invitation</string>
|
||||
<string name="groups_create_group_hint">Ajouter un nom au groupe privé</string>
|
||||
@@ -278,7 +272,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s a partagé le blog personnel de %2$s avec vous.</string>
|
||||
<string name="blogs_sharing_invitation_sent">Vous avez partagé le blog personnel de %1$s avec %2$s.</string>
|
||||
<string name="blogs_sharing_invitations_title">Invitations au blog</string>
|
||||
<string name="blogs_sharing_exists">Vous êtes déjà inscrit à ce blog. Accepter à nouveau peut conduire à une de post de blog.</string>
|
||||
<string name="blogs_sharing_joined_toast">Abonné au Blog</string>
|
||||
<string name="blogs_sharing_declined_toast">Invitation au blog refusée</string>
|
||||
<!--RSS Feeds-->
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">La password è troppo debole</string>
|
||||
<string name="passwords_do_not_match">La password non corrisponde</string>
|
||||
<string name="create_account_button">Creare Account</string>
|
||||
<string name="progress_title_please_wait">Attendi per favore...</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Inserisci la tua password:</string>
|
||||
<string name="try_again">Password sbagliata, riprova</string>
|
||||
@@ -23,8 +22,6 @@
|
||||
<string name="startup_failed_activity_title">Fallimento Avvio Briar</string>
|
||||
<string name="startup_failed_db_error">Per alcune reagioni, il tuo database Briar si è corrotto in modo irreparabile. Il tuo account, i tuoi dati e tutte le connessioni ai tuoi contatti sono andati persi. Sfortunatamente, devi reinstallare Briar per creare un nuovo account.</string>
|
||||
<string name="expiry_warning">Questo software è scaduto.\nSi prega di installare una nuova versione.</string>
|
||||
<string name="dialog_title_welcome">Benvenuti su Briar</string>
|
||||
<string name="dialog_welcome_message">Aggiungi un contatto per iniziare a comunicare in modo sicuro oppure premi l\'icona in alto a sinistra dello schermo per vedere le altre opzioni.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="contact_list_button">Contatti</string>
|
||||
<string name="groups_button">Gruppi privati</string>
|
||||
@@ -81,7 +78,6 @@
|
||||
<string name="searching_format">Sto cercando i contatti con codice di invito %06d\u2026</string>
|
||||
<string name="connection_failed">Connessione fallita</string>
|
||||
<string name="could_not_find_contact">Briar non è stato in grado di trovare il vostro contatto vicino</string>
|
||||
<string name="could_not_open_camera">Impossibile accedere alla tua fotocamera. Si prega di ritentare!</string>
|
||||
<string name="try_again_button">Riprova</string>
|
||||
<string name="connected_to_contact">Connesso al contatto</string>
|
||||
<string name="calculating_confirmation_code">Calcolazione codice di conferma\u2026</string>
|
||||
@@ -103,7 +99,6 @@
|
||||
<string name="introduction_button">Crea l\'introduzione</string>
|
||||
<string name="introduction_sent">La tua introduzione è stata inviata.</string>
|
||||
<string name="introduction_error">C\'è stato un errore nella creazione dell\'introduzione</string>
|
||||
<string name="dialog_button_introduce">Introduci</string>
|
||||
<string name="introduction_request_sent">Hai richiesto di introdurre %1$s a %2$s.</string>
|
||||
<string name="introduction_request_answered_received">%1$s ha richiesto di introdurti a %2$s.</string>
|
||||
<string name="introduction_response_accepted_sent">Hai accettato l\'introduzione a %1$s.</string>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">A senha está muito fraca</string>
|
||||
<string name="passwords_do_not_match">As senhas não conferem</string>
|
||||
<string name="create_account_button">Criar conta</string>
|
||||
<string name="progress_title_please_wait">Por favor, aguarde</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Insira sua senha:</string>
|
||||
<string name="try_again">Senha Incorreta, tente novamente</string>
|
||||
@@ -24,8 +23,6 @@
|
||||
<string name="startup_failed_db_error">Por alguma razão, seus dados do Briar estão corrompidos e não podem ser reparados. Sua conta, seus dados e todas suas conexões com contatos estão perdidas. Infelizmente você terá que resintalar o Briar e criar uma nova conta.</string>
|
||||
<string name="startup_failed_service_error">O Briar não pode iniciar devido a um plugin. Reinstalar o Briar geralmente resolve esse problema. Porém, note que ao fazer isso você perderá sua conta e todos os dados associados a ela, já que o Briar não usa um servidor central para armazenar seus dados.</string>
|
||||
<string name="expiry_warning">Esse programa expirou.\nPor favor instale uma versão mais recente.</string>
|
||||
<string name="dialog_title_welcome">Bem-vindo ao Briar</string>
|
||||
<string name="dialog_welcome_message">Adicione um contato para começar uma comunicação segura ou pressione o ícone na parte superior direita da tela para mais opções.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="nav_drawer_open_description">Abrir aba de navegação</string>
|
||||
<string name="nav_drawer_close_description">Fechar aba de navegação</string>
|
||||
@@ -95,7 +92,6 @@
|
||||
<string name="searching_format">Procurando por contato com código de convite %06d\u2026</string>
|
||||
<string name="connection_failed">Conexão incompleta</string>
|
||||
<string name="could_not_find_contact">Briar não conseguiu achar nenhum contato por perto</string>
|
||||
<string name="could_not_open_camera">Não foi possível acessar sua câmera. Por favor tente novamente!</string>
|
||||
<string name="try_again_button">Tente novamente</string>
|
||||
<string name="connected_to_contact">Conectado ao contato</string>
|
||||
<string name="calculating_confirmation_code">Calculando código de confirmação\u2026</string>
|
||||
@@ -125,7 +121,6 @@
|
||||
<string name="introduction_sent">Sua Introdução foi enviada.</string>
|
||||
<string name="introduction_error">Houve um erro ao fazer a apresentação</string>
|
||||
<string name="introduction_response_error">Erro ao responder à apresentação</string>
|
||||
<string name="dialog_button_introduce">Apresentar</string>
|
||||
<string name="introduction_request_sent">Você recebeu um pedido para apresentar %1$s a %2$s.</string>
|
||||
<string name="introduction_request_received">%1$s pediu para apresentar você a %2$s. Você quer adicionar %2$s a sua lista de contatos?</string>
|
||||
<string name="introduction_request_exists_received">%1$s pediu para apresentar você a %2$s, mas %2$s já está na sua lista de contatos. Já que %1$s não sabe disso, você ainda pode responder:</string>
|
||||
@@ -150,7 +145,6 @@
|
||||
<string name="groups_group_is_dissolved">Esse grupo foi dissolvido</string>
|
||||
<string name="groups_remove">Remover</string>
|
||||
<string name="groups_create_group_title">Criar Grupo Privado</string>
|
||||
<string name="groups_no_messages">Esse grupo está vazio.\n\nVocê pode usar o ícone da caneta no topo para escrever a primeira mensagem.</string>
|
||||
<string name="groups_create_group_button">Criar Grupo</string>
|
||||
<string name="groups_create_group_invitation_button">Enviar Convite</string>
|
||||
<string name="groups_create_group_hint">Adicionar um nome para seu grupo privado</string>
|
||||
@@ -278,7 +272,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s compartilhou o blog %2$s com você.</string>
|
||||
<string name="blogs_sharing_invitation_sent">Você compartilhou o blog de %1$s com %2$s.</string>
|
||||
<string name="blogs_sharing_invitations_title">Convites para Fóruns</string>
|
||||
<string name="blogs_sharing_exists">Você já está inscrito neste blog. Aceitando novamente pode tornar mais rápida a entrega dos posts.</string>
|
||||
<string name="blogs_sharing_joined_toast">Inscrito neste Blog</string>
|
||||
<string name="blogs_sharing_declined_toast">Convite do Blog recusado</string>
|
||||
<!--RSS Feeds-->
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<string name="password_too_weak">Fjalëkalimi është shumë i dobët</string>
|
||||
<string name="passwords_do_not_match">Fjalëkalimet nuk përputhen</string>
|
||||
<string name="create_account_button">Krijoje Llogarinë</string>
|
||||
<string name="progress_title_please_wait">Ju lutemi, prisni…</string>
|
||||
<!--Login-->
|
||||
<string name="enter_password">Jepni fjalëkalimin tuaj:</string>
|
||||
<string name="try_again">Fjalëkalim i gabuar, riprovoni</string>
|
||||
@@ -24,8 +23,6 @@
|
||||
<string name="startup_failed_db_error">Për ndonjë arsye, baza e të dhënave e Briar-it tuaj është aq e dëmtuar, sa s’mund të ndreqet. Llogaria juaj, të dhënat tuaja dhe krejt lidhjet tuaja me kontaktet kanë humbur. Mjerisht lypset të ri-instaloni Briar-in dhe të rregulloni një llogari të re.</string>
|
||||
<string name="startup_failed_service_error">Briar-i s’arriti të nisë një shtojcë të domosdoshme. Ri-instalimi i Briar-it zakonisht e zgjidh këtë problem. Por, ju lutemi, kini parasysh se me të do të humbni llogarinë tuaj dhe krejt të dhënat e lidhura me të, ngaqë Briar nuk përdor shërbyes qendrorë për të depozituar në ta të dhënat tuaja.</string>
|
||||
<string name="expiry_warning">Ky software ka skaduar.\nJu lutemi, instaloni një version më të ri.</string>
|
||||
<string name="dialog_title_welcome">Mirë se vini në Briar</string>
|
||||
<string name="dialog_welcome_message">Shtoni një kontakt që të filloni të komunikoni në mënyrë të sigurt, ose shtypni ikonën në cepin e sipërm majtas të ekranit për më tepër mundësi.</string>
|
||||
<!--Navigation Drawer-->
|
||||
<string name="nav_drawer_open_description">Hap sirtarin e lëvizjeve</string>
|
||||
<string name="nav_drawer_close_description">Mbylle sirtarin e lëvizjeve</string>
|
||||
@@ -95,7 +92,6 @@
|
||||
<string name="searching_format">Po kërkohet për kontakt me kod ftese %06d\u2026</string>
|
||||
<string name="connection_failed">Lidhja dështoi</string>
|
||||
<string name="could_not_find_contact">Briar-i s’e gjeti dot kontaktin tuaj këtej pari</string>
|
||||
<string name="could_not_open_camera">S’u hy dot te kamera juaj. Ju lutemi, riprovoni!</string>
|
||||
<string name="try_again_button">Riprovoni</string>
|
||||
<string name="connected_to_contact">U lidh me kontaktin</string>
|
||||
<string name="calculating_confirmation_code">Po përllogaritet kodi i ripohimit\u2026</string>
|
||||
@@ -125,7 +121,6 @@
|
||||
<string name="introduction_sent">Prezantimi juaj u dërgua.</string>
|
||||
<string name="introduction_error">Pati një gabim me bërjen e prezantimit.</string>
|
||||
<string name="introduction_response_error">Gabim në përgjigjen ndaj prezantimit</string>
|
||||
<string name="dialog_button_introduce">Prezantoje</string>
|
||||
<string name="introduction_request_sent">Keni kërkuar të prezantoni %1$s te %2$s.</string>
|
||||
<string name="introduction_request_received">%1$s ka kërkuar t’ju prezantojë te %2$s. Doni të shtohet %2$s te lista juaj e kontakteve?</string>
|
||||
<string name="introduction_request_exists_received">%1$s ka kërkuar t’ju prezantojë te %2$s, por %2$s gjendet tashmë te lista juaj e kontakteve. Meqë %1$s mund të mos ta dijë këtë gjë, mundeni prapëseprapë t’i përgjigjeni:</string>
|
||||
@@ -150,7 +145,6 @@
|
||||
<string name="groups_group_is_dissolved">Ky grup është shkrirë</string>
|
||||
<string name="groups_remove">Hiqe</string>
|
||||
<string name="groups_create_group_title">Krijoni Grup Privat</string>
|
||||
<string name="groups_no_messages">Ky grup është i zbrazët.\n\nMund të përdorni ikonën penë në krye që të hartoni mesazhin e parë.</string>
|
||||
<string name="groups_create_group_button">Krijoje Grupin</string>
|
||||
<string name="groups_create_group_invitation_button">Dërgoje Ftesën</string>
|
||||
<string name="groups_create_group_hint">Shtoni një emër për grupin tuaj privat</string>
|
||||
@@ -278,7 +272,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s ka ndarë me ju blogun personal të %2$s.</string>
|
||||
<string name="blogs_sharing_invitation_sent">Keni ndarë me %2$s blogun personal të %1$s.</string>
|
||||
<string name="blogs_sharing_invitations_title">Ftesa Blogu</string>
|
||||
<string name="blogs_sharing_exists">Jeni i pajtuar te ky blog një herë. Pranimi sërish mund të shpjerë te shpërndarje më e shpejtë postimesh blogu.</string>
|
||||
<string name="blogs_sharing_joined_toast">U pajtuat te Blogu</string>
|
||||
<string name="blogs_sharing_declined_toast">Ftesa e Blogut u Hodh Poshtë</string>
|
||||
<!--RSS Feeds-->
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
<string name="password_too_weak">Password is too weak</string>
|
||||
<string name="passwords_do_not_match">Passwords do not match</string>
|
||||
<string name="create_account_button">Create Account</string>
|
||||
<string name="progress_title_please_wait">Please wait..</string>
|
||||
|
||||
<!-- Login -->
|
||||
<string name="enter_password">Enter your password:</string>
|
||||
@@ -27,8 +26,6 @@
|
||||
<string name="startup_failed_db_error">For some reason, your Briar database is corrupted beyond repair. Your account, your data and all your contact connections are lost. Unfortunately, you need to reinstall Briar und set up a new account.</string>
|
||||
<string name="startup_failed_service_error">Briar was unable to start a required plugin. Reinstalling Briar usually solves this problem. However, please note that you will then lose your account and all data associated with it since Briar is not using central servers to store your data on.</string>
|
||||
<string name="expiry_warning">This software has expired.\nPlease install a newer version.</string>
|
||||
<string name="dialog_title_welcome">Welcome to Briar</string>
|
||||
<string name="dialog_welcome_message">Add a contact to start communicating securely or press the icon in the upper left corner of the screen for more options.</string>
|
||||
|
||||
<!-- Navigation Drawer -->
|
||||
<string name="nav_drawer_open_description">Open the navigation drawer</string>
|
||||
@@ -105,7 +102,6 @@
|
||||
<string name="searching_format">Searching for contact with invitation code %06d\u2026</string>
|
||||
<string name="connection_failed">Connection failed</string>
|
||||
<string name="could_not_find_contact">Briar could not find your contact nearby</string>
|
||||
<string name="could_not_open_camera">Could not access your camera. Please try again!</string>
|
||||
<string name="try_again_button">Try Again</string>
|
||||
<string name="connected_to_contact">Connected to contact</string>
|
||||
<string name="calculating_confirmation_code">Calculating confirmation code\u2026</string>
|
||||
@@ -136,7 +132,6 @@
|
||||
<string name="introduction_sent">Your introduction has been sent.</string>
|
||||
<string name="introduction_error">There was an error making the introduction.</string>
|
||||
<string name="introduction_response_error">Error when responding to introduction</string>
|
||||
<string name="dialog_button_introduce">Introduce</string>
|
||||
<string name="introduction_request_sent">You have asked to introduce %1$s to %2$s.</string>
|
||||
<string name="introduction_request_received">%1$s has asked to introduce you to %2$s. Do you want to add %2$s to your contact list?</string>
|
||||
<string name="introduction_request_exists_received">%1$s has asked to introduce you to %2$s, but %2$s is already in your contact list. Since %1$s might not know that, you can still respond:</string>
|
||||
@@ -162,7 +157,6 @@
|
||||
<string name="groups_group_is_dissolved">This group has been dissolved</string>
|
||||
<string name="groups_remove">Remove</string>
|
||||
<string name="groups_create_group_title">Create Private Group</string>
|
||||
<string name="groups_no_messages">This group is empty.\n\nYou can use the pen icon at the top to compose the first message.</string>
|
||||
<string name="groups_create_group_button">Create Group</string>
|
||||
<string name="groups_create_group_invitation_button">Send Invitation</string>
|
||||
<string name="groups_create_group_hint">Add a name for your private group</string>
|
||||
@@ -296,7 +290,6 @@
|
||||
<string name="blogs_sharing_invitation_received">%1$s has shared the personal blog of %2$s with you.</string>
|
||||
<string name="blogs_sharing_invitation_sent">You have shared the personal blog of %1$s with %2$s.</string>
|
||||
<string name="blogs_sharing_invitations_title">Blog Invitations</string>
|
||||
<string name="blogs_sharing_exists">You are subscribed to this blog already. Accepting again can lead to faster blog post delivery.</string>
|
||||
<string name="blogs_sharing_joined_toast">Subscribed to Blog</string>
|
||||
<string name="blogs_sharing_declined_toast">Blog Invitation Declined</string>
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
<item name="android:textColorTertiary">@color/briar_text_tertiary</item>
|
||||
<item name="android:textColorTertiaryInverse">@color/briar_text_tertiary_inverse</item>
|
||||
<item name="android:textColorLink">@color/briar_text_link</item>
|
||||
<item name="android:windowAnimationStyle">@style/ActivityAnimation</item>
|
||||
</style>
|
||||
|
||||
<style name="BriarThemeNoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
@@ -28,6 +29,14 @@
|
||||
<item name="android:textColorTertiary">@color/briar_text_tertiary</item>
|
||||
<item name="android:textColorTertiaryInverse">@color/briar_text_tertiary_inverse</item>
|
||||
<item name="android:textColorLink">@color/briar_text_link</item>
|
||||
<item name="android:windowAnimationStyle">@style/ActivityAnimation</item>
|
||||
</style>
|
||||
|
||||
<style name="ActivityAnimation" parent="@android:style/Animation.Activity">
|
||||
<item name="android:activityOpenEnterAnimation">@anim/screen_new_in</item>
|
||||
<item name="android:activityOpenExitAnimation">@anim/screen_old_out</item>
|
||||
<item name="android:activityCloseEnterAnimation">@anim/screen_old_in</item>
|
||||
<item name="android:activityCloseExitAnimation">@anim/screen_new_out</item>
|
||||
</style>
|
||||
|
||||
<style name="BriarThemeNoActionBar.Default"/>
|
||||
@@ -54,8 +63,8 @@
|
||||
</style>
|
||||
|
||||
<style name="DialogAnimation" parent="@android:style/Animation.Dialog">
|
||||
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
|
||||
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
|
||||
<item name="android:windowEnterAnimation">@anim/dialog_in</item>
|
||||
<item name="android:windowExitAnimation">@anim/dialog_out</item>
|
||||
</style>
|
||||
|
||||
<style name="OnboardingDialogTheme" parent="BriarDialogTheme">
|
||||
|
||||
Reference in New Issue
Block a user