Bill Yi
7305b0b41e
Import translations. DO NOT MERGE
...
Change-Id: Ifaf4318866c3ba72adee1190e0dfce8506fbd7b0
Auto-generated-cl: translation import
2018-08-01 20:27:24 -07:00
Yohei Yukawa
c884b6631f
Let Android Studio use 'shared' cert to build APK
...
make build uses 'shared' cert in build/make/target/product/security/.
If LatinIME APK built with AndroidStudio doesn't use the same signing
cert, then you cannot install the APK into AOSP image, which is not
convenient.
With this CL, AndroidStudio build also uses the same signing cert.
Note that shared.keystore was built as follows.
$ openssl pkcs8 -inform DER -nocrypt \
-in build/make/target/product/security/shared.pk8 \
-out shared.pem
$ openssl pkcs12 -export \
-in build/make/target/product/security/shared.x509.pem \
-inkey shared.pem -out shared.p12 \
-password pass:android -name AndroidDebugKey
$ keytool -importkeystore -deststorepass android \
-destkeystore shared.keystore -srckeystore shared.p12 \
-srcstoretype PKCS12 -srcstorepass android
Fix: 110741422
Test: made sure that the APK built with Android Studio can be
installed to an AOSP build
Change-Id: I471a87e190b15ff02bb06849e4660ed7898897a5
2018-07-25 18:08:35 -07:00
Yohei Yukawa
41f89ae88c
Specify version code in AndroidManifest.xml
...
This should be the most convenient way for both make build and Android
Studio build to share the same version code.
Bug: 110741422
Test: tapas LatinIME LatinIMETests arm64 userdebug && make -j
Change-Id: I35f850c392553b2640a4c3c7398441ac28e90eca
2018-07-25 17:08:47 -07:00
Yohei Yukawa
9cd42f39eb
Move <uses-sdk /> to a differnt XML
...
Basically Android Studio does want targetSdkVersion to be specified in
build.gradle rather than AndroidManifest.xml. To make both make build
and Android Studio build happy, this CL splits <uses-sdk /> from the
main AndroidManifest.xml to a different file and let them merged in
make build.
There should be no behavior change.
Bug: 110741422
Test: Manually verified that there is no difference in
AndroidManifest.xml in the APK.
Change-Id: Ib673bca5a31b2f95329c9310a127ec0701bd8fdc
2018-07-25 14:21:09 -07:00
Bill Yi
501ff64cfd
Import translations. DO NOT MERGE
...
Change-Id: I55e880457966992e25acd30cc65390e80fa4a515
Auto-generated-cl: translation import
2018-07-21 20:50:09 -07:00
TreeHugger Robot
992d47a237
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-07-20 18:36:38 +00:00
TreeHugger Robot
a824eac6e2
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-07-20 18:14:33 +00:00
Bill Yi
1754bcd410
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I0a07d63a0916cf33bbebcf68bd58bef0dfb91826
2018-07-19 21:21:33 -07:00
Bill Yi
315da31882
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ifffe3a45508e97013f768a0f7949cb2f8571acee
2018-07-19 21:20:48 -07:00
Bill Yi
b1d8302e3f
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Icc6eca523dd0cad7c8087aa0ede4edbd7ac9d748
2018-07-19 21:18:51 -07:00
Yohei Yukawa
2802250415
Remove unused class PersonalDictionaryLookup
...
PersonalDictionaryLookup has never been used. Usually proguard can
remove this class but it also makes it difficult to run unit tests.
We should just remove this unused class.
Bug: 111164993
Test: compile
Test: No new test failure
Change-Id: I732db94cb3aac4ed9c6b5954679b896334a12a9c
2018-07-04 23:13:18 -07:00
TreeHugger Robot
416889655a
Merge "Import translations. DO NOT MERGE"
2018-06-27 17:38:20 +00:00
TreeHugger Robot
b5e50dd6b5
Merge "Import translations. DO NOT MERGE"
2018-06-27 17:30:51 +00:00
Bill Yi
615a9ff532
Import translations. DO NOT MERGE
...
Change-Id: Ib1fbe9d70fcb60c19b0323490a6b8cb147e83bed
Auto-generated-cl: translation import
2018-06-27 08:51:02 -07:00
Bill Yi
eb5173e7b3
Import translations. DO NOT MERGE
...
Change-Id: I3494a9c6608aafc5406ca9a6f341983fe82feccc
Auto-generated-cl: translation import
2018-06-27 08:50:14 -07:00
Bill Yi
e58de4a04e
Import translations. DO NOT MERGE
...
Change-Id: Ia3fb708923998222608c8c4de5617ee4ad6e936d
Auto-generated-cl: translation import
2018-06-27 08:48:22 -07:00
TreeHugger Robot
f1185e3120
Merge "Merge inputmethodcommon into LatinIME repo"
2018-06-25 16:24:57 +00:00
Yohei Yukawa
5b65f03cff
Remove an unused layout file
...
This layout file was copied from Settings app but in LatinIME it has
never been used. Also, android:onClick attributes in that layout file
are pointing to non-existing method in LatinIME, which causes lint
warnings.
Since tihs files has never been used in LatinIME, there should be no
user-visible behavior change.
Bug: 110757803
Test: tapas LatinIME && make -j
Change-Id: Ib51744979df333ac432aefc54ef7d0f413cf6161
2018-06-24 16:50:43 -07:00
Yohei Yukawa
733a0ea406
Merge inputmethodcommon into LatinIME repo
...
This is a preparation to deprecate frameworks/opt/inputmethodcommon
repository.
Currently repository 'inputmethodcommon' is used only from LatinIME.
Having such a repository only for one project is overkill. Also, to
add gradle build support to LatinIME project, it would be much easier
LatinIME didn't have such a dependency.
This CL mechanically copies files in 'inputmethodcommon' repository to
'LatinIME' repository. In theory there should be no behavior change.
Bug: 110741521
Test: tapas LatinIME && make -j
Change-Id: I3fabb038be9a944dcd9ef79ffcc89800a5f0bf5a
2018-06-24 15:52:36 -07:00
TreeHugger Robot
900a59f177
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-06-22 00:01:23 +00:00
TreeHugger Robot
79f43db513
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-06-21 22:59:59 +00:00
Bill Yi
3fc7472bcf
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ifdefd11713addfc8ffedee5f65b9c842cbe3a435
2018-06-21 12:18:33 -07:00
Bill Yi
e0a1f83d8b
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I3a99b392b7d303bac6c0e702029642b75419a6cb
2018-06-21 12:17:47 -07:00
Bill Yi
d25ca81e5d
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I8984bc6cf378f0efcbcb0e7a1d601614045c6d10
2018-06-21 12:15:36 -07:00
TreeHugger Robot
4569741c3f
Merge "Import translations. DO NOT MERGE"
2018-06-20 22:08:13 +00:00
TreeHugger Robot
92734fcbae
Merge "Import translations. DO NOT MERGE"
2018-06-20 22:04:12 +00:00
Bill Yi
dd57cac3e8
Import translations. DO NOT MERGE
...
Change-Id: I161eb84ec4a68d0983aeaffad5ac4b4f68e64afc
Auto-generated-cl: translation import
2018-06-20 11:32:37 -07:00
Bill Yi
342c8a31c0
Import translations. DO NOT MERGE
...
Change-Id: I5e073ffc26f474f27faafc7f0e1c28858a0f2d1a
Auto-generated-cl: translation import
2018-06-20 11:31:47 -07:00
Bill Yi
d995f95355
Import translations. DO NOT MERGE
...
Change-Id: I268ff60118e223b9645b93e6af9ec75efb2d8003
Auto-generated-cl: translation import
2018-06-20 11:29:50 -07:00
Bill Yi
5223e55714
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Idfabfb70bd18c49a7c22d374d3679682228e9a6f
2018-06-03 12:00:24 -07:00
TreeHugger Robot
92db44e865
Merge "Import translations. DO NOT MERGE"
2018-05-26 02:39:44 +00:00
Bill Yi
6f52cfc821
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ie39b03988909ff74c926f29324818007de3c624b
2018-05-24 17:09:14 -07:00
Bill Yi
e5218a757b
Import translations. DO NOT MERGE
...
Change-Id: Ia196c88f1238f9b8332beaff05066fb585dc899f
Auto-generated-cl: translation import
2018-05-24 17:08:22 -07:00
Bill Yi
e3406ff0c1
Import translations. DO NOT MERGE
...
Change-Id: If609cecd258ccedd9073d17d342e2847e2f19909
Auto-generated-cl: translation import
2018-05-24 16:59:38 -07:00
Bill Yi
1896f3436b
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ie24f420e99418085e9c202fdea3dac9773fb30a5
2018-05-22 16:31:38 -07:00
TreeHugger Robot
2435eb87ba
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-05-20 13:49:14 +00:00
Bill Yi
cf0305126e
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I7a1a6a0b898a05da415b67c0e963bb32122c850f
2018-05-20 04:06:48 -07:00
Bill Yi
9c9b94dbff
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I0e9cf9c7d530ee93b2ffdeb219971660e87bfe18
2018-05-20 04:05:45 -07:00
TreeHugger Robot
6ba0e76bfc
Merge "Import translations. DO NOT MERGE"
2018-05-17 18:06:33 +00:00
Bill Yi
ce747fd519
Import translations. DO NOT MERGE
...
Change-Id: I317ac1356bffec441fa84739514f537b28482715
Auto-generated-cl: translation import
2018-05-17 01:33:24 -07:00
Bill Yi
4fb9889adf
Import translations. DO NOT MERGE
...
Change-Id: I5e52c7257c1c5e831305bf346f75a21cca1dc6c7
Auto-generated-cl: translation import
2018-05-17 01:32:05 -07:00
vineel sadineni
d256927b93
Migrated various apps under packages/inputmethods/LatinIME/ to androidx
...
Bug: 76692459
Test: mmma packages/inputmethods/LatinIME/
Change-Id: Ib76af6f6db1a0dd5cf64a06a4ea56151712e9692
2018-05-15 14:55:43 -07:00
android-build-team Robot
2d86f24cb0
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-05-07 05:47:51 +00:00
Yohei Yukawa
7a2459ca13
Merge java-overridable/ into java/ again
...
This CL a logical revert of a previous CL [1], which separated Java
files into common ones and overridable ones. Now that that overriding
concept is no longer used, there is no need to keep having separate
directory structure.
[1]: Ic734bd4d20aa050c688a3158b1a382ae0ac18991
fb74ab15c1
Fix: 79323502
Test: make -j aosp_taimen-userdebug && make -j
Test: tapas LatinIME && make -j
Change-Id: I2090bc25d18e6d4f24e91c2cbfe832755cbb4e8f
2018-05-06 20:46:17 -07:00
Bill Yi
0a84cab445
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Idcaaccff8ab717edfc84ed27e30b9b0a3288ba10
2018-05-03 19:17:59 -07:00
Bill Yi
7a51bb5a4f
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I8dd583f9628d0e0caa5a45cc646688f1fbc2ea08
2018-05-03 19:17:10 -07:00
android-build-team Robot
b280820dc4
Merge "Import translations. DO NOT MERGE"
2018-05-02 14:24:22 +00:00
android-build-team Robot
b144f0f54a
Merge "Import translations. DO NOT MERGE"
2018-05-02 14:14:21 +00:00
android-build-team Robot
d6b7fb7cbe
Merge "Import translations. DO NOT MERGE"
2018-05-02 14:14:02 +00:00
android-build-team Robot
98264d92c2
Merge "Import translations. DO NOT MERGE"
2018-05-02 14:13:29 +00:00
Bill Yi
b3a487c620
Import translations. DO NOT MERGE
...
Change-Id: I9e53e7535fda1d3968ee37663fcc10a0db31eeb3
Auto-generated-cl: translation import
2018-05-02 00:07:14 -07:00
Bill Yi
08853eb06e
Import translations. DO NOT MERGE
...
Change-Id: I53811c706460dfff30ac1b6539fc767c464de499
Auto-generated-cl: translation import
2018-05-02 00:06:29 -07:00
Bill Yi
14d86e0cac
Import translations. DO NOT MERGE
...
Change-Id: I0b47773d779b0bdf951c89b4f6722905be1b81b0
Auto-generated-cl: translation import
2018-05-02 00:04:36 -07:00
Bill Yi
fb5cf9e12e
Import translations. DO NOT MERGE
...
Change-Id: I378efa60a01071f41b3bcdc88861051853867528
Auto-generated-cl: translation import
2018-05-02 00:03:29 -07:00
Bill Yi
b51944dbaf
Import translations. DO NOT MERGE
...
Change-Id: I0446336688bb75efb9d0f8a41c035a60344a3762
Auto-generated-cl: translation import
2018-05-02 00:02:19 -07:00
android-build-team Robot
12afc16019
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-28 05:49:56 +00:00
android-build-team Robot
a282948754
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-28 05:19:33 +00:00
android-build-team Robot
72de6118a9
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-28 05:08:46 +00:00
Bill Yi
067fff5620
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I1fa1dd1a62e97fb595a9004edf1d69071d2bdce8
2018-04-27 20:31:53 -07:00
Bill Yi
6e84e34d9c
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I6f68e016f4e4206d43fb5a659ddfab21184f6910
2018-04-27 20:27:40 -07:00
Bill Yi
aa99b5fc39
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I1803419e91e88e1601df974ba87495671de1049d
2018-04-27 20:26:07 -07:00
Bill Yi
2ff803e2a3
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ic5a4c6c9cda95d912d75bcc49da8656571d4d14b
2018-04-27 20:24:12 -07:00
TreeHugger Robot
9cb0fc6582
Merge "Import translations. DO NOT MERGE"
2018-04-21 17:08:25 +00:00
TreeHugger Robot
f3e6e2deb8
Merge "Import translations. DO NOT MERGE"
2018-04-21 17:06:22 +00:00
TreeHugger Robot
e91c739765
Merge "Import translations. DO NOT MERGE"
2018-04-21 17:04:33 +00:00
Bill Yi
7ec343ba9a
Import translations. DO NOT MERGE
...
Change-Id: If993ed37322c2c3301a0e89295872afa4a0f7992
Auto-generated-cl: translation import
2018-04-21 06:50:09 -07:00
Bill Yi
a918b1df6a
Import translations. DO NOT MERGE
...
Change-Id: I5a2cfb0ec96d21a24892d0d023d10c7dad4c3af1
Auto-generated-cl: translation import
2018-04-21 06:49:52 -07:00
Bill Yi
7f3fbc5e37
Import translations. DO NOT MERGE
...
Change-Id: I8eaa684412c0b0ce80d6746f3a275c61ce5fa820
Auto-generated-cl: translation import
2018-04-21 06:49:14 -07:00
Bill Yi
57314e45d6
Import translations. DO NOT MERGE
...
Change-Id: I3df9864cae24cf551c0f9394fd62491655fe648b
Auto-generated-cl: translation import
2018-04-21 06:48:46 -07:00
TreeHugger Robot
0262bf8793
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-17 14:20:23 +00:00
TreeHugger Robot
ae571ef6e3
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-17 14:18:34 +00:00
TreeHugger Robot
4b3d9d53c2
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-17 14:18:32 +00:00
Bill Yi
d77211c409
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ifb115e7b8384e9ba72aa7c33daa8a79fa1b3b339
2018-04-17 05:36:43 -07:00
Bill Yi
0f5d726e61
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I060b9121b992698d1874db2c0854a15f2291d932
2018-04-17 05:36:00 -07:00
Bill Yi
d60edfd972
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ic07e1affb14655e1e0d5fe82ffb4fcfc063afd08
2018-04-17 05:34:08 -07:00
Bill Yi
b251eda396
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: If17184d1bc05e2159b1a7bdcb452d807454799e3
2018-04-17 05:33:04 -07:00
TreeHugger Robot
957cdc0856
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-14 15:26:23 +00:00
TreeHugger Robot
0fb751de7b
Merge "Import translations. DO NOT MERGE"
2018-04-14 15:26:21 +00:00
TreeHugger Robot
a56f89f4f1
Merge "Import translations. DO NOT MERGE"
2018-04-14 15:24:40 +00:00
Bill Yi
33aa180429
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I257b570a61999ba1cc5b4eeb9097395ddf542387
2018-04-14 04:44:47 -07:00
Bill Yi
9cd11a83df
Import translations. DO NOT MERGE
...
Change-Id: I6137657e2be2a5b55cb90d4f051715f17eb604e3
Auto-generated-cl: translation import
2018-04-14 04:44:06 -07:00
Bill Yi
754b3a4f0c
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I90541c9acb250a7f8d98aeab2d6c0756142dde8a
2018-04-14 04:42:53 -07:00
Bill Yi
d45c50674e
Import translations. DO NOT MERGE
...
Change-Id: I1f85f835cd9ef6a116e44a2821f9f6e5f9f3dabe
Auto-generated-cl: translation import
2018-04-14 04:42:17 -07:00
Bill Yi
95ca14565c
Import translations. DO NOT MERGE
...
Change-Id: Idad2d42b1bedbfe6fa522ff2a885fb5d2d98915a
Auto-generated-cl: translation import
2018-04-14 04:36:38 -07:00
TreeHugger Robot
cfb0e05e03
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-13 17:43:14 +00:00
TreeHugger Robot
c6180042bd
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-13 17:37:16 +00:00
Bill Yi
90385d74ec
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I36be4bea4ac8c5abfff6d5a6d5ea9c64b966ee08
2018-04-12 17:45:23 -07:00
Bill Yi
0d79a7ba45
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: If78ee30938b0099157545e9344bf833e87666380
2018-04-12 17:44:32 -07:00
Bill Yi
9c7152841a
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I9701e92572087d4ab895de9e2ba9b34eeeb80a3f
2018-04-12 17:42:38 -07:00
TreeHugger Robot
29ec5a0368
Merge "Import translations. DO NOT MERGE"
2018-04-11 23:36:36 +00:00
TreeHugger Robot
3b24f730b7
Merge "Import translations. DO NOT MERGE"
2018-04-11 23:20:42 +00:00
Bill Yi
e1b32f9fc8
Import translations. DO NOT MERGE
...
Change-Id: I36f2f6dc4bb1f2792e9302a2892a44c2f8ec776f
Auto-generated-cl: translation import
2018-04-11 10:58:15 -07:00
Bill Yi
acddce3368
Import translations. DO NOT MERGE
...
Change-Id: I5fee973bbec1c45e90f9d9a0bc83ab67aa6606ca
Auto-generated-cl: translation import
2018-04-11 10:58:02 -07:00
Bill Yi
bdf967df86
Import translations. DO NOT MERGE
...
Change-Id: I654a25fe5562eca1086a5707bfd28d0c5d6ed7d5
Auto-generated-cl: translation import
2018-04-11 10:57:31 -07:00
TreeHugger Robot
be30b670e8
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-04-06 02:30:23 +00:00
Bill Yi
77eb59d530
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I8611633c828bca5a382717377f31637e420da3a2
2018-04-05 18:05:56 -07:00
Bill Yi
e5316b6432
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I85d8840016e8926122059fe4d82434d13158dd3e
2018-04-05 18:05:13 -07:00
Bill Yi
6ad8431592
Import translations. DO NOT MERGE
...
Change-Id: I67312aec8a571d0a3397caa4624dabe644629430
Auto-generated-cl: translation import
2018-04-04 20:15:25 -07:00
TreeHugger Robot
67f5702e92
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-29 22:41:18 +00:00
TreeHugger Robot
be33c82494
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-29 22:14:03 +00:00
TreeHugger Robot
681033c4e9
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-29 22:04:46 +00:00
TreeHugger Robot
c2527714f2
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-29 21:58:22 +00:00
TreeHugger Robot
e02661104a
Merge "Import translations. DO NOT MERGE"
2018-03-29 21:29:34 +00:00
Bill Yi
735829d78a
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Id0ba951beea5643ad94b46b6bc130b62f6fbdccd
2018-03-29 13:43:23 -07:00
Bill Yi
cb0da397e1
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I0bf3d38b91147f46458f2757dd8428f6d8fd71b4
2018-03-29 13:13:37 -07:00
Bill Yi
159ff5172f
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I0f247ebd87cfa44c70b03b754d96199959356475
2018-03-29 13:09:54 -07:00
Bill Yi
c8ddf9c836
Import translations. DO NOT MERGE
...
Change-Id: I2d155bdb804a1142fbb882751dea5bb66f428f57
Auto-generated-cl: translation import
2018-03-29 13:09:15 -07:00
Bill Yi
09db767561
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ia13d3628351c951db1bbf39034a3583db78b9a3a
2018-03-29 13:07:20 -07:00
Bill Yi
e1a85589b0
Import translations. DO NOT MERGE
...
Change-Id: Ibabb404dec76f16cfb769096bf47363d2b0b29b0
Auto-generated-cl: translation import
2018-03-29 13:06:08 -07:00
Bill Yi
8308e194af
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Id320e3bbd4208e55604cdb08d684805d2e5cbca7
2018-03-29 13:00:13 -07:00
Bill Yi
dffcb3b27e
Import translations. DO NOT MERGE
...
Change-Id: Ice8286a5c35c59ca4e1a771585e5dbd6058051a6
Auto-generated-cl: translation import
2018-03-23 18:12:02 -07:00
TreeHugger Robot
bf0dbd4cc2
Merge "Import translations. DO NOT MERGE"
2018-03-16 22:14:26 +00:00
TreeHugger Robot
17f6106f29
Merge "Import translations. DO NOT MERGE"
2018-03-16 22:14:23 +00:00
TreeHugger Robot
0b4488568f
Merge "Import translations. DO NOT MERGE"
2018-03-16 22:05:17 +00:00
TreeHugger Robot
3882af2ef8
Merge "Import translations. DO NOT MERGE"
2018-03-16 22:01:48 +00:00
Bill Yi
ce963f1175
Import translations. DO NOT MERGE
...
Change-Id: Ibfd28d093f8e1009db963d5046ca37a595f7c571
Auto-generated-cl: translation import
2018-03-16 10:53:11 -07:00
Bill Yi
e79a912ed4
Import translations. DO NOT MERGE
...
Change-Id: I594310c4cfb895f1cb76bb742a36801db40194b3
Auto-generated-cl: translation import
2018-03-16 10:52:16 -07:00
Bill Yi
d7437d225f
Import translations. DO NOT MERGE
...
Change-Id: Ic3ebf1761f2d6a4fcf1a28b4b285946e275fa849
Auto-generated-cl: translation import
2018-03-16 10:52:09 -07:00
Bill Yi
c44c3e800b
Import translations. DO NOT MERGE
...
Change-Id: I65f68a96e3a73c635ec0cc10bac66253a3c35178
Auto-generated-cl: translation import
2018-03-16 10:52:03 -07:00
Bill Yi
5686c6a181
Import translations. DO NOT MERGE
...
Change-Id: Ib74b519b36e8eb17c3868dc39b2f642ca8fcf86a
Auto-generated-cl: translation import
2018-03-16 10:51:50 -07:00
TreeHugger Robot
21e93b6e39
Merge "Import translations. DO NOT MERGE"
2018-03-14 20:15:19 +00:00
TreeHugger Robot
ed57a8be5f
Merge "Import translations. DO NOT MERGE"
2018-03-14 20:08:21 +00:00
TreeHugger Robot
28198b715b
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-14 19:37:06 +00:00
TreeHugger Robot
5016d48709
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-14 19:22:17 +00:00
TreeHugger Robot
f8aa14ad01
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-14 19:20:39 +00:00
TreeHugger Robot
0c0c287cf4
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-14 19:19:44 +00:00
TreeHugger Robot
1d557f3bb1
Merge "Import translations. DO NOT MERGE" into pi-dev
2018-03-14 19:18:31 +00:00
TreeHugger Robot
31bfb7dd7f
Merge "Import translations. DO NOT MERGE"
2018-03-14 18:50:17 +00:00
TreeHugger Robot
9a20a4b79a
Merge "Import translations. DO NOT MERGE"
2018-03-14 18:47:59 +00:00
TreeHugger Robot
2ddd57b5cd
Merge "Import translations. DO NOT MERGE"
2018-03-14 18:47:56 +00:00
Bill Yi
fa68d89abb
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: If5e7d6455b5c0f803c7814cecb01c70b7aa82fd5
2018-03-13 22:50:33 -07:00
Bill Yi
3f5c1e8841
Import translations. DO NOT MERGE
...
Change-Id: Id8d06fcf501563341c58392123efb409f3b65e6c
Auto-generated-cl: translation import
2018-03-13 22:37:22 -07:00
Bill Yi
9bb79400c1
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I13115d3fb4042dc1ea5dc49d3cd9cdbb51b48cbd
2018-03-13 22:21:56 -07:00
Bill Yi
45b8849783
Import translations. DO NOT MERGE
...
Change-Id: I42c23f81d2bb8a35548b853295874f34e6594036
Auto-generated-cl: translation import
2018-03-13 22:21:19 -07:00
Bill Yi
8930583456
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: Ib6a0253d1220373e43075a72a693c99f8fc989c9
2018-03-13 22:16:51 -07:00
Bill Yi
192da49f7b
Import translations. DO NOT MERGE
...
Change-Id: I3e9a439a21d1d619e0846ad9cbac52786556e17d
Auto-generated-cl: translation import
2018-03-13 22:15:55 -07:00
Bill Yi
8096251b3f
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I80733d3124f1e2513e1f503bb9b54a6fc4766092
2018-03-13 22:14:31 -07:00
Bill Yi
be9680bccd
Import translations. DO NOT MERGE
...
Change-Id: Ic3ad12712b0dafc411511ef7ce4bb72b40f793b0
Auto-generated-cl: translation import
2018-03-13 22:14:00 -07:00
Bill Yi
17c4ccfd42
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I023338380b55fda0d2191f26bc27224090a635e6
2018-03-13 22:12:27 -07:00
Bill Yi
9d756d1b98
Import translations. DO NOT MERGE
...
Change-Id: I39605a8dc3460e24db136c6d8ca95e15986b108b
Auto-generated-cl: translation import
2018-03-13 22:11:43 -07:00
Bill Yi
149e487620
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I8e55213f33a514154da19b7040d7583fb0f2fef1
2018-03-13 22:10:35 -07:00
Bill Yi
54ad6b44a1
Import translations. DO NOT MERGE
...
Change-Id: I03ade8521be1fc2db53bbed861f05bc6649eb41d
Auto-generated-cl: translation import
2018-03-13 22:10:01 -07:00
Bill Yi
37cf7f0ad5
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 64712476
Change-Id: I326224fea10109fc1743473b385674248be51312
2018-03-09 04:21:20 -08:00
Bill Yi
62e20f22dd
Import translations. DO NOT MERGE
...
Change-Id: I3304735d994dc3ba1e504f969ab7fecdc077383a
Auto-generated-cl: translation import
2018-03-09 04:15:21 -08:00
Bill Yi
1ca48057c7
Import translations. DO NOT MERGE
...
Change-Id: I64f06b2170cfadbd3629606a63d68e6e6458d8eb
Auto-generated-cl: translation import
2018-03-06 12:03:22 -08:00
TreeHugger Robot
906e940da8
Merge "Import translations. DO NOT MERGE"
2018-03-02 22:55:47 +00:00
Bill Yi
e144779f20
Import translations. DO NOT MERGE
...
Change-Id: I07ca65fd9e1e85ecd204a0104e96162157f4cb15
Auto-generated-cl: translation import
2018-03-01 17:56:37 -08:00
Bill Yi
2d1fad36bb
Import translations. DO NOT MERGE
...
Change-Id: I1858b637000d24f8e388532e9cde24b92ef04dbf
Auto-generated-cl: translation import
2018-03-01 17:35:58 -08:00
TreeHugger Robot
05b1898de5
Merge "Import translations. DO NOT MERGE"
2018-02-22 17:43:36 +00:00
Bill Yi
9efa4d6a6f
Import translations. DO NOT MERGE
...
Change-Id: I0b9d7bfcf13bb94a5f2c8e0fa91a3353601d7a3c
Auto-generated-cl: translation import
2018-02-22 07:48:10 -08:00
Bill Yi
103a4ee249
Import translations. DO NOT MERGE
...
Change-Id: I39f0ed6f033cfda9f6c4b6b645cf8961ebd249a2
Auto-generated-cl: translation import
2018-02-22 07:33:36 -08:00
Bill Yi
447768c700
Import translations. DO NOT MERGE
...
Change-Id: Ia602bd23a45aa8c167496a4ea43b16a89dfb06e8
Auto-generated-cl: translation import
2018-02-12 12:08:26 -08:00
TreeHugger Robot
2c8be260f0
Merge "Import translations. DO NOT MERGE"
2018-02-05 05:08:23 +00:00
TreeHugger Robot
7c5045a41e
Merge "Import translations. DO NOT MERGE"
2018-02-04 05:07:07 +00:00
Bill Yi
545ba884e8
Import translations. DO NOT MERGE
...
Change-Id: I5b377cabe9611889f3d71275d158c9206eee8924
Auto-generated-cl: translation import
2018-02-03 08:24:04 -08:00
Bill Yi
568630ce85
Import translations. DO NOT MERGE
...
Change-Id: Ie5eaa55a4825ee888251b678c419367ca5110bb8
Auto-generated-cl: translation import
2018-02-03 08:23:54 -08:00
Bill Yi
a1f7e9fcb1
Import translations. DO NOT MERGE
...
Change-Id: I413a68edeae0b928a25699e8d8fd09faa6f879b1
Auto-generated-cl: translation import
2018-02-03 08:23:43 -08:00
TreeHugger Robot
655bb6e4c4
Merge "Import translations. DO NOT MERGE"
2018-01-19 02:18:19 +00:00
Bill Yi
5f140c1ac4
Import translations. DO NOT MERGE
...
Change-Id: Icb5a5bc1372c3981edee4e1330d0e45d0a8d11fb
Auto-generated-cl: translation import
2018-01-18 13:54:29 -08:00
Bill Yi
6a135372ec
Import translations. DO NOT MERGE
...
Change-Id: If570e0e26491142b2b7d51b36765415688cb62c9
Auto-generated-cl: translation import
2018-01-18 13:53:50 -08:00
TreeHugger Robot
f1829b350a
Merge "Import translations. DO NOT MERGE"
2018-01-18 10:57:35 +00:00
Bill Yi
818f4cce29
Import translations. DO NOT MERGE
...
Change-Id: Iea5bb3e0da88af2e241348ec41fb29fb180c2e5d
Auto-generated-cl: translation import
2018-01-17 14:08:10 -08:00
Bill Yi
588304b4bc
Import translations. DO NOT MERGE
...
Change-Id: I0c204214cd2fb1dac05cb42a52dacfd7ad2ad3f5
Auto-generated-cl: translation import
2018-01-17 14:07:41 -08:00
TreeHugger Robot
138981df0c
Merge "Import translations. DO NOT MERGE"
2018-01-10 20:47:22 +00:00
TreeHugger Robot
65a69367ba
Merge "Import translations. DO NOT MERGE"
2018-01-10 20:47:13 +00:00
Bill Yi
dd9ac2a244
Import translations. DO NOT MERGE
...
Change-Id: I56ab517049d2a97ff05bb40466438a41888a9cc4
Auto-generated-cl: translation import
2018-01-10 09:04:45 -08:00
Bill Yi
31100faf04
Import translations. DO NOT MERGE
...
Change-Id: I5cc214bd3fa9a63a2e56aa3157b4b3db50e68049
Auto-generated-cl: translation import
2018-01-10 09:04:29 -08:00
Bill Yi
f2bf295b51
Import translations. DO NOT MERGE
...
Change-Id: If9e86550fe5c96e654ebba4a407e49cac4203187
Auto-generated-cl: translation import
2018-01-10 09:04:15 -08:00
TreeHugger Robot
beae30c4e8
Merge "Import translations. DO NOT MERGE"
2017-12-20 19:33:57 +00:00
TreeHugger Robot
fd2574bda4
Merge "Import translations. DO NOT MERGE"
2017-12-20 19:22:45 +00:00
Bill Yi
f435ce79ae
Import translations. DO NOT MERGE
...
Change-Id: I265c7babd1e0f3d6ed7dc9ddf7779f770520cca5
Auto-generated-cl: translation import
2017-12-19 18:01:17 -08:00
Bill Yi
f9d361dcd8
Import translations. DO NOT MERGE
...
Change-Id: I47cd7bc7be3a009b204ecd509b98577d5a07ee38
Auto-generated-cl: translation import
2017-12-19 17:47:00 -08:00
Bill Yi
880763fb04
Import translations. DO NOT MERGE
...
Change-Id: Id98113aaa443c1107240b4002a35a8d9e1ea129b
Auto-generated-cl: translation import
2017-12-19 17:42:24 -08:00
TreeHugger Robot
48011de49f
Merge "Import translations. DO NOT MERGE"
2017-12-08 20:00:11 +00:00
Bill Yi
3d21834741
Import translations. DO NOT MERGE
...
Change-Id: I1fb69251a612e2f064b418a651e5c679aeb6f528
Auto-generated-cl: translation import
2017-12-07 17:02:42 -08:00
Bill Yi
4d9d9b3224
Import translations. DO NOT MERGE
...
Change-Id: I23bdefa3861b985df5f0cec0cfc84e85df449e58
Auto-generated-cl: translation import
2017-12-07 17:02:31 -08:00
TreeHugger Robot
17b2ad33b3
Merge "Import translations. DO NOT MERGE"
2017-12-01 08:38:30 +00:00
TreeHugger Robot
e3b9274f72
Merge "Import translations. DO NOT MERGE"
2017-12-01 08:31:24 +00:00
Bill Yi
3fc52c759c
Import translations. DO NOT MERGE
...
Change-Id: I04edbba85dc4d86470666ec0ff9bad841af7524a
Auto-generated-cl: translation import
2017-11-30 16:23:02 -08:00
Bill Yi
1fb66b791f
Import translations. DO NOT MERGE
...
Change-Id: I4e7b720ad4a2493ac24a44e66a4c52f8ef63ceac
Auto-generated-cl: translation import
2017-11-30 16:22:35 -08:00
Bill Yi
d1a4333ce0
Import translations. DO NOT MERGE
...
Change-Id: Ib36b48a0a806dc351ffba5a5581f85c017ca348a
Auto-generated-cl: translation import
2017-11-30 16:22:18 -08:00
Bill Yi
7a38b2ca38
Import translations. DO NOT MERGE
...
Change-Id: I9888f32b8fe115df2509ec58edf97fac514a6984
Auto-generated-cl: translation import
2017-11-26 11:33:43 -08:00
Bill Yi
714c4d4dbf
Import translations. DO NOT MERGE
...
Change-Id: I2ef7c3c9861f0b171d90c8224f5a9b11550a0482
Auto-generated-cl: translation import
2017-11-20 12:43:12 -08:00
Bill Yi
99a877b0e2
Import translations. DO NOT MERGE
...
Change-Id: Id418d38eb98ab8208f06e5c7af1ca796296937dd
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-11-06 23:16:44 -08:00
Bill Yi
bd08799b4a
Import translations. DO NOT MERGE
...
Change-Id: Ibbdbe5ae6503c20da9a53d82ee2cb3d68e11a397
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-10-30 17:24:56 -07:00
Bill Yi
7109c6c084
Import translations. DO NOT MERGE
...
Change-Id: I9de8c7fc233e8f6d348ed82ede7645a9f16cd679
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-10-19 06:10:10 -07:00
Bill Yi
bb1d96b90a
Import translations. DO NOT MERGE
...
Change-Id: Ie61f6f70a9e9995b5fe12e50506c05076c17165f
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-10-11 06:34:02 -07:00
Bill Yi
1fc7961d2e
Import translations. DO NOT MERGE
...
Change-Id: I994d8b6a74b094a0900cfb2c681924b3a2451173
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-27 17:37:57 -07:00
TreeHugger Robot
af5c8c4ba1
Merge "Import translations. DO NOT MERGE"
2017-09-26 22:54:23 +00:00
Bill Yi
bbad2a3695
Import translations. DO NOT MERGE
...
Change-Id: Ie9579595bc2a320799a101c5810b9a67169ee187
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-26 13:03:58 -07:00
Bill Yi
90bbd90c87
Import translations. DO NOT MERGE
...
Change-Id: I26f6a1a5cfd0302f1c01b132d718b4c2d7a2ec36
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-26 12:49:24 -07:00
TreeHugger Robot
937238d09b
Merge "Import translations. DO NOT MERGE"
2017-09-21 18:33:31 +00:00
Bill Yi
7a060fe31e
Import translations. DO NOT MERGE
...
Change-Id: I83791c319069fe717fae58e55da5e494666ed93a
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-20 18:58:41 -07:00
Bill Yi
2d47117dde
Import translations. DO NOT MERGE
...
Change-Id: I8920f9ac19ae4b76df4f2f8ba0e4cc9f4e0c3064
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-20 18:48:06 -07:00
Bill Yi
59cad76e10
Import translations. DO NOT MERGE
...
Change-Id: I34bc7146581ac721afb44f2fc850aecec5f1df04
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-18 11:24:41 -07:00
TreeHugger Robot
472c455b88
Merge "Import translations. DO NOT MERGE"
2017-09-13 21:03:07 +00:00
TreeHugger Robot
5e8978772b
Merge "Import translations. DO NOT MERGE"
2017-09-13 20:49:57 +00:00
TreeHugger Robot
505b196f8f
Merge "Import translations. DO NOT MERGE"
2017-09-13 20:46:24 +00:00
Bill Yi
aa8ec32511
Import translations. DO NOT MERGE
...
Change-Id: Ibc92208e3800a7140d7bb484023c52ee802a720f
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-13 10:20:34 -07:00
Bill Yi
14caf87595
Import translations. DO NOT MERGE
...
Change-Id: Id678688ed65b39dfe513c7f054e701687e1bec00
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-13 10:11:47 -07:00
Bill Yi
6c3270acfb
Import translations. DO NOT MERGE
...
Change-Id: I0d80d1537c332c6aed08a7f18d9b60374d9cb77c
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-13 10:09:57 -07:00
Bill Yi
6681bc17f5
Import translations. DO NOT MERGE
...
Change-Id: I498395ff1f17b1e7c69bbab53daa3dd2aac1628a
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-13 10:07:44 -07:00
TreeHugger Robot
aa4e5b2f46
Merge "Import translations. DO NOT MERGE"
2017-09-06 22:10:44 +00:00
TreeHugger Robot
cc8200c134
Merge "Import translations. DO NOT MERGE"
2017-09-06 19:36:12 +00:00
TreeHugger Robot
309269df14
Merge "Import translations. DO NOT MERGE"
2017-09-06 19:35:19 +00:00
TreeHugger Robot
ff16eb9c5b
Merge "Import translations. DO NOT MERGE"
2017-09-06 18:48:38 +00:00
Bill Yi
f6b8a7b6c4
Import translations. DO NOT MERGE
...
Change-Id: I82167810683476283d148579648330e5486366ad
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-06 06:08:00 -07:00
Bill Yi
3763c0ce2f
Import translations. DO NOT MERGE
...
Change-Id: I7ee76a9e68d6bfc0ef3ab4063f9ce86eed9e42b8
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-06 05:59:02 -07:00
Bill Yi
13a7433245
Import translations. DO NOT MERGE
...
Change-Id: I88013876a5eb7b6e618ec68e93cd038093ee3934
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-06 05:56:35 -07:00
Bill Yi
144209a7a1
Import translations. DO NOT MERGE
...
Change-Id: I5a9bb8217cb263369ee16a9843b8d4766bebc63c
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-06 05:53:12 -07:00
Bill Yi
e91ec17b45
Import translations. DO NOT MERGE
...
Change-Id: Idea9de892c9ee9b365dd00627f26029e95f27f86
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-09-06 05:51:48 -07:00
Yohei Yukawa
5304939381
Introduce a custom intent action to close software keyboard am: fdfc55d3db
...
am: 9f14e616ab
Change-Id: I5c63edc64d2086e57de27f66297a51138ec56182
2017-09-01 20:02:23 +00:00
Yohei Yukawa
9f14e616ab
Introduce a custom intent action to close software keyboard
...
am: fdfc55d3db
Change-Id: I1609eb35be94c3f52870f2ca47e30bd2c66100aa
2017-09-01 19:56:14 +00:00
Yohei Yukawa
fdfc55d3db
Introduce a custom intent action to close software keyboard
...
This CL introduces a custom intent action for apps to ask AOSP Keyboard to
close its software keyboard with guarding it with a signature-protected
permission.
Any app that is signed with the same signature as AOSP Keyboard can have
the following line in AndroidManifest.xml
<uses-permission
android:name="com.android.inputmethod.latin.HIDE_SOFT_INPUT"/>
to request AOSP Keyboard to close its software keyboard as follows.
sendBroadcast(new Intent("com.android.inputmethod.latin.HIDE_SOFT_INPUT")
.setPackage("com.android.inputmethod.latin"));
Test: Manually verified with a test app.
Fixes: 65270710
Change-Id: I4fd2e3a7336ec66c70582a2f274a200cbf035a7f
2017-09-01 00:22:21 -07:00
Bill Yi
84a3a06d39
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 21:39:00 +00:00
TreeHugger Robot
bed643ec81
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 21:02:54 +00:00
TreeHugger Robot
9006745cd0
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 20:43:28 +00:00
TreeHugger Robot
3500677fec
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 20:34:41 +00:00
TreeHugger Robot
b99b77307d
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 20:22:35 +00:00
TreeHugger Robot
7507f50803
Merge "Import translations. DO NOT MERGE" into oc-mr1-dev
2017-08-30 20:21:33 +00:00
Bill Yi
6cd126e584
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: I56e959285ad21b8fc18b5e424187bce5ace3555c
2017-08-30 01:51:20 -07:00
Bill Yi
293352b761
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: Iffae1ebc381b3ecb54787906b386fdbd77f67565
2017-08-30 01:39:27 -07:00
Bill Yi
9fbeed3354
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: I814dea39d3466c37ea0d65f06aee8d8a5a5f67c7
2017-08-30 01:35:28 -07:00
Bill Yi
3a161aa225
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: I9714ae0b53934a4f8d4c90f3aca3127b77ed6ac7
2017-08-30 01:32:57 -07:00
Bill Yi
7e581e8c89
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: I4a7c58d64ce70044c75fa87d03ea329e46b6d4f9
2017-08-30 01:28:51 -07:00
Bill Yi
2f349e1391
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: Ibe5e44462685614d99e1cc353d55e5dfd4ce9431
2017-08-30 01:26:48 -07:00
Bill Yi
8cfbc910dc
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
Bug: 64712476
Change-Id: I3b7e8cbab30f9a4e8a3dbec8e0b89177e1a0c9d8
2017-08-30 01:24:18 -07:00
TreeHugger Robot
498ef04d7b
Merge "Import translations. DO NOT MERGE"
2017-08-29 18:45:57 +00:00
TreeHugger Robot
2763cc618e
Merge "Import translations. DO NOT MERGE"
2017-08-28 20:12:18 +00:00
TreeHugger Robot
1d7b20109b
Merge "Import translations. DO NOT MERGE"
2017-08-28 20:10:28 +00:00
TreeHugger Robot
9573ccdf73
Merge "Import translations. DO NOT MERGE"
2017-08-28 20:04:49 +00:00
Bill Yi
b2d6b24d26
Import translations. DO NOT MERGE
...
Change-Id: Iab827c69cb1e54f0e3f2151e1225d5e8a6c9ed3a
Auto-generated-cl: translation import
2017-08-26 21:16:41 -07:00
Bill Yi
7794a99ccb
Import translations. DO NOT MERGE
...
Change-Id: Ib357590cef65dfb0c7a99f98f9a2ecd6abf6d6f9
Auto-generated-cl: translation import
2017-08-26 21:01:39 -07:00
Bill Yi
7a788c78ed
Import translations. DO NOT MERGE
...
Change-Id: I1cc0c9b73ff9f980ed83ce37c0a216ab8ed2959f
Auto-generated-cl: translation import
2017-08-26 20:59:15 -07:00
Bill Yi
5929c31de6
Import translations. DO NOT MERGE
...
Change-Id: I44b271f3f8b4091f1081d35e2fb67ae09fb7f1e7
Auto-generated-cl: translation import
2017-08-26 20:52:58 -07:00
Bill Yi
9730df86e5
Import translations. DO NOT MERGE
...
Change-Id: I5439a5e9158695376dd196ece1ed0dc47fbf9ee6
Auto-generated-cl: translation import
2017-08-26 20:48:34 -07:00
TreeHugger Robot
1bbdc259ec
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:46:42 +00:00
TreeHugger Robot
4a08c57197
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:33:10 +00:00
TreeHugger Robot
6eff0095d0
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:20:59 +00:00
TreeHugger Robot
f1921334aa
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:13:20 +00:00
TreeHugger Robot
7e9a8057b9
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:09:04 +00:00
TreeHugger Robot
32e33cfcc6
Merge "Import translations. DO NOT MERGE"
2017-08-24 02:08:48 +00:00
Bill Yi
d847cf9a65
Import translations. DO NOT MERGE
...
Change-Id: Ifa31ddbf181a2774a2e375123079e8e8a1dc51a9
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 17:08:15 -07:00
Bill Yi
885f8506fd
Import translations. DO NOT MERGE
...
Change-Id: I7038e2c26f5ecd353406d34c9eeb0c1bc7fa7c57
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:58:47 -07:00
Bill Yi
c8be58d6c4
Import translations. DO NOT MERGE
...
Change-Id: I1fe873de33039cf4338cb44f462fbe8ff76254c5
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:57:34 -07:00
Bill Yi
f867509075
Import translations. DO NOT MERGE
...
Change-Id: I6a29dc635692646a355fd1c80e6b1514fbec41c8
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:56:37 -07:00
Bill Yi
f4a97b7487
Import translations. DO NOT MERGE
...
Change-Id: I4c7ab8b57415af98f21b6a75689504eb665fe6f6
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:55:03 -07:00
Bill Yi
ac2341ce10
Import translations. DO NOT MERGE
...
Change-Id: I49ece9fff65465dfdb33f362178b19983bc7fb1c
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:53:01 -07:00
Bill Yi
3792cdd972
Import translations. DO NOT MERGE
...
Change-Id: I1ee3aa2c9d2701fdd03d6fd02bdef9f3984d69c0
Auto-generated-cl: translation import
Exempt-From-Owner-Approval: translation import
2017-08-23 16:50:11 -07:00
TreeHugger Robot
60039aa968
Merge "Import translations. DO NOT MERGE"
2017-08-16 23:50:44 +00:00