Skip to content

Commit

Permalink
Merge pull request #3134 from nicbn/add_quick_description
Browse files Browse the repository at this point in the history
Adds short descriptions for quick access and recent files
  • Loading branch information
VishalNehra authored Jan 20, 2022
2 parents 1cf96e4 + 690c79c commit a7da8dd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
4 changes: 3 additions & 1 deletion app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -683,5 +683,7 @@
<string name="ftp_prompt_accept_first_start_saf_access">Dado que esta es la primera vez que ejecuta el servidor FTP y está utilizando el almacenamiento interno del dispositivo como carpeta compartida, permita que Amaze acceda al almacenamiento mediante SAF.\n\n

Solo necesita hacer esto una vez, hasta la siguiente vez que seleccione una nueva ubicación para compartir.</string>
</resources>
<string name="quick_desc">Archivos accedidos recientemente usando Amaze</string>
<string name="recent_desc">Archivos creados o modificados recientemente</string>
</resources>

4 changes: 3 additions & 1 deletion app/src/main/res/values-pt-rBR/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -666,5 +666,7 @@
<string name="clear_open_file_summary">Limpa os apps de abertura padrão selecionados</string>
<string name="legacy_listing_title">Usar listagem legada para root</string>
<string name="error_permission_denied">Permissão negada</string>
</resources>
<string name="quick_desc">Arquivos recentemente acessados pelo Amaze</string>
<string name="recent_desc">Arquivos criados ou modificados recentemente</string>
</resources>

4 changes: 3 additions & 1 deletion app/src/main/res/values-pt-rPT/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,5 +390,7 @@ Se inativa, será procurada qualquer correspondência.</string>
<string name="blue">Azul</string>
<string name="green">Verde</string>
<string name="close">Fechar</string>
</resources>
<string name="quick_desc">Ficheiros acedidos recentemente pelo Amaze</string>
<string name="recent_desc">Ficheiros recentemente criados ou modificados</string>
</resources>

2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -734,5 +734,7 @@ You only need to do this once, until the next time you select a new location for
\n\nAmaze File Manager needs this permission too. After pressing &quot;Grant&quot;here, please select <b>Allow access to manage all files</b> option on the next screen.
\n\n<font color='#ff6347'><i>Canceling this dialog will exit the app.</i></font></body></html></string>
<string name="user_apps">User apps</string>
<string name="quick_desc">Files recently accessed through Amaze</string>
<string name="recent_desc">Recently created or modified files</string>
</resources>

9 changes: 6 additions & 3 deletions app/src/main/res/xml/fastaccess_prefs.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<SwitchPreference
android:summary="@string/quick_desc"
app:defaultValue="true"
app:key="fastaccess"
app:title="@string/quick"/>
app:title="@string/quick" />
<SwitchPreference
android:summary="@string/recent_desc"
app:defaultValue="true"
app:key="recent"
app:title="@string/recent"/>
app:title="@string/recent" />
<SwitchPreference
app:defaultValue="true"
app:key="image"
Expand Down

0 comments on commit a7da8dd

Please sign in to comment.