Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apk
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
apk
Commits
4104a21f
Commit
4104a21f
authored
Nov 12, 2014
by
DrKLO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More Android L design
parent
1fd3985e
Changes
35
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
264 additions
and
915 deletions
+264
-915
TextColorCell.java
...oj/src/main/java/org/telegram/ui/Cells/TextColorCell.java
+91
-0
TextDetailCell.java
...j/src/main/java/org/telegram/ui/Cells/TextDetailCell.java
+2
-2
TextDetailSettingsCell.java
...in/java/org/telegram/ui/Cells/TextDetailSettingsCell.java
+21
-2
TextInfoCell.java
...roj/src/main/java/org/telegram/ui/Cells/TextInfoCell.java
+2
-2
ChatActivity.java
...sagesProj/src/main/java/org/telegram/ui/ChatActivity.java
+2
-2
ProfileNotificationsActivity.java
...in/java/org/telegram/ui/ProfileNotificationsActivity.java
+32
-56
SettingsActivity.java
...sProj/src/main/java/org/telegram/ui/SettingsActivity.java
+3
-3
SettingsNotificationsActivity.java
...n/java/org/telegram/ui/SettingsNotificationsActivity.java
+90
-97
contacts_invite_row_layout.xml
...roj/src/main/res/layout-ar/contacts_invite_row_layout.xml
+0
-36
settings_name_layout.xml
...sagesProj/src/main/res/layout-ar/settings_name_layout.xml
+0
-75
settings_row_check_layout.xml
...Proj/src/main/res/layout-ar/settings_row_check_layout.xml
+0
-33
settings_row_check_notify_layout.xml
...c/main/res/layout-ar/settings_row_check_notify_layout.xml
+0
-33
settings_row_color_layout.xml
...Proj/src/main/res/layout-ar/settings_row_color_layout.xml
+0
-41
settings_row_detail_layout.xml
...roj/src/main/res/layout-ar/settings_row_detail_layout.xml
+0
-39
user_profile_avatar_layout.xml
...roj/src/main/res/layout-ar/user_profile_avatar_layout.xml
+0
-48
user_profile_phone_layout.xml
...Proj/src/main/res/layout-ar/user_profile_phone_layout.xml
+0
-68
contacts_invite_row_layout.xml
...esProj/src/main/res/layout/contacts_invite_row_layout.xml
+0
-35
settings_logout_button.xml
TMessagesProj/src/main/res/layout/settings_logout_button.xml
+8
-0
settings_name_layout.xml
TMessagesProj/src/main/res/layout/settings_name_layout.xml
+0
-72
settings_row_check_layout.xml
...gesProj/src/main/res/layout/settings_row_check_layout.xml
+0
-34
settings_row_check_notify_layout.xml
.../src/main/res/layout/settings_row_check_notify_layout.xml
+0
-33
settings_row_color_layout.xml
...gesProj/src/main/res/layout/settings_row_color_layout.xml
+0
-33
settings_row_detail_layout.xml
...esProj/src/main/res/layout/settings_row_detail_layout.xml
+0
-39
settings_row_version.xml
TMessagesProj/src/main/res/layout/settings_row_version.xml
+0
-16
user_profile_avatar_layout.xml
...esProj/src/main/res/layout/user_profile_avatar_layout.xml
+0
-43
user_profile_phone_layout.xml
...gesProj/src/main/res/layout/user_profile_phone_layout.xml
+0
-68
strings.xml
TMessagesProj/src/main/res/values-ar/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-de/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-es/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-it/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-ko/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-nl/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-pt-rBR/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values-pt-rPT/strings.xml
+1
-0
strings.xml
TMessagesProj/src/main/res/values/strings.xml
+5
-5
No files found.
TMessagesProj/src/main/java/org/telegram/ui/Cells/TextColorCell.java
0 → 100644
View file @
4104a21f
/*
* This is the source code of Telegram for Android v. 1.7.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013-2014.
*/
package
org
.
telegram
.
ui
.
Cells
;
import
android.content.Context
;
import
android.graphics.Canvas
;
import
android.graphics.Paint
;
import
android.graphics.PorterDuff
;
import
android.graphics.PorterDuffColorFilter
;
import
android.graphics.drawable.Drawable
;
import
android.util.TypedValue
;
import
android.view.Gravity
;
import
android.widget.FrameLayout
;
import
android.widget.TextView
;
import
org.telegram.android.AndroidUtilities
;
import
org.telegram.android.LocaleController
;
import
org.telegram.messenger.R
;
public
class
TextColorCell
extends
FrameLayout
{
private
TextView
textView
;
private
Drawable
colorDrawable
;
private
static
Paint
paint
;
private
boolean
needDivider
;
private
int
currentColor
;
public
TextColorCell
(
Context
context
)
{
super
(
context
);
if
(
paint
==
null
)
{
paint
=
new
Paint
();
paint
.
setColor
(
0xffd9d9d9
);
paint
.
setStrokeWidth
(
1
);
}
textView
=
new
TextView
(
context
);
textView
.
setTextColor
(
0xff000000
);
textView
.
setTextSize
(
TypedValue
.
COMPLEX_UNIT_DIP
,
16
);
textView
.
setLines
(
1
);
textView
.
setMaxLines
(
1
);
textView
.
setSingleLine
(
true
);
textView
.
setGravity
((
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
)
|
Gravity
.
CENTER_VERTICAL
);
addView
(
textView
);
LayoutParams
layoutParams
=
(
LayoutParams
)
textView
.
getLayoutParams
();
layoutParams
.
width
=
LayoutParams
.
MATCH_PARENT
;
layoutParams
.
height
=
LayoutParams
.
MATCH_PARENT
;
layoutParams
.
leftMargin
=
AndroidUtilities
.
dp
(
17
);
layoutParams
.
rightMargin
=
AndroidUtilities
.
dp
(
17
);
layoutParams
.
gravity
=
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
;
textView
.
setLayoutParams
(
layoutParams
);
colorDrawable
=
getResources
().
getDrawable
(
R
.
drawable
.
switch_to_on2
);
}
@Override
protected
void
onMeasure
(
int
widthMeasureSpec
,
int
heightMeasureSpec
)
{
super
.
onMeasure
(
widthMeasureSpec
,
MeasureSpec
.
makeMeasureSpec
(
AndroidUtilities
.
dp
(
48
)
+
(
needDivider
?
1
:
0
),
MeasureSpec
.
EXACTLY
));
}
public
void
setTextAndColor
(
String
text
,
int
color
,
boolean
divider
)
{
textView
.
setText
(
text
);
needDivider
=
divider
;
currentColor
=
color
;
colorDrawable
.
setColorFilter
(
new
PorterDuffColorFilter
(
color
,
PorterDuff
.
Mode
.
MULTIPLY
));
setWillNotDraw
(!
needDivider
&&
currentColor
==
0
);
}
@Override
protected
void
onDraw
(
Canvas
canvas
)
{
if
(
needDivider
)
{
canvas
.
drawLine
(
getPaddingLeft
(),
getHeight
()
-
1
,
getWidth
()
-
getPaddingRight
(),
getHeight
()
-
1
,
paint
);
}
if
(
currentColor
!=
0
&&
colorDrawable
!=
null
)
{
int
x
;
int
y
=
(
getMeasuredHeight
()
-
colorDrawable
.
getMinimumHeight
())
/
2
;
if
(!
LocaleController
.
isRTL
)
{
x
=
getMeasuredWidth
()
-
colorDrawable
.
getIntrinsicWidth
()
-
AndroidUtilities
.
dp
(
14.5f
);
}
else
{
x
=
AndroidUtilities
.
dp
(
14.5f
);
}
colorDrawable
.
setBounds
(
x
,
y
,
x
+
colorDrawable
.
getIntrinsicWidth
(),
y
+
colorDrawable
.
getIntrinsicHeight
());
colorDrawable
.
draw
(
canvas
);
}
}
}
TMessagesProj/src/main/java/org/telegram/ui/Cells/TextDetailCell.java
View file @
4104a21f
...
...
@@ -34,7 +34,7 @@ public class TextDetailCell extends FrameLayout {
textView
.
setLines
(
1
);
textView
.
setMaxLines
(
1
);
textView
.
setSingleLine
(
true
);
textView
.
setGravity
(
(
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
)
|
Gravity
.
CENTER_VERTICAL
);
textView
.
setGravity
(
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
);
addView
(
textView
);
FrameLayout
.
LayoutParams
layoutParams
=
(
FrameLayout
.
LayoutParams
)
textView
.
getLayoutParams
();
layoutParams
.
width
=
LayoutParams
.
WRAP_CONTENT
;
...
...
@@ -51,7 +51,7 @@ public class TextDetailCell extends FrameLayout {
valueTextView
.
setLines
(
1
);
valueTextView
.
setMaxLines
(
1
);
valueTextView
.
setSingleLine
(
true
);
valueTextView
.
setGravity
(
(
LocaleController
.
isRTL
?
Gravity
.
LEFT
:
Gravity
.
RIGHT
)
|
Gravity
.
CENTER_VERTICAL
);
valueTextView
.
setGravity
(
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
);
addView
(
valueTextView
);
layoutParams
=
(
FrameLayout
.
LayoutParams
)
valueTextView
.
getLayoutParams
();
layoutParams
.
width
=
LayoutParams
.
WRAP_CONTENT
;
...
...
TMessagesProj/src/main/java/org/telegram/ui/Cells/TextDetailSettingsCell.java
View file @
4104a21f
...
...
@@ -55,10 +55,11 @@ public class TextDetailSettingsCell extends FrameLayout {
valueTextView
=
new
TextView
(
context
);
valueTextView
.
setTextColor
(
0xff8a8a8a
);
valueTextView
.
setTextSize
(
TypedValue
.
COMPLEX_UNIT_DIP
,
13
);
valueTextView
.
setGravity
(
LocaleController
.
isRTL
?
Gravity
.
RIGHT
:
Gravity
.
LEFT
);
valueTextView
.
setLines
(
1
);
valueTextView
.
setMaxLines
(
1
);
valueTextView
.
setSingleLine
(
true
);
valueTextView
.
set
Gravity
((
LocaleController
.
isRTL
?
Gravity
.
LEFT
:
Gravity
.
RIGHT
)
|
Gravity
.
CENTER_VERTICAL
);
valueTextView
.
set
Padding
(
0
,
0
,
0
,
0
);
addView
(
valueTextView
);
layoutParams
=
(
LayoutParams
)
valueTextView
.
getLayoutParams
();
layoutParams
.
width
=
LayoutParams
.
WRAP_CONTENT
;
...
...
@@ -72,7 +73,25 @@ public class TextDetailSettingsCell extends FrameLayout {
@Override
protected
void
onMeasure
(
int
widthMeasureSpec
,
int
heightMeasureSpec
)
{
super
.
onMeasure
(
widthMeasureSpec
,
MeasureSpec
.
makeMeasureSpec
(
AndroidUtilities
.
dp
(
64
)
+
(
needDivider
?
1
:
0
),
MeasureSpec
.
EXACTLY
));
if
(
valueTextView
.
getMaxLines
()
==
1
)
{
super
.
onMeasure
(
widthMeasureSpec
,
MeasureSpec
.
makeMeasureSpec
(
AndroidUtilities
.
dp
(
64
)
+
(
needDivider
?
1
:
0
),
MeasureSpec
.
EXACTLY
));
}
else
{
super
.
onMeasure
(
widthMeasureSpec
,
MeasureSpec
.
makeMeasureSpec
(
0
,
MeasureSpec
.
UNSPECIFIED
));
}
}
public
void
setMultilineDetail
(
boolean
value
)
{
if
(
value
)
{
valueTextView
.
setLines
(
0
);
valueTextView
.
setMaxLines
(
0
);
valueTextView
.
setSingleLine
(
false
);
valueTextView
.
setPadding
(
0
,
0
,
0
,
AndroidUtilities
.
dp
(
12
));
}
else
{
valueTextView
.
setLines
(
1
);
valueTextView
.
setMaxLines
(
1
);
valueTextView
.
setSingleLine
(
true
);
valueTextView
.
setPadding
(
0
,
0
,
0
,
0
);
}
}
public
void
setTextAndValue
(
String
text
,
String
value
,
boolean
divider
)
{
...
...
TMessagesProj/src/main/java/org/telegram/ui/Cells/
DetailText
Cell.java
→
TMessagesProj/src/main/java/org/telegram/ui/Cells/
TextInfo
Cell.java
View file @
4104a21f
...
...
@@ -16,11 +16,11 @@ import android.widget.TextView;
import
org.telegram.android.AndroidUtilities
;
public
class
DetailText
Cell
extends
FrameLayout
{
public
class
TextInfo
Cell
extends
FrameLayout
{
private
TextView
textView
;
public
DetailText
Cell
(
Context
context
)
{
public
TextInfo
Cell
(
Context
context
)
{
super
(
context
);
textView
=
new
TextView
(
context
);
...
...
TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java
View file @
4104a21f
...
...
@@ -1390,7 +1390,6 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not
printString
=
TextUtils
.
replace
(
printString
,
new
String
[]{
"..."
},
new
String
[]{
""
});
}
if
(
printString
==
null
||
printString
.
length
()
==
0
)
{
lastPrintString
=
null
;
setTypingAnimation
(
false
);
if
(
currentChat
!=
null
)
{
if
(
currentChat
instanceof
TLRPC
.
TL_chatForbidden
)
{
...
...
@@ -1413,11 +1412,12 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not
if
(
user
!=
null
)
{
currentUser
=
user
;
}
if
(
lastStatus
!=
user
.
status
||
lastStatus
!=
null
&&
user
.
status
!=
null
&&
lastStatus
.
expires
!=
user
.
status
.
expires
)
{
if
(
last
PrintString
!=
null
||
last
Status
!=
user
.
status
||
lastStatus
!=
null
&&
user
.
status
!=
null
&&
lastStatus
.
expires
!=
user
.
status
.
expires
)
{
lastStatus
=
user
.
status
;
actionBar
.
setSubtitle
(
LocaleController
.
formatUserStatus
(
currentUser
));
}
}
lastPrintString
=
null
;
}
else
{
lastPrintString
=
printString
;
actionBar
.
setSubtitle
(
printString
);
...
...
TMessagesProj/src/main/java/org/telegram/ui/ProfileNotificationsActivity.java
View file @
4104a21f
This diff is collapsed.
Click to expand it.
TMessagesProj/src/main/java/org/telegram/ui/SettingsActivity.java
View file @
4104a21f
...
...
@@ -58,7 +58,7 @@ import org.telegram.messenger.RPCRequest;
import
org.telegram.messenger.UserConfig
;
import
org.telegram.android.MessageObject
;
import
org.telegram.ui.Adapters.BaseFragmentAdapter
;
import
org.telegram.ui.Cells.
DetailText
Cell
;
import
org.telegram.ui.Cells.
TextInfo
Cell
;
import
org.telegram.ui.Cells.EmptyCell
;
import
org.telegram.ui.Cells.HeaderCell
;
import
org.telegram.ui.Cells.ShadowSectionCell
;
...
...
@@ -1052,10 +1052,10 @@ public class SettingsActivity extends BaseFragment implements NotificationCenter
}
}
else
if
(
type
==
5
)
{
if
(
view
==
null
)
{
view
=
new
DetailText
Cell
(
mContext
);
view
=
new
TextInfo
Cell
(
mContext
);
try
{
PackageInfo
pInfo
=
ApplicationLoader
.
applicationContext
.
getPackageManager
().
getPackageInfo
(
ApplicationLoader
.
applicationContext
.
getPackageName
(),
0
);
((
DetailText
Cell
)
view
).
setText
(
String
.
format
(
Locale
.
US
,
"Telegram for Android v%s (%d)"
,
pInfo
.
versionName
,
pInfo
.
versionCode
));
((
TextInfo
Cell
)
view
).
setText
(
String
.
format
(
Locale
.
US
,
"Telegram for Android v%s (%d)"
,
pInfo
.
versionName
,
pInfo
.
versionCode
));
}
catch
(
Exception
e
)
{
FileLog
.
e
(
"tmessages"
,
e
);
}
...
...
TMessagesProj/src/main/java/org/telegram/ui/SettingsNotificationsActivity.java
View file @
4104a21f
This diff is collapsed.
Click to expand it.
TMessagesProj/src/main/res/layout-ar/contacts_invite_row_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"66dp"
android:layout_gravity=
"top"
>
<ImageView
android:layout_width=
"50dp"
android:layout_height=
"50dp"
android:id=
"@+id/messages_list_row_avatar"
android:src=
"@drawable/ic_ab_share"
android:contentDescription=
""
android:scaleType=
"center"
android:layout_marginTop=
"8dp"
android:layout_gravity=
"top|right"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:id=
"@+id/messages_list_row_name"
android:textSize=
"18dp"
android:layout_marginRight=
"61dp"
android:ellipsize=
"end"
android:maxLines=
"1"
android:gravity=
"right"
android:textColor=
"#006fc8"
android:layout_gravity=
"center_vertical|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
android:visibility=
"gone"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/settings_name_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:gravity=
"center_vertical"
android:orientation=
"horizontal"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:paddingTop=
"13dp"
android:paddingBottom=
"12dp"
>
<ImageButton
android:id=
"@+id/settings_edit_name"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:src=
"@drawable/ic_edit"
android:layout_marginTop=
"4dp"
/>
<View
android:background=
"#e8e8e8"
android:layout_width=
"1dp"
android:layout_height=
"48dp"
android:layout_marginTop=
"4dp"
/>
<LinearLayout
android:layout_gravity=
"center_vertical"
android:orientation=
"vertical"
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"13dp"
android:layout_marginLeft=
"4dp"
android:layout_marginTop=
"1dp"
android:layout_weight=
"1.0"
android:gravity=
"right"
>
<TextView
android:textSize=
"19dp"
android:textColor=
"#000000"
android:ellipsize=
"end"
android:id=
"@+id/settings_name"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:lines=
"1"
android:singleLine=
"true"
android:gravity=
"right"
/>
<TextView
android:textSize=
"17dp"
android:textColor=
"#ababab"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"4dp"
android:id=
"@+id/settings_online"
android:gravity=
"right"
/>
</LinearLayout>
<FrameLayout
android:layout_width=
"64dp"
android:layout_height=
"64dp"
>
<org.telegram.ui.Views.BackupImageView
android:id=
"@+id/settings_avatar_image"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
/>
<ImageButton
android:id=
"@+id/settings_change_avatar_button"
android:background=
"@drawable/photo_spinner"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
/>
</FrameLayout>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/settings_row_check_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"50dp"
android:layout_gravity=
"top"
>
<ImageView
android:layout_gravity=
"center_vertical|left"
android:id=
"@+id/settings_row_check_button"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:src=
"@drawable/btn_check_on"
/>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"104dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_gravity=
"top|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/settings_row_check_notify_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"64dp"
android:layout_gravity=
"top"
>
<ImageView
android:layout_gravity=
"center_vertical|left"
android:id=
"@+id/settings_row_check_button"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"14dp"
android:src=
"@drawable/btn_check_on"
/>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"104dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_gravity=
"top|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/settings_row_color_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<!--
~ This is the source code of Telegram for Android v. 1.4.x.
~ It is licensed under GNU GPL v. 2 or later.
~ You should have received a copy of the license in this archive (see LICENSE).
~
~ Copyright Nikolai Kudashov, 2013-2014.
-->
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"50dp"
android:layout_gravity=
"top"
>
<FrameLayout
android:id=
"@+id/settings_color"
android:layout_width=
"20dp"
android:layout_height=
"20dp"
android:layout_marginLeft=
"14dp"
android:layout_marginRight=
"8dp"
android:layout_gravity=
"center_vertical"
/>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_gravity=
"top|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/settings_row_detail_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_marginTop=
"10dp"
android:layout_gravity=
"top|right"
/>
<TextView
android:textSize=
"14dp"
android:textColor=
"#999999"
android:id=
"@+id/settings_row_text_detail"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_marginBottom=
"12dp"
android:layout_gravity=
"bottom|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/user_profile_avatar_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:gravity=
"center_vertical|right"
android:orientation=
"horizontal"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:paddingTop=
"13dp"
android:paddingBottom=
"12dp"
>
<LinearLayout
android:layout_gravity=
"center_vertical|left"
android:orientation=
"vertical"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"13dp"
android:layout_marginBottom=
"1dp"
>
<TextView
android:textSize=
"21dp"
android:textColor=
"#333333"
android:ellipsize=
"end"
android:id=
"@+id/settings_name"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:lines=
"1"
android:singleLine=
"true"
android:gravity=
"right"
android:layout_gravity=
"right"
/>
<TextView
android:textSize=
"14dp"
android:textColor=
"#999999"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"4dp"
android:id=
"@+id/settings_online"
android:gravity=
"right"
android:layout_gravity=
"right"
/>
</LinearLayout>
<org.telegram.ui.Views.BackupImageView
android:id=
"@+id/settings_avatar_image"
android:layout_width=
"64dp"
android:layout_height=
"64dp"
android:layout_gravity=
"right"
/>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout-ar/user_profile_phone_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"64dp"
android:background=
"@drawable/list_selector"
android:layout_gravity=
"top"
>
<ImageButton
android:id=
"@+id/settings_edit_name"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:src=
"@drawable/ic_profile_send_message"
android:layout_gravity=
"left|center_vertical"
android:paddingTop=
"2dp"
/>
<View
android:background=
"#e8e8e8"
android:layout_width=
"1dp"
android:layout_height=
"48dp"
android:layout_gravity=
"left|center_vertical"
android:layout_marginLeft=
"48dp"
/>
<ImageButton
android:id=
"@+id/settings_call_phone"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:layout_marginLeft=
"48dp"
android:src=
"@drawable/call"
android:layout_gravity=
"left|center_vertical"
android:paddingTop=
"2dp"
/>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_marginTop=
"9dp"
android:layout_gravity=
"top|right"
/>
<TextView
android:textSize=
"13dp"
android:textColor=
"#999999"
android:id=
"@+id/settings_row_text_detail"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical|right"
android:layout_marginBottom=
"9dp"
android:textAllCaps=
"true"
android:layout_gravity=
"bottom|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/contacts_invite_row_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"66dp"
android:layout_gravity=
"top"
>
<ImageView
android:layout_width=
"50dp"
android:layout_height=
"50dp"
android:id=
"@+id/messages_list_row_avatar"
android:src=
"@drawable/ic_ab_share"
android:contentDescription=
""
android:scaleType=
"center"
android:layout_marginTop=
"8dp"
android:layout_gravity=
"top"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:id=
"@+id/messages_list_row_name"
android:textSize=
"18dp"
android:layout_marginLeft=
"61dp"
android:ellipsize=
"end"
android:maxLines=
"1"
android:textColor=
"#006fc8"
android:layout_gravity=
"center_vertical"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
android:visibility=
"gone"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_logout_button.xml
View file @
4104a21f
<!--
~ This is the source code of Telegram for Android v. 1.7.x.
~ It is licensed under GNU GPL v. 2 or later.
~ You should have received a copy of the license in this archive (see LICENSE).
~
~ Copyright Nikolai Kudashov, 2013-2014.
-->
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
...
...
TMessagesProj/src/main/res/layout/settings_name_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:gravity=
"center_vertical"
android:orientation=
"horizontal"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:paddingTop=
"13dp"
android:paddingBottom=
"12dp"
>
<FrameLayout
android:layout_width=
"64dp"
android:layout_height=
"64dp"
>
<org.telegram.ui.Views.BackupImageView
android:id=
"@+id/settings_avatar_image"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
/>
<ImageButton
android:id=
"@+id/settings_change_avatar_button"
android:background=
"@drawable/photo_spinner"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
/>
</FrameLayout>
<LinearLayout
android:layout_gravity=
"center_vertical"
android:orientation=
"vertical"
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"13dp"
android:layout_marginRight=
"4dp"
android:layout_marginBottom=
"1dp"
android:layout_weight=
"1.0"
>
<TextView
android:textSize=
"21dp"
android:textColor=
"#333333"
android:ellipsize=
"end"
android:id=
"@+id/settings_name"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:lines=
"1"
android:singleLine=
"true"
/>
<TextView
android:textSize=
"14dp"
android:textColor=
"#999999"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"4dp"
android:id=
"@+id/settings_online"
/>
</LinearLayout>
<View
android:background=
"#e8e8e8"
android:layout_width=
"1dp"
android:layout_height=
"48dp"
android:layout_marginTop=
"4dp"
/>
<ImageButton
android:id=
"@+id/settings_edit_name"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:src=
"@drawable/ic_edit"
android:layout_marginTop=
"4dp"
/>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_row_check_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"50dp"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"104dp"
android:gravity=
"center_vertical"
android:layout_gravity=
"top"
/>
<ImageView
android:layout_gravity=
"center_vertical|right"
android:id=
"@+id/settings_row_check_button"
android:duplicateParentState=
"false"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"8dp"
android:src=
"@drawable/btn_check_on"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_row_check_notify_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"64dp"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"104dp"
android:gravity=
"center_vertical"
android:layout_gravity=
"top"
/>
<ImageView
android:layout_gravity=
"center_vertical|right"
android:id=
"@+id/settings_row_check_button"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"14dp"
android:src=
"@drawable/btn_check_on"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_row_color_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"50dp"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"fill_parent"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical"
android:layout_gravity=
"top"
/>
<FrameLayout
android:id=
"@+id/settings_color"
android:layout_width=
"20dp"
android:layout_height=
"20dp"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"14dp"
android:layout_gravity=
"center_vertical|right"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_row_detail_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"8dp"
android:paddingLeft=
"8dp"
android:gravity=
"center_vertical"
android:layout_marginTop=
"10dp"
android:layout_gravity=
"top"
/>
<TextView
android:textSize=
"14dp"
android:textColor=
"#999999"
android:id=
"@+id/settings_row_text_detail"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:paddingLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical"
android:layout_marginBottom=
"12dp"
android:layout_gravity=
"bottom"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/settings_row_version.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"56dp"
android:paddingTop=
"8dp"
>
<TextView
android:layout_marginTop=
"10dp"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:gravity=
"center"
android:textSize=
"14dp"
android:textColor=
"#a0a0a0"
android:id=
"@+id/settings_row_text"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/user_profile_avatar_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:gravity=
"center_vertical"
android:orientation=
"horizontal"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:paddingTop=
"13dp"
android:paddingBottom=
"12dp"
>
<org.telegram.ui.Views.BackupImageView
android:id=
"@+id/settings_avatar_image"
android:layout_width=
"64dp"
android:layout_height=
"64dp"
/>
<LinearLayout
android:layout_gravity=
"center_vertical"
android:orientation=
"vertical"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"13dp"
android:layout_marginBottom=
"1dp"
>
<TextView
android:textSize=
"21dp"
android:textColor=
"#333333"
android:ellipsize=
"end"
android:id=
"@+id/settings_name"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:lines=
"1"
android:singleLine=
"true"
/>
<TextView
android:textSize=
"14dp"
android:textColor=
"#999999"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"4dp"
android:id=
"@+id/settings_online"
/>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
TMessagesProj/src/main/res/layout/user_profile_phone_layout.xml
deleted
100644 → 0
View file @
1fd3985e
<FrameLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"64dp"
android:background=
"@drawable/list_selector"
android:layout_gravity=
"top"
>
<TextView
android:textSize=
"18dp"
android:textColor=
"#333333"
android:id=
"@+id/settings_row_text"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical"
android:layout_marginTop=
"9dp"
android:layout_gravity=
"top"
/>
<TextView
android:textSize=
"13dp"
android:textColor=
"#999999"
android:id=
"@+id/settings_row_text_detail"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:gravity=
"center_vertical"
android:layout_marginBottom=
"9dp"
android:textAllCaps=
"true"
android:layout_gravity=
"bottom"
/>
<ImageButton
android:id=
"@+id/settings_call_phone"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:layout_marginRight=
"48dp"
android:src=
"@drawable/call"
android:layout_gravity=
"right|center_vertical"
android:paddingTop=
"2dp"
/>
<View
android:background=
"#e8e8e8"
android:layout_width=
"1dp"
android:layout_height=
"48dp"
android:layout_gravity=
"right|center_vertical"
android:layout_marginRight=
"48dp"
/>
<ImageButton
android:id=
"@+id/settings_edit_name"
android:background=
"@drawable/list_selector"
android:clickable=
"true"
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:src=
"@drawable/ic_profile_send_message"
android:layout_gravity=
"right|center_vertical"
android:paddingTop=
"2dp"
/>
<View
android:background=
"@color/divider"
android:layout_width=
"fill_parent"
android:layout_height=
"1px"
android:layout_gravity=
"bottom"
android:id=
"@+id/settings_row_divider"
/>
</FrameLayout>
\ No newline at end of file
TMessagesProj/src/main/res/values-ar/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
عند تواجدك خارج البلاد
</string>
<string
name=
"NoMediaAutoDownload"
>
لا يوجد وسائط
</string>
<string
name=
"SaveToGallerySettings"
>
حفظ في الجهاز
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
لا توجد وسائط بعد
</string>
<string
name=
"CancelDownload"
>
إلغاء التنزيل
</string>
...
...
TMessagesProj/src/main/res/values-de/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
bei Roaming
</string>
<string
name=
"NoMediaAutoDownload"
>
kein automatischer Download
</string>
<string
name=
"SaveToGallerySettings"
>
In der Galerie speichern
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Noch keine geteilten Medien vorhanden
</string>
<string
name=
"CancelDownload"
>
Download abbrechen
</string>
...
...
TMessagesProj/src/main/res/values-es/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
Con itinerancia de datos
</string>
<string
name=
"NoMediaAutoDownload"
>
Ningún contenido multimedia
</string>
<string
name=
"SaveToGallerySettings"
>
Guardar en galería
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Aún no hay fotos ni vídeos
</string>
<string
name=
"CancelDownload"
>
Cancelar descarga
</string>
...
...
TMessagesProj/src/main/res/values-it/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
In roaming
</string>
<string
name=
"NoMediaAutoDownload"
>
Nessun media
</string>
<string
name=
"SaveToGallerySettings"
>
Salva nella galleria
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Nessun media condiviso
</string>
<string
name=
"CancelDownload"
>
Annulla scaricamento
</string>
...
...
TMessagesProj/src/main/res/values-ko/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
로밍 중일 때
</string>
<string
name=
"NoMediaAutoDownload"
>
다운로드 안함
</string>
<string
name=
"SaveToGallerySettings"
>
앨범에 자동 저장
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
공유한 미디어가 없습니다
</string>
<string
name=
"CancelDownload"
>
다운로드 취소
</string>
...
...
TMessagesProj/src/main/res/values-nl/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
Bij roaming
</string>
<string
name=
"NoMediaAutoDownload"
>
Geen media
</string>
<string
name=
"SaveToGallerySettings"
>
Opslaan in galerij
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Nog geen media gedeeld
</string>
<string
name=
"CancelDownload"
>
Downloaden annuleren
</string>
...
...
TMessagesProj/src/main/res/values-pt-rBR/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
Quando em roaming
</string>
<string
name=
"NoMediaAutoDownload"
>
Sem mídia
</string>
<string
name=
"SaveToGallerySettings"
>
Salvar na galeria
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Ainda não há mídia compartilhada
</string>
<string
name=
"CancelDownload"
>
Cancelar Download
</string>
...
...
TMessagesProj/src/main/res/values-pt-rPT/strings.xml
View file @
4104a21f
...
...
@@ -285,6 +285,7 @@
<string
name=
"WhenRoaming"
>
Quando em roaming
</string>
<string
name=
"NoMediaAutoDownload"
>
Sem mídia
</string>
<string
name=
"SaveToGallerySettings"
>
Salvar na galeria
</string>
<string
name=
"EditName"
>
Edit Name
</string>
<!--media view-->
<string
name=
"NoMedia"
>
Ainda não há mídia compartilhada
</string>
<string
name=
"CancelDownload"
>
Cancelar Download
</string>
...
...
TMessagesProj/src/main/res/values/strings.xml
View file @
4104a21f
...
...
@@ -224,17 +224,17 @@
<string
name=
"Unblock"
>
Unblock
</string>
<string
name=
"UnblockText"
>
Tap and hold on user to unblock.
</string>
<string
name=
"NoBlocked"
>
No blocked users yet
</string>
<string
name=
"MessageNotifications"
>
M
ESSAGE NOTIFICATIONS
</string>
<string
name=
"MessageNotifications"
>
M
essage notifications
</string>
<string
name=
"Alert"
>
Alert
</string>
<string
name=
"MessagePreview"
>
Message Preview
</string>
<string
name=
"GroupNotifications"
>
G
ROUP NOTIFICATIONS
</string>
<string
name=
"GroupNotifications"
>
G
roup notifications
</string>
<string
name=
"Sound"
>
Sound
</string>
<string
name=
"InAppNotifications"
>
I
N-APP NOTIFICATIONS
</string>
<string
name=
"InAppNotifications"
>
I
n-app notifications
</string>
<string
name=
"InAppSounds"
>
In-App Sounds
</string>
<string
name=
"InAppVibrate"
>
In-App Vibrate
</string>
<string
name=
"Vibrate"
>
Vibrate
</string>
<string
name=
"InAppPreview"
>
In-App Preview
</string>
<string
name=
"Reset"
>
R
ESET
</string>
<string
name=
"Reset"
>
R
eset
</string>
<string
name=
"ResetAllNotifications"
>
Reset All Notifications
</string>
<string
name=
"UndoAllCustom"
>
Undo all custom notification settings for all your contacts and groups
</string>
<string
name=
"NotificationsAndSounds"
>
Notifications and Sounds
</string>
...
...
@@ -249,7 +249,7 @@
<string
name=
"MessagesSettings"
>
Messages
</string>
<string
name=
"SendByEnter"
>
Send by Enter
</string>
<string
name=
"TerminateAllSessions"
>
Terminate All Other Sessions
</string>
<string
name=
"Events"
>
E
VENTS
</string>
<string
name=
"Events"
>
E
vents
</string>
<string
name=
"ContactJoined"
>
Contact joined Telegram
</string>
<string
name=
"Pebble"
>
PEBBLE
</string>
<string
name=
"Language"
>
Language
</string>
...
...
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