1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/* translatable strings for gretl addons */
const char *gig_translations[] = {
N_("gig"),
N_("APARCH"),
N_("AR lags"),
N_("ARCH"),
N_("Constant"),
N_("Covariance estimator"),
N_("Density"),
N_("Dependent Variable"),
N_("Distribution"),
N_("EGARCH"),
N_("Forecast"),
N_("GARCH"),
N_("GED"),
N_("GJR"),
N_("Hessian"),
N_("Mean regressors"),
N_("Model type"),
N_("NARCH"),
N_("Normal"),
N_("OPG"),
N_("Plot type"),
N_("Sandwich"),
N_("Skewed GED"),
N_("Skewed t"),
N_("TARCH"),
N_("Taylor/Schwert GARCH"),
N_("Time series"),
N_("Variance regressors"),
N_("Verbosity"),
N_("t")
};
const char *ivpanel_translations[] = {
N_("Between model"),
N_("Fixed effects"),
N_("G2SLS"),
N_("dependent variable"),
N_("instruments"),
N_("regressors")
};
const char *SVAR_translations[] = {
N_("Structural VARs"),
N_("AB-model"),
N_("BFGS (analytical score)"),
N_("BFGS (numerical score)"),
N_("Bias correction"),
N_("Bootstrap alpha"),
N_("Bootstrap replications"),
N_("C-model"),
N_("Check identification"),
N_("Constant"),
N_("Exogenous regressors"),
N_("FEVD"),
N_("Full"),
N_("Historical decomposition"),
N_("Horizon"),
N_("IRF"),
N_("Indices of responses to cumulate"),
N_("Lags"),
N_("Model type"),
N_("Newton-Raphson (analytical score)"),
N_("Newton-Raphson (numerical score)"),
N_("None"),
N_("Optimization method"),
N_("Partial"),
N_("Plot type"),
N_("Restriction pattern (long-run C or A)"),
N_("Restriction pattern (short-run C or B)"),
N_("Scoring algorithm"),
N_("Seasonal dummies"),
N_("Time trend"),
N_("VAR variables"),
N_("plain (Cholesky)")
};
const char *HIP_translations[] = {
N_("IV/Heteroskedastic"),
N_("Covariance matrix estimation"),
N_("Dependent variable"),
N_("Endogenous variables"),
N_("Exogenous variables"),
N_("Hessian"),
N_("Instruments"),
N_("OPG"),
N_("Sandwich"),
N_("Variance regressors"),
N_("Verbosity level")
};
|