-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# vim:set noet ts=4: | ||
# | ||
# ibus-hangul - The Hangul engine for IBus | ||
# ibus-sayrua - The Sayura engine for IBus | ||
# | ||
# Copyright (c) 2007-2008 Huang Peng <[email protected]> | ||
# | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,23 +45,23 @@ start_component (void) | |
N_("Sinhala input method"), | ||
"0.1.0", | ||
"GPL", | ||
"Peng Huang <shawn.p.huang@gmail.com>", | ||
"Pravin Satpute <pravin.d.s@gmail.com>", | ||
"http://code.google.com/p/ibus/", | ||
"", | ||
"ibus-rawcode"); | ||
"ibus-sayura"); | ||
ibus_component_add_engine (component, | ||
ibus_engine_desc_new ("rawcode", | ||
ibus_engine_desc_new ("sayura", | ||
N_("Sinhala Input Method"), | ||
N_("Sinhala Input Method"), | ||
"other", | ||
"si", | ||
"GPL", | ||
"Pravin Satpute <[email protected]>", | ||
PKGDATADIR"/icon/ibus-hangul.svg", | ||
PKGDATADIR"/icon/ibus-sayura.png", | ||
"us")); | ||
|
||
factory = ibus_factory_new (ibus_bus_get_connection (bus)); | ||
|
||
ibus_factory_add_engine (factory, "rawcode", IBUS_TYPE_SINHALA_ENGINE); | ||
ibus_factory_add_engine (factory, "sayura", IBUS_TYPE_SINHALA_ENGINE); | ||
|
||
if (ibus) { | ||
ibus_bus_request_name (bus, "org.freedesktop.IBus.Sinhala", 0); | ||
|
@@ -83,9 +83,9 @@ main (gint argc, gchar **argv) | |
|
||
setlocale (LC_ALL, ""); | ||
|
||
context = g_option_context_new ("- ibus rawcode engine component"); | ||
context = g_option_context_new ("- ibus sayura engine component"); | ||
|
||
g_option_context_add_main_entries (context, entries, "ibus-rawcode"); | ||
g_option_context_add_main_entries (context, entries, "ibus-sayura"); | ||
|
||
if (!g_option_context_parse (context, &argc, &argv, &error)) { | ||
g_print ("Option parsing failed: %s\n", error->message); | ||
|