00001 # 1 "translate.c" 00002 # 1 "<built-in>" 00003 # 1 "<command-line>" 00004 # 1 "translate.c" 00005 # 58 "translate.c" 00006 # 1 "/usr/include/libintl.h" 1 3 4 00007 # 24 "/usr/include/libintl.h" 3 4 00008 # 1 "/usr/include/features.h" 1 3 4 00009 # 330 "/usr/include/features.h" 3 4 00010 # 1 "/usr/include/sys/cdefs.h" 1 3 4 00011 # 348 "/usr/include/sys/cdefs.h" 3 4 00012 # 1 "/usr/include/bits/wordsize.h" 1 3 4 00013 # 349 "/usr/include/sys/cdefs.h" 2 3 4 00014 # 331 "/usr/include/features.h" 2 3 4 00015 # 354 "/usr/include/features.h" 3 4 00016 # 1 "/usr/include/gnu/stubs.h" 1 3 4 00017 00018 00019 00020 # 1 "/usr/include/bits/wordsize.h" 1 3 4 00021 # 5 "/usr/include/gnu/stubs.h" 2 3 4 00022 00023 00024 00025 00026 # 1 "/usr/include/gnu/stubs-64.h" 1 3 4 00027 # 10 "/usr/include/gnu/stubs.h" 2 3 4 00028 # 355 "/usr/include/features.h" 2 3 4 00029 # 25 "/usr/include/libintl.h" 2 3 4 00030 # 35 "/usr/include/libintl.h" 3 4 00031 00032 00033 00034 00035 00036 extern char *gettext (__const char *__msgid) 00037 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (1))); 00038 00039 00040 00041 extern char *dgettext (__const char *__domainname, __const char *__msgid) 00042 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))); 00043 extern char *__dgettext (__const char *__domainname, __const char *__msgid) 00044 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))); 00045 00046 00047 00048 extern char *dcgettext (__const char *__domainname, 00049 __const char *__msgid, int __category) 00050 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))); 00051 extern char *__dcgettext (__const char *__domainname, 00052 __const char *__msgid, int __category) 00053 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))); 00054 00055 00056 00057 00058 extern char *ngettext (__const char *__msgid1, __const char *__msgid2, 00059 unsigned long int __n) 00060 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (1))) __attribute__ ((__format_arg__ (2))); 00061 00062 00063 00064 extern char *dngettext (__const char *__domainname, __const char *__msgid1, 00065 __const char *__msgid2, unsigned long int __n) 00066 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))) __attribute__ ((__format_arg__ (3))); 00067 00068 00069 00070 extern char *dcngettext (__const char *__domainname, __const char *__msgid1, 00071 __const char *__msgid2, unsigned long int __n, 00072 int __category) 00073 __attribute__ ((__nothrow__)) __attribute__ ((__format_arg__ (2))) __attribute__ ((__format_arg__ (3))); 00074 00075 00076 00077 00078 00079 extern char *textdomain (__const char *__domainname) __attribute__ ((__nothrow__)); 00080 00081 00082 00083 extern char *bindtextdomain (__const char *__domainname, 00084 __const char *__dirname) __attribute__ ((__nothrow__)); 00085 00086 00087 00088 extern char *bind_textdomain_codeset (__const char *__domainname, 00089 __const char *__codeset) __attribute__ ((__nothrow__)); 00090 # 122 "/usr/include/libintl.h" 3 4 00091 00092 # 59 "translate.c" 2 00093 # 1 "/usr/include/locale.h" 1 3 4 00094 # 29 "/usr/include/locale.h" 3 4 00095 # 1 "/usr/lib/gcc/x86_64-linux-gnu/4.3.1/include/stddef.h" 1 3 4 00096 # 30 "/usr/include/locale.h" 2 3 4 00097 # 1 "/usr/include/bits/locale.h" 1 3 4 00098 # 27 "/usr/include/bits/locale.h" 3 4 00099 enum 00100 { 00101 __LC_CTYPE = 0, 00102 __LC_NUMERIC = 1, 00103 __LC_TIME = 2, 00104 __LC_COLLATE = 3, 00105 __LC_MONETARY = 4, 00106 __LC_MESSAGES = 5, 00107 __LC_ALL = 6, 00108 __LC_PAPER = 7, 00109 __LC_NAME = 8, 00110 __LC_ADDRESS = 9, 00111 __LC_TELEPHONE = 10, 00112 __LC_MEASUREMENT = 11, 00113 __LC_IDENTIFICATION = 12 00114 }; 00115 # 31 "/usr/include/locale.h" 2 3 4 00116 00117 00118 # 51 "/usr/include/locale.h" 3 4 00119 00120 00121 00122 struct lconv 00123 { 00124 00125 00126 char *decimal_point; 00127 char *thousands_sep; 00128 00129 00130 00131 00132 00133 char *grouping; 00134 00135 00136 00137 00138 00139 char *int_curr_symbol; 00140 char *currency_symbol; 00141 char *mon_decimal_point; 00142 char *mon_thousands_sep; 00143 char *mon_grouping; 00144 char *positive_sign; 00145 char *negative_sign; 00146 char int_frac_digits; 00147 char frac_digits; 00148 00149 char p_cs_precedes; 00150 00151 char p_sep_by_space; 00152 00153 char n_cs_precedes; 00154 00155 char n_sep_by_space; 00156 00157 00158 00159 00160 00161 00162 char p_sign_posn; 00163 char n_sign_posn; 00164 00165 00166 char int_p_cs_precedes; 00167 00168 char int_p_sep_by_space; 00169 00170 char int_n_cs_precedes; 00171 00172 char int_n_sep_by_space; 00173 00174 00175 00176 00177 00178 00179 char int_p_sign_posn; 00180 char int_n_sign_posn; 00181 # 121 "/usr/include/locale.h" 3 4 00182 }; 00183 00184 00185 00186 extern char *setlocale (int __category, __const char *__locale) __attribute__ ((__nothrow__)); 00187 00188 00189 extern struct lconv *localeconv (void) __attribute__ ((__nothrow__)); 00190 00191 00192 # 146 "/usr/include/locale.h" 3 4 00193 # 1 "/usr/include/xlocale.h" 1 3 4 00194 # 28 "/usr/include/xlocale.h" 3 4 00195 typedef struct __locale_struct 00196 { 00197 00198 struct locale_data *__locales[13]; 00199 00200 00201 const unsigned short int *__ctype_b; 00202 const int *__ctype_tolower; 00203 const int *__ctype_toupper; 00204 00205 00206 const char *__names[13]; 00207 } *__locale_t; 00208 # 147 "/usr/include/locale.h" 2 3 4 00209 00210 typedef __locale_t locale_t; 00211 00212 00213 00214 00215 00216 extern __locale_t newlocale (int __category_mask, __const char *__locale, 00217 __locale_t __base) __attribute__ ((__nothrow__)); 00218 # 189 "/usr/include/locale.h" 3 4 00219 extern __locale_t duplocale (__locale_t __dataset) __attribute__ ((__nothrow__)); 00220 00221 00222 00223 extern void freelocale (__locale_t __dataset) __attribute__ ((__nothrow__)); 00224 00225 00226 00227 00228 00229 00230 extern __locale_t uselocale (__locale_t __dataset) __attribute__ ((__nothrow__)); 00231 00232 00233 00234 00235 00236 00237 00238 00239 # 60 "translate.c" 2 00240 # 1 "qof-expenses.h" 1 00241 # 97 "qof-expenses.h" 00242 typedef struct Expense Expense_t; 00243 00244 00245 00246 00247 00248 00249 00250 typedef struct QofExp_s QofExp; 00251 00252 typedef void (*GpeCurrencyCB) (gpointer key, gpointer value, gpointer user_data); 00253 00254 void gpe_currency_foreach(GpeCurrencyCB cb, gpointer user_data); 00255 00256 00257 00258 00259 00260 00261 00262 typedef struct 00263 { 00264 00265 gint pq_code; 00266 00267 gint fraction; 00268 00269 const gchar* symbol; 00270 00271 const gchar* mnemonic; 00272 00273 00274 00275 gboolean non_utf8; 00276 }GpeCurrency; 00277 # 150 "qof-expenses.h" 00278 GpeCurrency * 00279 gpe_currency_lookup (QofInstance* inst, gint currency_code); 00280 00281 00282 00283 00284 00285 00286 00287 GpeCurrency * 00288 gpe_currency_lookup_name (QofInstance* inst, gchar * mnemonic); 00289 # 206 "qof-expenses.h" 00290 DEFINE_ENUM(ExpenseDistance, DISTANCE_LIST) 00291 # 239 "qof-expenses.h" 00292 DEFINE_ENUM(ExpensePayment, PAYMENT_TYPE_LIST) 00293 # 273 "qof-expenses.h" 00294 DEFINE_ENUM(ExpenseType, EXPENSE_TYPE_LIST) 00295 00296 AS_STRING_DEC (ExpenseDistance, DISTANCE_LIST) 00297 FROM_STRING_DEC(ExpenseDistance, DISTANCE_LIST) 00298 AS_STRING_DEC (ExpensePayment, PAYMENT_TYPE_LIST) 00299 FROM_STRING_DEC(ExpensePayment, PAYMENT_TYPE_LIST) 00300 AS_STRING_DEC (ExpenseType, EXPENSE_TYPE_LIST) 00301 FROM_STRING_DEC(ExpenseType, EXPENSE_TYPE_LIST) 00302 # 295 "qof-expenses.h" 00303 gboolean ExpensesRegister (void); 00304 # 61 "translate.c" 2 00305 # 72 "translate.c" 00306 static void G_GNUC_UNUSED ExpenseTypetranslate (void) { gchar * G_GNUC_UNUSED Airfarenoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Airfare"); gchar * G_GNUC_UNUSED Breakfastnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Breakfast"); gchar * G_GNUC_UNUSED Busnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Bus"); gchar * G_GNUC_UNUSED BusinessMealsnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "BusinessMeals"); gchar * G_GNUC_UNUSED CarRentalnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "CarRental"); gchar * G_GNUC_UNUSED Dinnernoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Dinner"); gchar * G_GNUC_UNUSED Entertainmentnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Entertainment"); gchar * G_GNUC_UNUSED Faxnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Fax"); gchar * G_GNUC_UNUSED Gasnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Gas"); gchar * G_GNUC_UNUSED Giftsnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Gifts"); gchar * G_GNUC_UNUSED Hotelnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Hotel"); gchar * G_GNUC_UNUSED Incidentalsnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Incidentals"); gchar * G_GNUC_UNUSED Laundrynoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Laundry"); gchar * G_GNUC_UNUSED Limonoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Limo"); gchar * G_GNUC_UNUSED Lodgingnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Lodging"); gchar * G_GNUC_UNUSED Lunchnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Lunch"); gchar * G_GNUC_UNUSED Mileagenoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Mileage"); gchar * G_GNUC_UNUSED Othernoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Other"); gchar * G_GNUC_UNUSED Parkingnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Parking"); gchar * G_GNUC_UNUSED Postagenoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Postage"); gchar * G_GNUC_UNUSED Snacknoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Snack"); gchar * G_GNUC_UNUSED Subwaynoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Subway"); gchar * G_GNUC_UNUSED Suppliesnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Supplies"); gchar * G_GNUC_UNUSED Taxinoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Taxi"); gchar * G_GNUC_UNUSED Telephonenoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Telephone"); gchar * G_GNUC_UNUSED Tipsnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Tips"); gchar * G_GNUC_UNUSED Tollsnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Tolls"); gchar * G_GNUC_UNUSED Trainnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Train"); } 00307 00308 static void G_GNUC_UNUSED ExpensePaymenttranslate (void) { gchar * G_GNUC_UNUSED AmericanExpressnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "AmericanExpress"); gchar * G_GNUC_UNUSED Cashnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Cash"); gchar * G_GNUC_UNUSED Chequenoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Cheque"); gchar * G_GNUC_UNUSED CreditCardnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "CreditCard"); gchar * G_GNUC_UNUSED MasterCardnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "MasterCard"); gchar * G_GNUC_UNUSED Prepaidnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Prepaid"); gchar * G_GNUC_UNUSED VISAnoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "VISA"); gchar * G_GNUC_UNUSED Unfilednoop = dgettext (LIBRARY_GETTEXT_PACKAGE, "Unfiled"); }