~ubuntu-branches/debian/stretch/3depict/stretch

« back to all changes in this revision

Viewing changes to src/common/translation.h

  • Committer: Package Import Robot
  • Author(s): D Haley
  • Date: 2015-05-01 23:59:48 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150501235948-t38obogk535eg2h6
Tags: 0.0.18-1
Update to upstream 0.0.18

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * common/translation.h  - Program gettext translation macros
3
 
 * Copyright (C) 2013  D Haley
 
3
 * Copyright (C) 2015  D Haley
4
4
 * 
5
5
 * This program is free software: you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
32
32
//!Gettext null-translation macro (mark for translation, but do nothing)
33
33
#define NTRANS(x) (x)
34
34
 
35
 
//!Wx friendly gettext translation macro
36
 
#define wxTRANS(x) (wxString(gettext(x),*wxConvCurrent))
37
 
 
38
 
#define wxNTRANS(x) wxT(x)
39
 
 
40
35
#endif