Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b025fbb9 authored by Michael Bestas's avatar Michael Bestas
Browse files

Workaround for AOSP strings missing translations

Change-Id: Icd028f6ff7328fe8b96842eeaea22bac50607303
parent dcc7560f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/show_call_history" />
        android:text="@string/recents_footer_text" />

</android.support.v7.widget.CardView>
+3 −0
Original line number Diff line number Diff line
@@ -172,4 +172,7 @@

    <!-- Shown as a prompt to turn on the phone permission to allow a call to be placed -->
    <string name="cm_permission_place_call">To place a call, turn on Phone permissions.</string>

    <!-- Label of the button displayed when the call log is empty. Allows the user to make a call. -->
    <string name="recentCalls_empty_action_cm">Make a call</string>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -530,7 +530,7 @@
    <string name="search_shortcut_make_video_call">Make video call</string>

    <!-- Title for the call log list item that brings users to the full call history when clicked -->
    <string name="show_call_history">View full call history</string>
    <string name="recents_footer_text">View full call history</string>

    <!-- Number of missed calls shown on call card [CHAR LIMIT=40] -->
    <string name="num_missed_calls"><xliff:g id="number">%s</xliff:g> new missed calls</string>
+1 −1
Original line number Diff line number Diff line
@@ -440,7 +440,7 @@ public class CallLogFragment extends Fragment implements CallLogQueryHandler.Lis
        }
        mEmptyListView.setDescription(messageId);
        if (mIsRecentsFragment) {
            mEmptyListView.setActionLabel(R.string.recentCalls_empty_action);
            mEmptyListView.setActionLabel(R.string.recentCalls_empty_action_cm);
        } else {
            mEmptyListView.setActionLabel(EmptyContentView.NO_LABEL);
        }