Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c896a2f authored by Ken Wakasa's avatar Ken Wakasa Committed by Android Git Automerger
Browse files

am f71b9640: am d17c8bd9: Update comments

* commit 'f71b9640':
  Update comments
parents b3cf23de f71b9640
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -350,10 +350,10 @@
    <!-- Inform the user that a particular language has an available dictionary -->
    <string name="has_dictionary">Dictionary available</string>

    <!-- Preferences item for enabling to send user statistics to Google -->
    <!-- Preferences item for enabling to send user statistics for development only diagnostics -->
    <string name="prefs_enable_log">Enable user feedback</string>
    <!-- Description for enabling to send user statistics to Google -->
    <string name="prefs_description_log">Help improve this input method editor by automatically sending usage statistics and crash reports to Google.</string>
    <!-- Description for enabling to send user statistics for development only diagnostics -->
    <string name="prefs_description_log">Help improve this input method editor by automatically sending usage statistics and crash reports</string>

    <!-- Title of the item to change the keyboard theme [CHAR LIMIT=20]-->
    <string name="keyboard_layout">Keyboard theme</string>
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session {
            // Greek letters are either in the 370~3FF range (Greek & Coptic), or in the
            // 1F00~1FFF range (Greek extended). Our dictionary contains both sort of characters.
            // Our dictionary also contains a few words with 0xF2; it would be best to check
            // if that's correct, but a Google search does return results for these words so
            // if that's correct, but a web search does return results for these words so
            // they are probably okay.
            return (codePoint >= 0x370 && codePoint <= 0x3FF)
                    || (codePoint >= 0x1F00 && codePoint <= 0x1FFF)