Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
a65d84ce
Commit
a65d84ce
authored
13 years ago
by
Tadashi G. Takaoka
Committed by
Android (Google) Code Review
13 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Add key description for "fullwidth asterisk" used on phone/number layout"
parents
73d377a9
0464850e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/res/values/strings.xml
+8
-8
8 additions, 8 deletions
java/res/values/strings.xml
java/src/com/android/inputmethod/accessibility/KeyCodeDescriptionMapper.java
+1
-0
1 addition, 0 deletions
...d/inputmethod/accessibility/KeyCodeDescriptionMapper.java
with
9 additions
and
8 deletions
java/res/values/strings.xml
+
8
−
8
View file @
a65d84ce
...
...
@@ -190,25 +190,25 @@
<string
name=
"spoken_description_double_quote"
>
Double quote
</string>
<!-- Spoken description for the "'" keyboard key. -->
<string
name=
"spoken_description_single_quote"
>
Single quote
</string>
<!-- Spoken description for the "
•"
keyboard key. -->
<!-- Spoken description for the "
\u2022" (BULLET)
keyboard key. -->
<string
name=
"spoken_description_dot"
>
Dot
</string>
<!-- Spoken description for the "
√"
keyboard key. -->
<!-- Spoken description for the "
\u221a" (SQUARE ROOT)
keyboard key. -->
<string
name=
"spoken_description_square_root"
>
Square root
</string>
<!-- Spoken description for the "
π"
keyboard key. -->
<!-- Spoken description for the "
\u03C0" (GREEK SMALL LETTER PI)
keyboard key. -->
<string
name=
"spoken_description_pi"
>
Pi
</string>
<!-- Spoken description for the "
Δ"
keyboard key. -->
<!-- Spoken description for the "
\u0394" (GREEK CAPITAL LETTER DELTA)
keyboard key. -->
<string
name=
"spoken_description_delta"
>
Delta
</string>
<!-- Spoken description for the "
™"
keyboard key. -->
<!-- Spoken description for the "
\u2122" (TRADE MARK SIGN)
keyboard key. -->
<string
name=
"spoken_description_trademark"
>
Trademark
</string>
<!-- Spoken description for the "
℅"
keyboard key. -->
<!-- Spoken description for the "
\u2105" (CARE OF)
keyboard key. -->
<string
name=
"spoken_description_care_of"
>
Care of
</string>
<!-- Spoken description for the "*" keyboard key. -->
<string
name=
"spoken_description_star"
>
Star
</string>
<!-- Spoken description for the "#" keyboard key. -->
<string
name=
"spoken_description_pound"
>
Pound
</string>
<!-- Spoken description for the "
…"
keyboard key. -->
<!-- Spoken description for the "
\u2026" (HORIZONTAL ELLIPSIS)
keyboard key. -->
<string
name=
"spoken_description_ellipsis"
>
Ellipsis
</string>
<!-- Spoken description for the "
„"
keyboard key. -->
<!-- Spoken description for the "
\u201E" (DOUBLE LOW-9 QUOTATION MARK)
keyboard key. -->
<string
name=
"spoken_description_low_double_quote"
>
Low double quote
</string>
<!-- Voice related labels -->
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/accessibility/KeyCodeDescriptionMapper.java
+
1
−
0
View file @
a65d84ce
...
...
@@ -85,6 +85,7 @@ public class KeyCodeDescriptionMapper {
mKeyCodeMap
.
put
((
int
)
'\u2105'
,
R
.
string
.
spoken_description_care_of
);
mKeyCodeMap
.
put
((
int
)
'\u2026'
,
R
.
string
.
spoken_description_ellipsis
);
mKeyCodeMap
.
put
((
int
)
'\
u201E
'
,
R
.
string
.
spoken_description_low_double_quote
);
mKeyCodeMap
.
put
((
int
)
'\
uFF0A
'
,
R
.
string
.
spoken_description_star
);
// Special non-character codes defined in Keyboard
mKeyCodeMap
.
put
(
Keyboard
.
CODE_DELETE
,
R
.
string
.
spoken_description_delete
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment