Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Casanowow Life for love
VLC-Android
Commits
010705ea
Commit
010705ea
authored
Aug 11, 2012
by
Edward Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Translate more of the sidebar
parent
2213bc1c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
9 deletions
+14
-9
vlc-android/res/values-fr/strings.xml
vlc-android/res/values-fr/strings.xml
+4
-1
vlc-android/res/values-zh-rCN/strings.xml
vlc-android/res/values-zh-rCN/strings.xml
+4
-3
vlc-android/res/values/strings.xml
vlc-android/res/values/strings.xml
+2
-1
vlc-android/src/org/videolan/vlc/gui/SearchActivity.java
vlc-android/src/org/videolan/vlc/gui/SearchActivity.java
+1
-1
vlc-android/src/org/videolan/vlc/gui/SidebarAdapter.java
vlc-android/src/org/videolan/vlc/gui/SidebarAdapter.java
+3
-3
No files found.
vlc-android/res/values-fr/strings.xml
View file @
010705ea
...
...
@@ -10,7 +10,7 @@
<string
name=
"sortby_name"
>
Nom
</string>
<string
name=
"sortby_length"
>
Durée
</string>
<string
name=
"searchable_hint"
>
Recherche…
</string>
<string
name=
"
search_
history"
>
Historique
</string>
<string
name=
"history"
>
Historique
</string>
<plurals
name=
"search_found_results_quantity"
>
<item
quantity=
"one"
>
%d résultat trouvé
</item>
<item
quantity=
"other"
>
%d résultats trouvés
</item>
...
...
@@ -48,6 +48,9 @@
<item
quantity=
"other"
>
%d sous-répertoires
</item>
</plurals>
<string
name=
"parent_folder"
>
Répertoire parent
</string>
<string
name=
"audio"
>
Audio
</string>
<string
name=
"video"
>
Vidéo
</string>
<string
name=
"bookmarks"
>
Signets
</string>
<string
name=
"all_albums"
>
Tous les albums
</string>
<string
name=
"genres"
>
Genres
</string>
<string
name=
"playlists"
>
Listes
</string>
...
...
vlc-android/res/values-zh-rCN/strings.xml
View file @
010705ea
...
...
@@ -10,7 +10,7 @@
<string
name=
"sortby_name"
>
名称
</string>
<string
name=
"sortby_length"
>
长度
</string>
<string
name=
"searchable_hint"
>
搜索…
</string>
<string
name=
"
search_
history"
>
历史
</string>
<string
name=
"history"
>
历史
</string>
<string
name=
"search_found_results"
>
找到 %1$d 条结果
</string>
<string
name=
"show_player"
>
显示播放器
</string>
<string
name=
"hide_mini_player"
>
隐藏迷你播放器
</string>
...
...
@@ -45,10 +45,12 @@
<item
quantity=
"other"
>
%d 个子文件夹
</item>
</plurals>
<string
name=
"parent_folder"
>
转到上级目录
</string>
<string
name=
"audio"
>
音频
</string>
<string
name=
"video"
>
视频
</string>
<string
name=
"bookmarks"
>
书签
</string>
<string
name=
"all_albums"
>
所有专辑
</string>
<string
name=
"genres"
>
流派
</string>
<string
name=
"playlists"
>
播放列表
</string>
<string
name=
"time_0"
>
0:00
</string>
<string
name=
"title"
>
标题
</string>
<string
name=
"artist"
>
艺术家
</string>
<string
name=
"album"
>
专辑
</string>
...
...
@@ -115,5 +117,4 @@
<string
name=
"aout_audiotrack"
>
AudioTrack 类 (原生)
</string>
<string
name=
"aout_audiotrack_java"
>
AudioTrack 类 (Java)
</string>
<string
name=
"aout_opensles"
>
OpenSL ES
</string>
<string
name=
"error_no_neon"
>
抱歉,此版本的 VLC for Android™ 尚不支持您的设备
</string>
</resources>
vlc-android/res/values/strings.xml
View file @
010705ea
...
...
@@ -10,7 +10,7 @@
<string
name=
"sortby_name"
>
Name
</string>
<string
name=
"sortby_length"
>
Length
</string>
<string
name=
"searchable_hint"
>
Search…
</string>
<string
name=
"
search_
history"
>
History
</string>
<string
name=
"history"
>
History
</string>
<plurals
name=
"search_found_results_quantity"
>
<item
quantity=
"one"
>
%d result found
</item>
<item
quantity=
"other"
>
%d results found
</item>
...
...
@@ -52,6 +52,7 @@
<string
name=
"parent_folder"
>
Up to parent folder
</string>
<string
name=
"audio"
>
Audio
</string>
<string
name=
"video"
>
Video
</string>
<string
name=
"bookmarks"
>
Bookmarks
</string>
<string
name=
"all_albums"
>
All albums
</string>
<string
name=
"genres"
>
Genres
</string>
<string
name=
"playlists"
>
Playlists
</string>
...
...
vlc-android/src/org/videolan/vlc/gui/SearchActivity.java
View file @
010705ea
...
...
@@ -159,7 +159,7 @@ public class SearchActivity extends ListActivity {
private
void
showSearchHistory
()
{
// Add header to the history
String
headerText
=
getString
(
R
.
string
.
search_
history
);
String
headerText
=
getString
(
R
.
string
.
history
);
showListHeader
(
headerText
);
DatabaseManager
db
=
DatabaseManager
.
getInstance
(
this
);
...
...
vlc-android/src/org/videolan/vlc/gui/SidebarAdapter.java
View file @
010705ea
...
...
@@ -70,9 +70,9 @@ public class SidebarAdapter extends BaseAdapter {
new
SidebarEntry
(
"audio"
,
R
.
string
.
audio
,
R
.
drawable
.
header_icon_audio
),
new
SidebarEntry
(
"video"
,
R
.
string
.
video
,
R
.
drawable
.
header_icon_video
),
new
SidebarEntry
(
"directories"
,
R
.
string
.
directories
,
R
.
drawable
.
ic_folder
),
new
SidebarEntry
(
"history"
,
"H
istory
"
,
android
.
R
.
drawable
.
ic_menu_recent_history
),
new
SidebarEntry
(
"bookmarks"
,
"B
ookmarks
"
,
R
.
drawable
.
ic_bookmarks
),
new
SidebarEntry
(
"playlists"
,
"P
laylists
"
,
R
.
drawable
.
icon
),
new
SidebarEntry
(
"history"
,
R
.
string
.
h
istory
,
android
.
R
.
drawable
.
ic_menu_recent_history
),
new
SidebarEntry
(
"bookmarks"
,
R
.
string
.
b
ookmarks
,
R
.
drawable
.
ic_bookmarks
),
new
SidebarEntry
(
"playlists"
,
R
.
string
.
p
laylists
,
R
.
drawable
.
icon
),
};
entries
=
Arrays
.
asList
(
entries2
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment