Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[Android] Added 2nd file for French translation.
(Sorry, I didn't find how to upload 2 files at the same time in Google Code)
- Loading branch information
pascal.jouy
committed
Aug 24, 2013
1 parent
d2481aa
commit 5d9700a
Showing
1 changed file
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- All lists for ListPreference keys/values are placed here --> | ||
| <resources> | ||
|
|
||
| <!-- CPU core selection - X86 --> | ||
| <string-array name="emuCoreEntriesX86" translatable="false"> | ||
| <item>@string/interpreter</item> | ||
| <item>@string/jit64_recompiler</item> | ||
| <item>@string/jitil_recompiler</item> | ||
| </string-array> | ||
| <string-array name="emuCoreValuesX86" translatable="false"> | ||
| <item>0</item> | ||
| <item>1</item> | ||
| <item>2</item> | ||
| </string-array> | ||
|
|
||
| <!-- CPU core selection - ARM --> | ||
| <string-array name="emuCoreEntriesARM" translatable="false"> | ||
| <item>@string/interpreter</item> | ||
| <item>@string/jit_arm_recompiler</item> | ||
| </string-array> | ||
| <string-array name="emuCoreValuesARM" translatable="false"> | ||
| <item>0</item> | ||
| <item>3</item> | ||
| </string-array> | ||
|
|
||
| <!-- CPU core selection - Other --> | ||
| <string-array name="emuCoreEntriesOther" translatable="false"> | ||
| <item>@string/interpreter</item> | ||
| </string-array> | ||
| <string-array name="emuCoreValuesOther" translatable="false"> | ||
| <item>0</item> | ||
| </string-array> | ||
|
|
||
|
|
||
| <!-- Video Backend Selection - Supports OpenGL ES 3 --> | ||
| <string-array name="videoBackendEntriesGLES3" translatable="false"> | ||
| <item>@string/software_renderer</item> | ||
| <item>@string/opengl_es3</item> | ||
| </string-array> | ||
| <string-array name="videoBackendValuesGLES3" translatable="false"> | ||
| <item>Rendu logiciel</item> | ||
| <item>OGL</item> | ||
| </string-array> | ||
|
|
||
| <!-- Video Backend Selection - No OpenGL ES 3 support --> | ||
| <string-array name="videoBackendEntriesNoGLES3" translatable="false"> | ||
| <item>@string/software_renderer</item> | ||
| </string-array> | ||
| <string-array name="videoBackendValuesNoGLES3" translatable="false"> | ||
| <item>Rendu logiciel</item> | ||
| </string-array> | ||
|
|
||
|
|
||
| <!-- EFB Copy Method Preference --> | ||
| <string-array name="efbCopyMethodEntries" translatable="false"> | ||
| <item>@string/disabled</item> | ||
| <item>@string/efb_copy_texture</item> | ||
| <item>@string/efb_copy_ram_uncached</item> | ||
| <item>@string/efb_copy_ram_cached</item> | ||
| </string-array> | ||
| <string-array name="efbCopyMethodValues" translatable="false"> | ||
| <item>Désactivé</item> | ||
| <item>Texture</item> | ||
| <item>RAM (caché)</item> | ||
| <item>RAM (non caché)</item> | ||
| </string-array> | ||
|
|
||
| <!-- Texture Cache Accuracy Preference --> | ||
| <string-array name="textureCacheAccuracyEntries" translatable="false"> | ||
| <item>@string/texture_cache_accuracy_low</item> | ||
| <item>@string/texture_cache_accuracy_medium</item> | ||
| <item>@string/texture_cache_accuracy_high</item> | ||
| </string-array> | ||
| <string-array name="textureCacheAccuracyValues" translatable="false"> | ||
| <item>128</item> | ||
| <item>512</item> | ||
| <item>0</item> | ||
| </string-array> | ||
|
|
||
| <!-- External Frame Buffer Preference --> | ||
| <string-array name="externalFrameBufferEntries" translatable="false"> | ||
| <item>@string/disabled</item> | ||
| <item>@string/external_frame_buffer_virtual</item> | ||
| <item>@string/external_frame_buffer_real</item> | ||
| </string-array> | ||
| <string-array name="externalFrameBufferValues" translatable="false"> | ||
| <item>Désactivé</item> | ||
| <item>Virtuel</item> | ||
| <item>Réel</item> | ||
| </string-array> | ||
|
|
||
| <!-- Internal Resolution Preference --> | ||
| <string-array name="internalResolutionEntries" translatable="false"> | ||
| <item>Native (640x528)</item> | ||
| <item>1,5x Native (960x792)</item> | ||
| <item>2x Native (1280x1056)</item> | ||
| <item>2,5x Native (1600x1320)</item> | ||
| <item>3x Native (1920x1584)</item> | ||
| <item>4x Native (2560x2112)</item> | ||
| </string-array> | ||
| <string-array name="internalResolutionValues" translatable="false"> | ||
| <item>2</item> | ||
| <item>3</item> | ||
| <item>4</item> | ||
| <item>5</item> | ||
| <item>6</item> | ||
| <item>7</item> | ||
| </string-array> | ||
|
|
||
| <!-- Anisotropic Filtering Preference --> | ||
| <string-array name="anisotropicFilteringEntries" translatable="false"> | ||
| <item>1x</item> | ||
| <item>2x</item> | ||
| <item>4x</item> | ||
| <item>8x</item> | ||
| <item>16x</item> | ||
| </string-array> | ||
| <string-array name="anisotropicFilteringValues" translatable="false"> | ||
| <item>0</item> | ||
| <item>1</item> | ||
| <item>2</item> | ||
| <item>3</item> | ||
| <item>4</item> | ||
| </string-array> | ||
|
|
||
| </resources> |