Loading res/values/strings.xml +0 −3 Original line number Diff line number Diff line Loading @@ -68,9 +68,6 @@ <!-- Button label that copies files to the current directory [CHAR LIMIT=24] --> <string name="button_copy">Copy</string> <!-- Action mode title summarizing the number of documents selected [CHAR LIMIT=32] --> <string name="mode_selected_count"><xliff:g id="count" example="3">%1$d</xliff:g> selected</string> <!-- Mode that sorts documents by their display name alphabetically [CHAR LIMIT=24] --> <string name="sort_name">By name</string> <!-- Mode that sorts documents by their last modified time in descending order; most recent first [CHAR LIMIT=24] --> Loading src/com/android/documentsui/DirectoryFragment.java +3 −4 Original line number Diff line number Diff line Loading @@ -54,6 +54,7 @@ import android.os.OperationCanceledException; import android.os.Parcelable; import android.provider.DocumentsContract; import android.provider.DocumentsContract.Document; import android.text.TextUtils; import android.text.format.DateUtils; import android.text.format.Formatter; import android.text.format.Time; Loading Loading @@ -474,8 +475,7 @@ public class DirectoryFragment extends Fragment { @Override public boolean onCreateActionMode(ActionMode mode, Menu menu) { mode.getMenuInflater().inflate(R.menu.mode_directory, menu); mode.setTitle(getResources() .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount())); mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount())); return true; } Loading Loading @@ -571,8 +571,7 @@ public class DirectoryFragment extends Fragment { } } mode.setTitle(getResources() .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount())); mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount())); } }; Loading Loading
res/values/strings.xml +0 −3 Original line number Diff line number Diff line Loading @@ -68,9 +68,6 @@ <!-- Button label that copies files to the current directory [CHAR LIMIT=24] --> <string name="button_copy">Copy</string> <!-- Action mode title summarizing the number of documents selected [CHAR LIMIT=32] --> <string name="mode_selected_count"><xliff:g id="count" example="3">%1$d</xliff:g> selected</string> <!-- Mode that sorts documents by their display name alphabetically [CHAR LIMIT=24] --> <string name="sort_name">By name</string> <!-- Mode that sorts documents by their last modified time in descending order; most recent first [CHAR LIMIT=24] --> Loading
src/com/android/documentsui/DirectoryFragment.java +3 −4 Original line number Diff line number Diff line Loading @@ -54,6 +54,7 @@ import android.os.OperationCanceledException; import android.os.Parcelable; import android.provider.DocumentsContract; import android.provider.DocumentsContract.Document; import android.text.TextUtils; import android.text.format.DateUtils; import android.text.format.Formatter; import android.text.format.Time; Loading Loading @@ -474,8 +475,7 @@ public class DirectoryFragment extends Fragment { @Override public boolean onCreateActionMode(ActionMode mode, Menu menu) { mode.getMenuInflater().inflate(R.menu.mode_directory, menu); mode.setTitle(getResources() .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount())); mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount())); return true; } Loading Loading @@ -571,8 +571,7 @@ public class DirectoryFragment extends Fragment { } } mode.setTitle(getResources() .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount())); mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount())); } }; Loading