jakaroma icon indicating copy to clipboard operation
jakaroma copied to clipboard

transliterate katakana with uppercase letters

Open eadmaster opened this issue 8 years ago • 1 comments

This usually gives a better visual hint of English-tranliterated words.

Example:

./jakaroma.sh "私はカナダへ行きます"
watashi wa kanada e iki masu

Should be:

  watashi wa KANADA e iki masu

EDIT: i've implemented this way in jakaroma.java:

            if (token.getSurface().equals(token.getPronunciation()))
                romaji = romaji.toUpperCase();

(I've also disabled word capitalizing to avoid confusion)

eadmaster avatar Jun 25 '16 07:06 eadmaster

We could do this indeed. People who don't like it can always lowercase the whole. Waiting for a pull request ;-) On Jun 25, 2016 4:55 PM, "Andrea" [email protected] wrote:

This usually gives a better visual hint of English-tranliterated words.

Example:

./jakaroma.sh "私はカナダへ行きます"

watashi wa kanada e iki masu Should be: watashi wa KANADA e iki masu

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/nicolas-raoul/jakaroma/issues/5, or mute the thread https://github.com/notifications/unsubscribe/AAGFBmURxPaXgjRfvdAHLlhfQx_24gRDks5qPN8CgaJpZM4I-SxW .

nicolas-raoul avatar Jun 25 '16 08:06 nicolas-raoul