~nskaggs/+junk/xenial-test

« back to all changes in this revision

Viewing changes to src/github.com/lxc/lxd/shared/i18n/i18n.go

  • Committer: Nicholas Skaggs
  • Date: 2016-10-24 20:56:05 UTC
  • Revision ID: nicholas.skaggs@canonical.com-20161024205605-z8lta0uvuhtxwzwl
Initi with beta15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// +build !linux
 
2
 
 
3
package i18n
 
4
 
 
5
func G(msgid string) string {
 
6
        return msgid
 
7
}
 
8
 
 
9
func NG(msgid string, msgidPlural string, n uint64) string {
 
10
        return msgid
 
11
}