File: gettext.rb

package info (click to toggle)
kazehakase 0.4.2-1etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,260 kB
  • ctags: 7,377
  • sloc: ansic: 62,697; cpp: 13,422; sh: 9,083; ruby: 1,588; makefile: 1,026; xml: 372
file content (12 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
module Kz
  module GetText
    module_function
    def _(msgid)
      Kz.gettext(msgid)
    end

    def N_(msgid)
      msgid
    end
  end
end