Version 1.13
This commit is contained in:
Binary file not shown.
After Width: | Height: | Size: 875 B |
Binary file not shown.
After Width: | Height: | Size: 596 B |
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
@@ -26,5 +26,5 @@
|
||||
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition_holo_dark" />
|
||||
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition_holo_dark" />
|
||||
<item android:state_focused="true" android:drawable="@color/navigation_drawer_button_inverted" />
|
||||
<item android:drawable="@color/navigation_drawer_button_inverted" />
|
||||
<item android:drawable="@android:color/transparent" />
|
||||
</selector>
|
||||
|
@@ -1,149 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:gravity="center"
|
||||
tools:context=".activity.PreferenceAbout">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="100dp"
|
||||
android:id="@+id/imageView"
|
||||
android:src="@drawable/ic_launcher"
|
||||
android:layout_marginTop="10dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/nome_app_turbo_editor"
|
||||
android:textSize="22sp"
|
||||
android:textStyle="bold"
|
||||
android:layout_marginTop="10dp"
|
||||
android:padding="10dp"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/changelog_text"
|
||||
android:textSize="14sp"
|
||||
android:textStyle="bold"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/send_feedback"
|
||||
android:textSize="18sp"
|
||||
android:textAllCaps="true"
|
||||
android:padding="15dp"
|
||||
android:textColor="@color/indigo"
|
||||
android:textStyle="bold"
|
||||
android:layout_marginTop="20dp"
|
||||
android:onClick="SendFeedback"
|
||||
android:clickable="true"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:gravity="center"
|
||||
android:minWidth="200dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/translate_the_app"
|
||||
android:id="@+id/textView4"
|
||||
android:textSize="18sp"
|
||||
android:textAllCaps="true"
|
||||
android:padding="15dp"
|
||||
android:textColor="@color/indigo"
|
||||
android:textStyle="bold"
|
||||
android:onClick="OpenTranslatePage"
|
||||
android:clickable="true"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:gravity="center"
|
||||
android:minWidth="200dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/pro_version"
|
||||
android:id="@+id/pro_version_text"
|
||||
android:textSize="18sp"
|
||||
android:textAllCaps="true"
|
||||
android:padding="15dp"
|
||||
android:textColor="@color/indigo"
|
||||
android:textStyle="bold"
|
||||
android:onClick="GoToProVersion"
|
||||
android:clickable="true"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:gravity="center"
|
||||
android:minWidth="200dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="10dp"
|
||||
android:layout_marginTop="15dp"
|
||||
>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:id="@+id/imageView5"
|
||||
android:src="@drawable/ic_action_mail"
|
||||
android:onClick="SendMail"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:id="@+id/imageView8"
|
||||
android:layout_marginStart="15dp"
|
||||
android:layout_marginEnd="15dp"
|
||||
android:src="@drawable/ic_action_google_play"
|
||||
android:onClick="OpenPlayStore"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:id="@+id/imageView4"
|
||||
android:layout_marginEnd="15dp"
|
||||
android:layout_marginRight="15dp"
|
||||
android:src="@drawable/ic_action_gplus"
|
||||
android:onClick="OpenGooglePlusCommunity"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:id="@+id/imageView6"
|
||||
android:src="@drawable/ic_action_github"
|
||||
android:onClick="OpenGithub"
|
||||
android:background="@drawable/item_background_holo_dark"
|
||||
android:scaleType="fitCenter" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
@@ -25,14 +25,81 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@id/fragment_editor"
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:textSize="@dimen/text_size_mega_title"
|
||||
android:fontFamily="sans-serif-light"
|
||||
android:text="@string/open_a_file"
|
||||
android:background="@null"
|
||||
android:textColor="@android:color/secondary_text_dark"
|
||||
android:id="@id/no_file_opened_messagge"/>
|
||||
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@id/text_editor"
|
||||
android:visibility="gone">
|
||||
|
||||
<sharedcode.turboeditor.views.GoodScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:scrollbars="vertical"
|
||||
android:fillViewport="true"
|
||||
android:id="@id/vertical_scroll"
|
||||
android:background="@null">
|
||||
|
||||
<HorizontalScrollView
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:scrollbars="horizontal"
|
||||
android:fillViewport="true"
|
||||
android:id="@id/horizontal_scroll"
|
||||
android:background="@null">
|
||||
|
||||
<view
|
||||
class="sharedcode.turboeditor.activity.BaseHomeActivity$Editor"
|
||||
android:id="@id/editor"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:bufferType="spannable"
|
||||
android:textCursorDrawable="@null"
|
||||
android:cursorVisible="true"
|
||||
android:gravity="top|start"
|
||||
android:singleLine="false"
|
||||
android:background="@null"
|
||||
android:text=""
|
||||
android:textIsSelectable="true" />
|
||||
</HorizontalScrollView>
|
||||
</sharedcode.turboeditor.views.GoodScrollView>
|
||||
|
||||
<com.faizmalkani.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabNext"
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_gravity="bottom|right"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:visibility="invisible"/>
|
||||
|
||||
<com.faizmalkani.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabPrev"
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_gravity="bottom|right"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginRight="100dp"
|
||||
android:layout_marginEnd="90dp"
|
||||
android:visibility="invisible"/>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
<fragment android:layout_width="@dimen/navigation_drawer_width"
|
||||
android:layout_height="match_parent"
|
||||
android:name="sharedcode.turboeditor.fragment.NavigationDrawerListFragment"
|
||||
android:name="sharedcode.turboeditor.fragment.NavigationDrawer"
|
||||
android:id="@id/drawer_files"
|
||||
android:layout_gravity="start"
|
||||
tools:layout="@layout/fragment_navigation_drawer"
|
||||
|
@@ -28,11 +28,7 @@
|
||||
android:id="@android:id/list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:smoothScrollbar="true"
|
||||
android:paddingStart="@dimen/activity_horizontal_margin"
|
||||
android:paddingEnd="@dimen/activity_horizontal_margin"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"/>
|
||||
android:smoothScrollbar="true"/>
|
||||
|
||||
<com.faizmalkani.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabbutton"
|
||||
|
42
libraries/sharedCode/src/main/res/layout/dialog.xml
Normal file
42
libraries/sharedCode/src/main/res/layout/dialog.xml
Normal file
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Copyright (C) 2014 AChep@xda <artemchep@gmail.com>
|
||||
~
|
||||
~ This program is free software; you can redistribute it and/or
|
||||
~ modify it under the terms of the GNU General Public License
|
||||
~ as published by the Free Software Foundation; either version 2
|
||||
~ of the License, or (at your option) any later version.
|
||||
~
|
||||
~ This program is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program; if not, write to the Free Software
|
||||
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
~ MA 02110-1301, USA.
|
||||
-->
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingStart="@dimen/activity_horizontal_margin"
|
||||
android:paddingEnd="@dimen/activity_horizontal_margin"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/message"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
style="?textAppearanceDialogMessage" />
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
@@ -19,7 +19,7 @@
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
|
42
libraries/sharedCode/src/main/res/layout/dialog_skeleton.xml
Normal file
42
libraries/sharedCode/src/main/res/layout/dialog_skeleton.xml
Normal file
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Copyright (C) 2014 AChep@xda <artemchep@gmail.com>
|
||||
~
|
||||
~ This program is free software; you can redistribute it and/or
|
||||
~ modify it under the terms of the GNU General Public License
|
||||
~ as published by the Free Software Foundation; either version 2
|
||||
~ of the License, or (at your option) any later version.
|
||||
~
|
||||
~ This program is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program; if not, write to the Free Software
|
||||
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
~ MA 02110-1301, USA.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="?android:dividerHorizontal"
|
||||
android:showDividers="middle"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:minHeight="48dp"
|
||||
style="?textAppearanceDialogTitle"/>
|
||||
|
||||
</LinearLayout>
|
89
libraries/sharedCode/src/main/res/layout/donation_dialog.xml
Normal file
89
libraries/sharedCode/src/main/res/layout/donation_dialog.xml
Normal file
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/info"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
android:paddingStart="@dimen/activity_horizontal_margin"
|
||||
android:paddingEnd="@dimen/activity_horizontal_margin"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
style="?textAppearanceDialogMessage"/>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/error"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
||||
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:layout_gravity="center"
|
||||
android:maxWidth="200dp"
|
||||
android:background="?android:listChoiceBackgroundIndicator"
|
||||
android:drawablePadding="4dp"
|
||||
android:padding="8dp"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:textStyle="italic"
|
||||
android:gravity="center_horizontal" />
|
||||
|
||||
<ProgressBar
|
||||
android:id="@android:id/progress"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
||||
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:layout_gravity="center"
|
||||
android:padding="8dp" />
|
||||
|
||||
<GridView
|
||||
android:id="@+id/grid"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingStart="@dimen/activity_horizontal_margin"
|
||||
android:paddingEnd="@dimen/activity_horizontal_margin"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:scrollbarStyle="outsideOverlay"
|
||||
android:stretchMode="columnWidth"
|
||||
android:numColumns="auto_fit" />
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
~ Copyright (C) 2014 AChep@xda <artemchep@gmail.com>
|
||||
~
|
||||
~ This program is free software; you can redistribute it and/or
|
||||
~ modify it under the terms of the GNU General Public License
|
||||
~ as published by the Free Software Foundation; either version 2
|
||||
~ of the License, or (at your option) any later version.
|
||||
~
|
||||
~ This program is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program; if not, write to the Free Software
|
||||
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
~ MA 02110-1301, USA.
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="48dp"
|
||||
android:padding="8dip"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="54sp"
|
||||
android:fontFamily="sans-serif-light"
|
||||
android:textSize="32sp"
|
||||
android:textColor="@color/donation_normal"/>
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="4dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"/>
|
||||
|
||||
</LinearLayout>
|
@@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<sharedcode.turboeditor.views.GoodScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:scrollbars="vertical"
|
||||
android:fillViewport="true"
|
||||
android:id="@id/vertical_scroll"
|
||||
android:background="@null">
|
||||
|
||||
<HorizontalScrollView
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:scrollbars="horizontal"
|
||||
android:fillViewport="true"
|
||||
android:id="@id/horizontal_scroll"
|
||||
android:background="@null">
|
||||
|
||||
<view
|
||||
class="sharedcode.turboeditor.fragment.EditorFragment$Editor"
|
||||
android:id="@id/editor"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:bufferType="spannable"
|
||||
android:textCursorDrawable="@null"
|
||||
android:cursorVisible="true"
|
||||
android:gravity="top|start"
|
||||
android:singleLine="false"
|
||||
android:background="@null"
|
||||
android:text=""
|
||||
android:textIsSelectable="true" />
|
||||
</HorizontalScrollView>
|
||||
</sharedcode.turboeditor.views.GoodScrollView>
|
||||
|
||||
<com.faizmalkani.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabNext"
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_gravity="bottom|right"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:visibility="invisible"/>
|
||||
|
||||
<com.faizmalkani.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabPrev"
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_gravity="bottom|right"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginRight="100dp"
|
||||
android:layout_marginEnd="90dp"
|
||||
android:visibility="invisible"/>
|
||||
|
||||
</FrameLayout>
|
@@ -31,16 +31,11 @@
|
||||
android:orientation="vertical"
|
||||
>
|
||||
|
||||
<View
|
||||
android:background="@color/divider_inverted"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/line_dimension"/>
|
||||
|
||||
<TextView
|
||||
android:id="@id/drawer_button_go_pro"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="72dp"
|
||||
android:text="@string/pro_version"
|
||||
android:text="@string/donate"
|
||||
android:paddingStart="20dp"
|
||||
android:paddingEnd="20dp"
|
||||
android:paddingLeft="20dp"
|
||||
|
@@ -20,6 +20,13 @@
|
||||
|
||||
<changelog bulletedList="true">
|
||||
|
||||
<changelogversion versionName="1.13" changeDate="Oct 17, 2014">
|
||||
<changelogtext>Turbo Editor is a free and open source app. Now you can show your appreciation and support development by donating :)</changelogtext>
|
||||
<changelogtext>New visual changes</changelogtext>
|
||||
<changelogtext>New save dialog when you are about to close a file</changelogtext>
|
||||
<changelogtext>Many enchantments and fixes</changelogtext>
|
||||
</changelogversion>
|
||||
|
||||
<changelogversion versionName="1.12" changeDate="Oct 9, 2014">
|
||||
<changelogtext>Many enchantments and fixes</changelogtext>
|
||||
</changelogversion>
|
||||
|
@@ -20,7 +20,6 @@
|
||||
<resources>
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">64dp</dimen>
|
||||
<dimen name="activity_vertical_margin">64dp</dimen>
|
||||
|
||||
<!-- Per the design guidelines, navigation drawers should be between 240dp and 320dp:
|
||||
https://developer.android.com/design/patterns/navigation-drawer.html -->
|
@@ -18,12 +18,12 @@
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:textSize="@dimen/text_size_mega_title"
|
||||
android:fontFamily="sans-serif-light"
|
||||
android:text="@string/open_a_file"
|
||||
android:background="@null"
|
||||
android:textColor="@android:color/secondary_text_dark"/>
|
||||
<resources>
|
||||
<declare-styleable name="Theme">
|
||||
|
||||
<!-- Dialog styles -->
|
||||
<attr name="textAppearanceDialogTitle" format="reference"/>
|
||||
<attr name="textAppearanceDialogMessage" format="reference"/>
|
||||
<attr name="textAppearanceDialogInfo" format="reference"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
@@ -61,4 +61,7 @@
|
||||
<color name="item_selected">#40969696</color>
|
||||
<color name="gradient_start">#50000000</color>
|
||||
<color name="gradient_light_start">#30000000</color>
|
||||
|
||||
<color name="donation_normal">#b6cc45</color>
|
||||
<color name="donation_purchased">#DFED47</color>
|
||||
</resources>
|
@@ -19,8 +19,8 @@
|
||||
|
||||
<resources>
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">0dp</dimen>
|
||||
<dimen name="activity_vertical_margin">0dp</dimen>
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
|
||||
<!-- Per the design guidelines, navigation drawers should be between 240dp and 320dp:
|
||||
https://developer.android.com/design/patterns/navigation-drawer.html -->
|
||||
|
@@ -50,7 +50,6 @@
|
||||
<item type="id" name="im_donate_a_coffee"/>
|
||||
<!-- layout item ids -->
|
||||
<item type="id" name="drawer_layout"/>
|
||||
<item type="id" name="fragment_editor"/>
|
||||
<item type="id" name="editor"/>
|
||||
<item type="id" name="vertical_scroll"/>
|
||||
<item type="id" name="horizontal_scroll"/>
|
||||
@@ -59,6 +58,9 @@
|
||||
<item type="id" name="drawer_settings"/>
|
||||
<item type="id" name="button_remove_from_list"/>
|
||||
|
||||
<item type="id" name="text_editor"/>
|
||||
<item type="id" name="no_file_opened_messagge"/>
|
||||
|
||||
<item type="id" name="regex_check"/>
|
||||
<item type="id" name="replace_check"/>
|
||||
<item type="id" name="match_case_check"/>
|
||||
|
@@ -30,7 +30,8 @@
|
||||
<string name="file">File</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="light_theme">Light Theme</string>
|
||||
<string name="goto_line">Go to Line</string>
|
||||
<string name="goto_line">Go to Line…</string>
|
||||
<string name="goto_page">Go to Page…</string>
|
||||
<string name="find">Find</string>
|
||||
<string name="replace">Replace</string>
|
||||
<string name="share">Share</string>
|
||||
@@ -46,12 +47,11 @@
|
||||
<string name="previous">Previous</string>
|
||||
<string name="please_wait">Please wait…</string>
|
||||
<string name="occurrences_found">%s occurrences was found</string>
|
||||
<string name="app_version">Version %s</string>
|
||||
<string name="app_version_new">v%s</string>
|
||||
<string name="translate_the_app">Translate</string>
|
||||
<string name="changelog">Changelog</string>
|
||||
<string name="match_case">Match case</string>
|
||||
<string name="long_click_for_more_options">Long click for more options</string>
|
||||
<string name="pro_version">Pro version</string>
|
||||
<string name="auto_save">Auto save</string>
|
||||
<string name="read_only">Read only</string>
|
||||
<string name="send_error_reports">Send error reports</string>
|
||||
@@ -59,116 +59,18 @@
|
||||
<string name="split_text_if_too_long">Split the text if too long</string>
|
||||
<string name="ignore_back_button">Ignore back button</string>
|
||||
<string name="donate">Donate</string>
|
||||
<!-- turbo client -->
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
<string name="cancellazione">Deleting files…</string>
|
||||
<string name="caricamento">Loading…</string>
|
||||
<string name="cartella_locale_corrente">Current local folder</string>
|
||||
<string name="chiave_privata">Private Key</string>
|
||||
<string name="chiaro">Light</string>
|
||||
<string name="codifica">Encoding</string>
|
||||
<string name="condividi">Share</string>
|
||||
<string name="crea_cartella_locale">New local folder</string>
|
||||
<string name="crea_cartella_remota">New remote folder</string>
|
||||
<string name="crea_file_remoto">New remote file</string>
|
||||
<string name="new_local_file">New local file</string>
|
||||
<string name="disconneti">Disconnect</string>
|
||||
<string name="default_local_folder">Default local folder</string>
|
||||
<string name="dove_scaricare">Where to download?</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download_completato">Download completed</string>
|
||||
<string name="duplicate">Duplicate</string>
|
||||
<string name="fatto">Done</string>
|
||||
<string name="home">Home</string>
|
||||
<string name="host">Host</string>
|
||||
<string name="info">Info</string>
|
||||
<string name="locale">Local</string>
|
||||
<string name="log_in">Logging in…</string>
|
||||
<string name="modifica">Edit</string>
|
||||
<string name="muovi">Move</string>
|
||||
<string name="nascondi">Hide</string>
|
||||
<string name="nome_app">Turbo Client</string>
|
||||
<string name="nome_app_turbo_editor">Turbo Editor</string>
|
||||
<string name="nome_utente">Username</string>
|
||||
<string name="passiva">Passive</string>
|
||||
<string name="passphrase">Passphrase</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="password_summary">Leave it empty to prompt for it every session</string>
|
||||
<string name="porta">Port</string>
|
||||
<string name="preferenze">Preferences</string>
|
||||
<string name="remoto">Remote</string>
|
||||
<string name="riavva_per_tema">To change the theme, restart the application</string>
|
||||
<string name="rinomina">Rename</string>
|
||||
<string name="root">Default remote folder</string>
|
||||
<string name="salva">Save</string>
|
||||
<string name="scuro">Dark</string>
|
||||
<string name="seleziona">Select</string>
|
||||
<string name="seleziona_account">Select an account</string>
|
||||
<string name="sicuro">Are you sure?</string>
|
||||
<string name="something_failed">Something failed</string>
|
||||
<string name="skip_same_file">Do not transfer same file</string>
|
||||
<string name="tema_app">App theme</string>
|
||||
<string name="tipo_connessione">Connection type</string>
|
||||
<string name="tipo_protocollo">Protocol type</string>
|
||||
<string name="un_altra_cartella">Another folder</string>
|
||||
<string name="use_passphrase">Use a passphrase</string>
|
||||
<string name="upload">Upload</string>
|
||||
<string name="upload_completato">Upload completed</string>
|
||||
<string name="what_to_do">What do you want to do?</string>
|
||||
<string name="menu_syntax_highlight">Syntax highlight</string>
|
||||
<string name="testo_indietro">Undo</string>
|
||||
<string name="testo_rifai">Redo</string>
|
||||
<string name="sync">Sync</string>
|
||||
<string name="remote_folder_to_sync">Remote folder to sync</string>
|
||||
<string name="local_folder_to_sync">Local folder to sync</string>
|
||||
<string name="vota">Rate</string>
|
||||
<string name="inapp_unavailable">Cannot contact Google Play</string>
|
||||
<string name="inapp_description">Support the development of other great features.</string>
|
||||
<string name="upgrade_premium">Upgrade to Premium</string>
|
||||
<string name="upgrade_premium_summary">Upgrade to Premium and support the development of Turbo Client!</string>
|
||||
<string name="download_unlocked_version">Download unlocked version</string>
|
||||
<string name="inapp_second_description">What is Turbo Client worth to you? Set your price! </string>
|
||||
<string name="inapp_first_description">Upgrade to unlock this features:</string>
|
||||
<string name="inapp_item_openandeditfiles">Power to open and modify any type of file.</string>
|
||||
<string name="inapp_item_backup_service">Backup service to backup and restore your data safely. </string>
|
||||
<string name="inapp_unlock_features">Unlock the Premium features</string>
|
||||
<string name="inapp_seconditem_description">I really like this app!</string>
|
||||
<string name="inapp_thirditem_description">I love this app!</string>
|
||||
<string name="backup_accounts">Backup the accounts</string>
|
||||
<string name="restore_accounts">Restore the accounts</string>
|
||||
<string name="share_accounts">Backup and share the accounts</string>
|
||||
<string name="importing_accounts">Importing the accounts…</string>
|
||||
<string name="exporting_accounts">Exporting the accounts...</string>
|
||||
<string name="backup_not_found">No backups found</string>
|
||||
<string name="err_cant_open_the_file">Cannot open the file</string>
|
||||
<string name="err_temp_folder_doesnt_exist">Temporary folder does not exist</string>
|
||||
<string name="err_occured">An error occurred</string>
|
||||
<string name="ui_ux">UI</string>
|
||||
<string name="remove">Remove</string>
|
||||
<string name="modification_date">Modification date</string>
|
||||
<string name="name">Name</string>
|
||||
<string name="size">Size</string>
|
||||
<string name="sort">Sort</string>
|
||||
<string name="open">Open</string>
|
||||
<string name="file_modified">The file %1$s was modified, do you want to upload it?</string>
|
||||
<string name="file_saved_with_success">The file %1$s was saved with success!</string>
|
||||
<string name="create_new_account">Create a new account</string>
|
||||
<string name="create_new_account_to_start">Create a new account to start.</string>
|
||||
<string name="type">Type</string>
|
||||
<string name="send_feedback">Send feedback</string>
|
||||
<string name="copy_url">Copy URL</string>
|
||||
<string name="cut">Cut</string>
|
||||
<string name="paste">paste</string>
|
||||
<string name="advanced">Advanced</string>
|
||||
<string name="auto">Auto</string>
|
||||
<string name="bytes">Bytes</string>
|
||||
<string name="unit_measurement_for_file_size">Unit of measurement for file size</string>
|
||||
<string name="open_source_license">Open Source licenses</string>
|
||||
<string name="open_source_license_summary">Show open source licenses</string>
|
||||
<string name="open_a_file">Open a file</string>
|
||||
<string name="open_this_time_only">Open this time only</string>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="no">No</string>
|
||||
|
||||
</resources>
|
||||
|
40
libraries/sharedCode/src/main/res/values/strings_dialogs.xml
Normal file
40
libraries/sharedCode/src/main/res/values/strings_dialogs.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<string name="close">Close</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about_action">About</string>
|
||||
<string name="about_title" translatable="false"><![CDATA[
|
||||
<b>%1$s</b> <font color="#888888">v%2$s</font>
|
||||
]]></string>
|
||||
<string name="about_message"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
|
||||
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
|
||||
<br/>
|
||||
Many thanks to all who
|
||||
<a href="http://crowdin.net/project/turbo-client">helped with translations</a> or
|
||||
donated to me</a>.<br/>
|
||||
<br/>
|
||||
If you want to send feedback here is the <a href="http://forum.xda-developers.com/android/apps-games/app-turbo-editor-text-editor-t2832016">XDA thread</a>
|
||||
]]></string>
|
||||
|
||||
</resources>
|
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
|
||||
<string name="donation_action">Donate</string>
|
||||
<string name="donation_title">Donate to developer</string>
|
||||
<string name="donation_info"><![CDATA[
|
||||
Turbo Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor/">open source</a> app.
|
||||
You can show your appreciation and support development by donating:
|
||||
]]></string>
|
||||
|
||||
<string name="donation_item_label" translatable="false">﹩%1$s</string>
|
||||
<string name="donation_item_bought">You\'ve donated for this item already.</string>
|
||||
|
||||
<string name="donation_2">An ice cream</string>
|
||||
<string name="donation_4">Cup of coffee</string>
|
||||
<string name="donation_10">Electricity bills</string>
|
||||
<string name="donation_20">The right pillow</string>
|
||||
<string name="donation_50">Solid-state drive</string>
|
||||
<string name="donation_99">Sound system</string>
|
||||
|
||||
<string name="donation_error_iab_setup">Failed to setup in-app-billing service!</string>
|
||||
<string name="donation_no_responsibility">Notice that Google is not responsible for that payments method.</string>
|
||||
|
||||
<string name="paypal" translatable="false">PayPal</string>
|
||||
|
||||
</resources>
|
@@ -0,0 +1,104 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2014 Vlad Mihalachi
|
||||
~
|
||||
~ This file is part of Turbo Editor.
|
||||
~
|
||||
~ Turbo Editor is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Turbo Editor is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string name="change_list_type">Change the list type</string>
|
||||
<string name="copy_url">Copy URL</string>
|
||||
<string name="cut">Cut</string>
|
||||
<string name="paste">Paste</string>
|
||||
<string name="advanced">Advanced</string>
|
||||
<string name="auto">Auto</string>
|
||||
<string name="bytes">Bytes</string>
|
||||
<string name="unit_measurement_for_file_size">Unit of measurement for file size</string>
|
||||
<string name="create_new_account">Create a new account</string>
|
||||
<string name="create_new_account_to_start">Create a new account to start.</string>
|
||||
<string name="type">Type</string>
|
||||
<string name="file_modified">The file %1$s was modified, do you want to upload it?</string>
|
||||
<string name="sync">Sync</string>
|
||||
<string name="remote_folder_to_sync">Remote folder to sync</string>
|
||||
<string name="local_folder_to_sync">Local folder to sync</string>
|
||||
<string name="vota">Rate</string>
|
||||
<string name="backup_accounts">Backup the accounts</string>
|
||||
<string name="restore_accounts">Restore the accounts</string>
|
||||
<string name="share_accounts">Backup and share the accounts</string>
|
||||
<string name="importing_accounts">Importing the accounts…</string>
|
||||
<string name="exporting_accounts">Exporting the accounts…</string>
|
||||
<string name="backup_not_found">No backups found</string>
|
||||
<string name="err_cant_open_the_file">Cannot open the file</string>
|
||||
<string name="err_temp_folder_doesnt_exist">Temporary folder does not exist</string>
|
||||
<string name="err_occured">An error occurred</string>
|
||||
<string name="ui_ux">UI</string>
|
||||
<string name="remove">Remove</string>
|
||||
<string name="modification_date">Modification date</string>
|
||||
<string name="name">Name</string>
|
||||
<string name="size">Size</string>
|
||||
<string name="sort">Sort</string>
|
||||
<string name="scuro">Dark</string>
|
||||
<string name="seleziona">Select</string>
|
||||
<string name="seleziona_account">Select an account</string>
|
||||
<string name="sicuro">Are you sure?</string>
|
||||
<string name="something_failed">Something failed</string>
|
||||
<string name="skip_same_file">Do not transfer same file</string>
|
||||
<string name="tema_app">App theme</string>
|
||||
<string name="tipo_connessione">Connection type</string>
|
||||
<string name="tipo_protocollo">Protocol type</string>
|
||||
<string name="un_altra_cartella">Another folder</string>
|
||||
<string name="use_passphrase">Use a passphrase</string>
|
||||
<string name="upload">Upload</string>
|
||||
<string name="upload_completato">Upload completed</string>
|
||||
<string name="what_to_do">What do you want to do?</string>
|
||||
<string name="remoto">Remote</string>
|
||||
<string name="riavva_per_tema">To change the theme, restart the application</string>
|
||||
<string name="rinomina">Rename</string>
|
||||
<string name="root">Default remote folder</string>
|
||||
<string name="nome_utente">Username</string>
|
||||
<string name="passiva">Passive</string>
|
||||
<string name="passphrase">Passphrase</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="password_summary">Leave it empty to prompt for it every session</string>
|
||||
<string name="porta">Port</string>
|
||||
<string name="locale">Local</string>
|
||||
<string name="log_in">Logging in…</string>
|
||||
<string name="modifica">Edit</string>
|
||||
<string name="muovi">Move</string>
|
||||
<string name="nascondi">Hide</string>
|
||||
<string name="nome_app">Turbo Client</string>
|
||||
<string name="host">Host</string>
|
||||
<string name="crea_cartella_locale">New local folder</string>
|
||||
<string name="crea_cartella_remota">New remote folder</string>
|
||||
<string name="crea_file_remoto">New remote file</string>
|
||||
<string name="new_local_file">New local file</string>
|
||||
<string name="disconneti">Disconnect</string>
|
||||
<string name="default_local_folder">Default local folder</string>
|
||||
<string name="dove_scaricare">Where to download?</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download_completato">Download completed</string>
|
||||
<string name="duplicate">Duplicate</string>
|
||||
<string name="fatto">Done</string>
|
||||
<string name="home">Home</string>
|
||||
<string name="chiaro">Light</string>
|
||||
<string name="aggiungi_account">New account</string>
|
||||
<string name="attiva">Active</string>
|
||||
<string name="cancella">Delete</string>
|
||||
<string name="cancellazione">Deleting files…</string>
|
||||
<string name="caricamento">Loading…</string>
|
||||
<string name="cartella_locale_corrente">Current local folder</string>
|
||||
<string name="chiave_privata">Private Key</string>
|
||||
</resources>
|
@@ -19,14 +19,14 @@
|
||||
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="android:Theme.Holo">
|
||||
<style name="AppThemeBaseDark" parent="android:Theme.Holo">
|
||||
|
||||
</style>
|
||||
<!-- Dialog -->
|
||||
<item name="textAppearanceDialogTitle">@style/TextAppearance.Dialog.Title</item>
|
||||
<item name="textAppearanceDialogMessage">@style/TextAppearance.Dialog.Message</item>
|
||||
<item name="textAppearanceDialogInfo">@style/TextAppearance.Dialog.Info</item>
|
||||
|
||||
<style name="AppTheme.Light.Editor" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:windowBackground">@null</item>
|
||||
<item name="android:windowBackground">@color/window_background</item>
|
||||
<item name="android:actionBarStyle">@style/ActionBar.Dark</item>
|
||||
<item name="android:actionOverflowButtonStyle">@style/OverFlow</item>
|
||||
<item name="android:actionBarSize">@dimen/action_bar_height</item>
|
||||
@@ -34,8 +34,13 @@
|
||||
<item name="android:homeAsUpIndicator">@drawable/ic_ab_up_compat</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.Light" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<style name="AppThemeBaseLight" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||
|
||||
<!-- Dialog -->
|
||||
<item name="textAppearanceDialogTitle">@style/TextAppearance.Dialog.Title</item>
|
||||
<item name="textAppearanceDialogMessage">@style/TextAppearance.Dialog.Message</item>
|
||||
<item name="textAppearanceDialogInfo">@style/TextAppearance.Dialog.Info</item>
|
||||
|
||||
<item name="android:windowBackground">@color/window_background_light</item>
|
||||
<item name="android:actionBarStyle">@style/ActionBar.Dark</item>
|
||||
<item name="android:actionOverflowButtonStyle">@style/OverFlow</item>
|
||||
@@ -44,14 +49,8 @@
|
||||
<item name="android:homeAsUpIndicator">@drawable/ic_ab_up_compat</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.Dark" parent="android:Theme.Holo">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:windowBackground">@color/window_background</item>
|
||||
<item name="android:actionBarStyle">@style/ActionBar.Dark</item>
|
||||
<item name="android:actionOverflowButtonStyle">@style/OverFlow</item>
|
||||
<item name="android:actionBarSize">@dimen/action_bar_height</item>
|
||||
<item name="android:windowContentOverlay">@drawable/actionbar_shadow</item>
|
||||
<item name="android:homeAsUpIndicator">@drawable/ic_ab_up_compat</item>
|
||||
<style name="AppThemeEditorDark" parent="AppThemeBaseDark">
|
||||
<item name="android:windowBackground">@null</item>
|
||||
</style>
|
||||
|
||||
<style name="ActionBar.Light" parent="android:Widget.Holo.Light.ActionBar">
|
||||
@@ -110,4 +109,19 @@
|
||||
<item name="android:src">@drawable/ic_ab_overflow_compat</item>
|
||||
</style>
|
||||
|
||||
<style name="TextAppearance.Dialog.Title" parent="android:TextAppearance.Holo.Large">
|
||||
<item name="android:fontFamily">sans-serif-condensed</item>
|
||||
<item name="android:textSize">24sp</item>
|
||||
</style>
|
||||
|
||||
<style name="TextAppearance.Dialog.Message" parent="android:TextAppearance.Holo.Small">
|
||||
<item name="android:lineSpacingMultiplier">1.2</item>
|
||||
<item name="android:fontFamily">sans-serif-light</item>
|
||||
<item name="android:textSize">16sp</item>
|
||||
</style>
|
||||
|
||||
<style name="TextAppearance.Dialog.Info" parent="android:TextAppearance.Holo.Small">
|
||||
<item name="android:fontFamily">sans-serif-condensed</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user