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

Commit fb04a549 authored by Jorge Ruesga's avatar Jorge Ruesga Committed by Marco Brohet
Browse files

CMFM: Display new fso datetimes props



Add to FsoPropertiesDialog the new fso datetimes properties:
- Last accessed
- Last modified
- Last changed

Remove old fso_properties_dialog_date string from translations.

Change-Id: I881658ae0fbc6c935995ffb4ad7a02172d06bb2c
Signed-off-by: default avatarjruesga <jorge@ruesga.com>
parent b38385b5
Loading
Loading
Loading
Loading
+54 −4
Original line number Diff line number Diff line
@@ -264,22 +264,72 @@
          android:textAppearance="@style/secondary_text_appearance" />
      </TableRow>

      <!-- Date -->
      <!-- Last Accessed Time -->
      <TableRow
        android:layout_marginLeft="@dimen/extra_large_margin"
        android:layout_marginRight="@dimen/extra_large_margin" >

        <TextView
          android:id="@+id/fso_properties_date_label"
          android:id="@+id/fso_properties_last_accessed_label"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
          android:gravity="left|center_vertical"
          android:text="@string/fso_properties_dialog_date"
          android:text="@string/fso_properties_dialog_last_accessed_date"
          android:textAppearance="@style/primary_text_appearance" />

        <TextView
          android:id="@+id/fso_properties_date"
          android:id="@+id/fso_properties_last_accessed"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
          android:paddingRight="@dimen/double_margin"
          android:gravity="left|center_vertical"
          android:singleLine="false"
          android:textAppearance="@style/secondary_text_appearance" />
      </TableRow>

      <!-- Last Modified Time -->
      <TableRow
        android:layout_marginLeft="@dimen/extra_large_margin"
        android:layout_marginRight="@dimen/extra_large_margin" >

        <TextView
          android:id="@+id/fso_properties_last_modified_label"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
          android:gravity="left|center_vertical"
          android:text="@string/fso_properties_dialog_last_modified_date"
          android:textAppearance="@style/primary_text_appearance" />

        <TextView
          android:id="@+id/fso_properties_last_modified"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
          android:paddingRight="@dimen/double_margin"
          android:gravity="left|center_vertical"
          android:singleLine="false"
          android:textAppearance="@style/secondary_text_appearance" />
      </TableRow>

      <!-- Last Changed Time -->
      <TableRow
        android:layout_marginLeft="@dimen/extra_large_margin"
        android:layout_marginRight="@dimen/extra_large_margin" >

        <TextView
          android:id="@+id/fso_properties_last_changed_label"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
          android:gravity="left|center_vertical"
          android:text="@string/fso_properties_dialog_last_changed_date"
          android:textAppearance="@style/primary_text_appearance" />

        <TextView
          android:id="@+id/fso_properties_last_changed"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/default_margin"
+0 −2
Original line number Diff line number Diff line
@@ -255,8 +255,6 @@
  <string name="fso_properties_dialog_size">Velikost:</string>
  <!-- Fso Properties Dialog * Contains Label -->
  <string name="fso_properties_dialog_contains">Obsah:</string>
  <!-- Fso Properties Dialog * Date Label -->
  <string name="fso_properties_dialog_date">Poslední přístup:</string>
  <!-- Fso Properties Dialog * Owner Label -->
  <string name="fso_properties_dialog_owner">Vlastník:</string>
  <!-- Fso Properties Dialog * Group Label -->
+0 −2
Original line number Diff line number Diff line
@@ -240,8 +240,6 @@
  <string name="fso_properties_dialog_size">Størrelse:</string>
  <!-- Fso Properties Dialog * Contains Label -->
  <string name="fso_properties_dialog_contains">Indeholder:</string>
  <!-- Fso Properties Dialog * Date Label -->
  <string name="fso_properties_dialog_date">Sidst tilgået:</string>
  <!-- Fso Properties Dialog * Owner Label -->
  <string name="fso_properties_dialog_owner">Ejer:</string>
  <!-- Fso Properties Dialog * Group Label -->
+0 −2
Original line number Diff line number Diff line
@@ -244,8 +244,6 @@
  <string name="fso_properties_dialog_size">Größe:</string>
  <!-- Fso Properties Dialog * Contains Label -->
  <string name="fso_properties_dialog_contains">Beinhaltet:</string>
  <!-- Fso Properties Dialog * Date Label -->
  <string name="fso_properties_dialog_date">Letzter Zugriff:</string>
  <!-- Fso Properties Dialog * Owner Label -->
  <string name="fso_properties_dialog_owner">Besitzer:</string>
  <!-- Fso Properties Dialog * Group Label -->
+0 −2
Original line number Diff line number Diff line
@@ -252,8 +252,6 @@
  <string name="fso_properties_dialog_size">Μέγεθος:</string>
  <!-- Fso Properties Dialog * Contains Label -->
  <string name="fso_properties_dialog_contains">Περιέχει:</string>
  <!-- Fso Properties Dialog * Date Label -->
  <string name="fso_properties_dialog_date">Τελ. προσπέλαση:</string>
  <!-- Fso Properties Dialog * Owner Label -->
  <string name="fso_properties_dialog_owner">Ιδιοκτήτης:</string>
  <!-- Fso Properties Dialog * Group Label -->
Loading