Compare commits

...

10 Commits
1.14 ... 1.15

Author SHA1 Message Date
tibbi
290c06d75c updating changelog 2016-07-15 23:07:56 +02:00
tibbi
61b3497b59 update version to 15 (1.15) 2016-07-15 23:07:48 +02:00
tibbi
7427f266a7 properly highlight the items that are going to be deleted 2016-07-15 23:07:21 +02:00
tibbi
7b47da40c3 remove the strings that arent supposed to be translated 2016-07-15 22:51:17 +02:00
tibbi
d3168fe1f1 Merge branch 'master' of github.com:SimpleMobileTools/Simple-Gallery 2016-07-15 22:46:55 +02:00
tibbi
7aed3a846f mark some strings as not to be translated 2016-07-15 22:46:40 +02:00
Tibor Kaputa
1462068cd0 Merge pull request #8 from naofum/master
Added Japanese translation
2016-07-15 22:45:48 +02:00
Tibor Kaputa
5e76c2189d Merge pull request #7 from anthologist/master
Add italian translation
2016-07-15 22:45:44 +02:00
naofum
d649c5bb51 Added Japanese translation 2016-07-16 00:10:20 +09:00
anthologist
8be07f3eff Create strings.xml 2016-07-14 15:16:56 +02:00
9 changed files with 144 additions and 16 deletions

View File

@@ -1,6 +1,14 @@
Changelog
==========
Version 1.15 *(2016-07-15)*
----------------------------
* Use the proper action at clicking the Camera
* Remove a bug with duplidate listing of the app at opening images
* Add Italian and Japanese translations
* Properly highlight the selected items at delete
Version 1.14 *(2016-07-13)*
----------------------------

View File

@@ -9,8 +9,8 @@ android {
applicationId "com.simplemobiletools.gallery"
minSdkVersion 16
targetSdkVersion 23
versionCode 14
versionName "1.14"
versionCode 15
versionName "1.15"
}
signingConfigs {

View File

@@ -33,7 +33,7 @@ public class MediaAdapter extends BaseAdapter {
final Medium medium = mMedia.get(position);
ViewHolder viewHolder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.video_item, parent, false);
convertView = mInflater.inflate(R.layout.photo_video_item, parent, false);
viewHolder = new ViewHolder(convertView);
convertView.setTag(viewHolder);
} else {

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector"/>

View File

@@ -3,13 +3,9 @@
android:id="@+id/media_item_holder"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector">
android:layout_height="match_parent">
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<include layout="@layout/photo_video_tmb"/>
<ImageView
android:id="@+id/play_outline"

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<merge>
<FrameLayout
android:id="@+id/medium_thumbnail_holder"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector">
<com.simplemobiletools.gallery.MyImageView
android:id="@+id/medium_thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
</merge>

View File

@@ -0,0 +1,50 @@
<resources>
<string name="app_name">Simple Gallery</string>
<string name="share_via">Condividi via</string>
<string name="no_permissions">Non c\'è molto da fare in una galleria senza l\'accesso all\'archiviazione</string>
<string name="delete">Elimina</string>
<string name="deleting">Eliminazione</string>
<string name="edit">Modifica</string>
<string name="undo">Annulla</string>
<string name="share">Condividi</string>
<string name="rename_file">Rinomina file</string>
<string name="rename_folder">Rinomina cartella</string>
<string name="rename_file_error">Impossibile rinominare il file</string>
<string name="rename_file_empty">Il nome del file non deve essere vuoto</string>
<string name="rename_folder_error">Impossibile rinominare la cartella</string>
<string name="rename_folder_empty">Il nome della cartella non deve essere vuoto</string>
<string name="rename_folder_ok">Cartella rinominata correttamente</string>
<string name="renaming_folder">Rinominazione cartella</string>
<string name="extension">Estensione</string>
<string name="file_deleted">File eliminato</string>
<string name="setting_wallpaper">Impostazione sfondo</string>
<string name="open_camera">Apri fotocamera</string>
<string name="unknown_error">Riscontrato un errore sconosciuto</string>
<plurals name="folders_deleted">
<item quantity="one">1 cartella eliminata</item>
<item quantity="other">%1$d cartelle eliminate</item>
</plurals>
<plurals name="files_deleted">
<item quantity="one">1 file eliminato</item>
<item quantity="other">%1$d file eliminati</item>
</plurals>
<!-- About -->
<string name="about">Informazioni</string>
<string name="website">Altre semplici app e codici sorgenti in:\nhttp://simplemobiletools.com</string>
<string name="email_label">Invia la tua opinione o i tuoi suggerimenti a:</string>
<string name="third_party_licences_underlined"><u>Licenze di terze parti</u></string>
<string name="rate_us_underlined"><u>Dacci un voto sul Play Store</u></string>
<string name="follow_us">Seguici:</string>
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
<!--License-->
<string name="notice">Questa app usa le seguenti librerie di terze parti per semplificarmi la vita. Grazie.</string>
<string name="third_party_licences">Licenze di terze parti</string>
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>
<string name="photoview_title"><u>PhotoView (zoomable imageviews)</u></string>
<string name="glide_title"><u>Glide (image loading and caching)</u></string>
</resources>

View File

@@ -0,0 +1,50 @@
<resources>
<string name="app_name">シンプル ギャラリー</string>
<string name="share_via">共有...</string>
<string name="no_permissions">ストレージにアクセスしないとギャラリーでできることはほとんどありません</string>
<string name="delete">削除</string>
<string name="deleting">削除中</string>
<string name="edit">編集</string>
<string name="undo">元に戻す</string>
<string name="share">共有</string>
<string name="rename_file">ファイルの名前を変更</string>
<string name="rename_folder">フォルダーの名前を変更</string>
<string name="rename_file_error">ファイルの名前を変更できませんでした</string>
<string name="rename_file_empty">ファイル名は空にできません</string>
<string name="rename_folder_error">フォルダーの名前を変更できませんでした</string>
<string name="rename_folder_empty">フォルダー名は空にできません</string>
<string name="rename_folder_ok">フォルダーの名前を正常に変更しました</string>
<string name="renaming_folder">フォルダーの名前を変更中</string>
<string name="extension">拡張</string>
<string name="file_deleted">ファイルを削除しました</string>
<string name="setting_wallpaper">壁紙の設定</string>
<string name="open_camera">カメラを開く</string>
<string name="unknown_error">不明なエラーが発生しました</string>
<plurals name="folders_deleted">
<item quantity="one">1 フォルダーを削除しました</item>
<item quantity="other">%1$d フォルダーを削除しました</item>
</plurals>
<plurals name="files_deleted">
<item quantity="one">1 ファイルを削除しました</item>
<item quantity="other">%1$d ファイルを削除しました</item>
</plurals>
<!-- About -->
<string name="about">アプリについて</string>
<string name="website">もっとシンプルなアプリとソースコードは:\nhttp://simplemobiletools.com</string>
<string name="email_label">ご意見やご提案をお送りください:</string>
<string name="third_party_licences_underlined"><u>サードパーティー ライセンス</u></string>
<string name="rate_us_underlined"><u>Play ストアで評価してください</u></string>
<string name="follow_us">フォローしてください:</string>
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
<!--License-->
<string name="notice">このアプリは、私の人生を容易にするために、次のサードパーティのライブラリーを使用しています。 ありがとうございます。</string>
<string name="third_party_licences">サードパーティー ライセンス</string>
<string name="butterknife_title"><u>Butter Knife (ビュー インジェクター)</u></string>
<string name="photoview_title"><u>PhotoView (ズーム可能イメージビュー)</u></string>
<string name="glide_title"><u>Glide (イメージ ローディングとキャッシング)</u></string>
</resources>

View File

@@ -35,7 +35,7 @@
<string name="about">About</string>
<string name="website">More simple apps and source code at:\nhttp://simplemobiletools.com</string>
<string name="email_label">Send your feedback or suggestions to:</string>
<string name="email">hello@simplemobiletools.com</string>
<string name="email" translatable="false">hello@simplemobiletools.com</string>
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
<string name="rate_us_underlined"><u>Rate us in the Play Store</u></string>
<string name="follow_us">Follow us:</string>
@@ -45,13 +45,13 @@
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
<string name="third_party_licences">Third party licences</string>
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>
<string name="butterknife_text">Copyright 2013 Jake Wharton\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
<string name="butterknife_url">https://github.com/JakeWharton/butterknife</string>
<string name="butterknife_text" translatable="false">Copyright 2013 Jake Wharton\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
<string name="butterknife_url" translatable="false">https://github.com/JakeWharton/butterknife</string>
<string name="photoview_title"><u>PhotoView (zoomable imageviews)</u></string>
<string name="photoview_text">Copyright 2011,2012 Chris Banes\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
<string name="photoview_url">https://github.com/chrisbanes/PhotoView</string>
<string name="photoview_text" translatable="false">Copyright 2011,2012 Chris Banes\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
<string name="photoview_url" translatable="false">https://github.com/chrisbanes/PhotoView</string>
<string name="glide_title"><u>Glide (image loading and caching)</u></string>
<string name="glide_text">Copyright 2014 Google, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY GOOGLE, INC. ``AS IS\'\' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
<string name="glide_url">https://github.com/bumptech/glide</string>
<string name="glide_text" translatable="false">Copyright 2014 Google, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY GOOGLE, INC. ``AS IS\'\' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
<string name="glide_url" translatable="false">https://github.com/bumptech/glide</string>
</resources>