/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef FORMULA_COMPILER_HXX #define FORMULA_COMPILER_HXX /* Central definition of OpCodes for spreadsheet functions */ /*** Special commands ***/ #define SC_OPCODE_PUSH 0 /* internal commands */ #define SC_OPCODE_CALL 1 #define SC_OPCODE_STOP 2 #define SC_OPCODE_EXTERNAL 3 #define SC_OPCODE_NAME 4 #define SC_OPCODE_EXTERNAL_REF 5 #define SC_OPCODE_IF 6 /* jump commands */ #define SC_OPCODE_IF_ERROR 7 #define SC_OPCODE_IF_NA 8 #define SC_OPCODE_CHOOSE 9 #define SC_OPCODE_OPEN 10 /* parentheses and separators */ #define SC_OPCODE_CLOSE 11 #define SC_OPCODE_SEP 12 #define SC_OPCODE_MISSING 13 /* special OpCodes */ #define SC_OPCODE_BAD 14 #define SC_OPCODE_STRINGXML 15 #define SC_OPCODE_SPACES 16 #define SC_OPCODE_WHITESPACE 17 #define SC_OPCODE_MAT_REF 18 #define SC_OPCODE_DB_AREA 19 /* additional access operators */ #define SC_OPCODE_TABLE_REF 20 #define SC_OPCODE_MACRO 21 #define SC_OPCODE_COL_ROW_NAME 22 #define SC_OPCODE_COL_ROW_NAME_AUTO 23 #define SC_OPCODE_PERCENT_SIGN 24 /* operator _follows_ value */ #define SC_OPCODE_ARRAY_OPEN 25 #define SC_OPCODE_ARRAY_CLOSE 26 #define SC_OPCODE_ARRAY_ROW_SEP 27 #define SC_OPCODE_ARRAY_COL_SEP 28 /* some convs use sep != col_sep */ #define SC_OPCODE_TABLE_REF_OPEN 29 #define SC_OPCODE_TABLE_REF_CLOSE 30 #define SC_OPCODE_TABLE_REF_ITEM_ALL 31 #define SC_OPCODE_TABLE_REF_ITEM_HEADERS 32 #define SC_OPCODE_TABLE_REF_ITEM_DATA 33 #define SC_OPCODE_TABLE_REF_ITEM_TOTALS 34 #define SC_OPCODE_TABLE_REF_ITEM_THIS_ROW 35 #define SC_OPCODE_STOP_DIV 36 #define SC_OPCODE_SKIP 37 /* used to skip raw tokens during string compilation */ /*** error constants #... ***/ #define SC_OPCODE_START_ERRORS 40 #define SC_OPCODE_ERROR_NULL 40 #define SC_OPCODE_ERROR_DIVZERO 41 #define SC_OPCODE_ERROR_VALUE 42 #define SC_OPCODE_ERROR_REF 43 #define SC_OPCODE_ERROR_NAME 44 #define SC_OPCODE_ERROR_NUM 45 #define SC_OPCODE_ERROR_NA 46 #define SC_OPCODE_STOP_ERRORS 47 /*** Binary operators ***/ #define SC_OPCODE_START_BIN_OP 50 #define SC_OPCODE_ADD 50 #define SC_OPCODE_SUB 51 #define SC_OPCODE_MUL 52 #define SC_OPCODE_DIV 53 #define SC_OPCODE_AMPERSAND 54 #define SC_OPCODE_POW 55 #define SC_OPCODE_EQUAL 56 #define SC_OPCODE_NOT_EQUAL 57 #define SC_OPCODE_LESS 58 #define SC_OPCODE_GREATER 59 #define SC_OPCODE_LESS_EQUAL 60 #define SC_OPCODE_GREATER_EQUAL 61 #define SC_OPCODE_AND 62 #define SC_OPCODE_OR 63 #define SC_OPCODE_INTERSECT 64 #define SC_OPCODE_UNION 65 #define SC_OPCODE_RANGE 66 #define SC_OPCODE_STOP_BIN_OP 67 /* NOTE: binary and unary operators must be in sequence for compiler! */ /*** Unary operators ***/ #define SC_OPCODE_START_UN_OP 70 #define SC_OPCODE_NEG_SUB 70 #define SC_OPCODE_STOP_UN_OP 71 #define SC_OPCODE_START_FUNCTION 75 /*** Functions without parameters ***/ #define SC_OPCODE_START_NO_PAR 75 #define SC_OPCODE_PI 75 #define SC_OPCODE_RANDOM 76 #define SC_OPCODE_TRUE 77 #define SC_OPCODE_FALSE 78 #define SC_OPCODE_GET_ACT_DATE 79 #define SC_OPCODE_GET_ACT_TIME 80 #define SC_OPCODE_NO_VALUE 81 #define SC_OPCODE_CURRENT 82 #define SC_OPCODE_RANDOM_NV 83 #define SC_OPCODE_STOP_NO_PAR 84 /*** Functions with one parameter ***/ #define SC_OPCODE_START_1_PAR 90 #define SC_OPCODE_DEG 90 /* trigonometric */ #define SC_OPCODE_RAD 91 #define SC_OPCODE_SIN 92 #define SC_OPCODE_COS 93 #define SC_OPCODE_TAN 94 #define SC_OPCODE_COT 95 #define SC_OPCODE_ARC_SIN 96 #define SC_OPCODE_ARC_COS 97 #define SC_OPCODE_ARC_TAN 98 #define SC_OPCODE_ARC_COT 99 #define SC_OPCODE_SIN_HYP 100 #define SC_OPCODE_COS_HYP 101 #define SC_OPCODE_TAN_HYP 102 #define SC_OPCODE_COT_HYP 103 #define SC_OPCODE_ARC_SIN_HYP 104 /* transcendent */ #define SC_OPCODE_ARC_COS_HYP 105 #define SC_OPCODE_ARC_TAN_HYP 106 #define SC_OPCODE_ARC_COT_HYP 107 #define SC_OPCODE_COSECANT 108 #define SC_OPCODE_SECANT 109 #define SC_OPCODE_COSECANT_HYP 110 #define SC_OPCODE_SECANT_HYP 111 #define SC_OPCODE_EXP 112 #define SC_OPCODE_LN 113 #define SC_OPCODE_SQRT 114 #define SC_OPCODE_FACT 115 #define SC_OPCODE_GET_YEAR 116 /* date and time */ #define SC_OPCODE_GET_MONTH 117 #define SC_OPCODE_GET_DAY 118 #define SC_OPCODE_GET_HOUR 119 #define SC_OPCODE_GET_MIN 120 #define SC_OPCODE_GET_SEC 121 #define SC_OPCODE_PLUS_MINUS 122 /* miscellaneous */ #define SC_OPCODE_ABS 123 #define SC_OPCODE_INT 124 #define SC_OPCODE_PHI 125 #define SC_OPCODE_GAUSS 126 #define SC_OPCODE_IS_EMPTY 127 /* obtain type */ #define SC_OPCODE_IS_STRING 128 #define SC_OPCODE_IS_NON_STRING 129 #define SC_OPCODE_IS_LOGICAL 130 #define SC_OPCODE_TYPE 131 #define SC_OPCODE_IS_REF 132 #define SC_OPCODE_IS_VALUE 133 #define SC_OPCODE_IS_FORMULA 134 #define SC_OPCODE_IS_NV 135 #define SC_OPCODE_IS_ERR 136 #define SC_OPCODE_IS_ERROR 137 #define SC_OPCODE_IS_EVEN 138 #define SC_OPCODE_IS_ODD 139 #define SC_OPCODE_N 140 #define SC_OPCODE_GET_DATE_VALUE 141 /* string functions */ #define SC_OPCODE_GET_TIME_VALUE 142 #define SC_OPCODE_CODE 143 #define SC_OPCODE_TRIM 144 #define SC_OPCODE_UPPER 145 #define SC_OPCODE_PROPER 146 #define SC_OPCODE_LOWER 147 #define SC_OPCODE_LEN 148 #define SC_OPCODE_T 149 /* miscellaneous, part 21 */ #define SC_OPCODE_VALUE 150 #define SC_OPCODE_CLEAN 151 #define SC_OPCODE_CHAR 152 #define SC_OPCODE_LOG10 153 #define SC_OPCODE_EVEN 154 #define SC_OPCODE_ODD 155 #define SC_OPCODE_STD_NORM_DIST 156 #define SC_OPCODE_FISHER 157 #define SC_OPCODE_FISHER_INV 158 #define SC_OPCODE_S_NORM_INV 159 #define SC_OPCODE_GAMMA_LN 160 #define SC_OPCODE_ERROR_TYPE 161 #define SC_OPCODE_FORMULA 163 #define SC_OPCODE_ARABIC 164 #define SC_OPCODE_INFO 165 #define SC_OPCODE_BAHTTEXT 166 #define SC_OPCODE_JIS 167 #define SC_OPCODE_ASC 168 #define SC_OPCODE_UNICODE 169 #define SC_OPCODE_UNICHAR 170 #define SC_OPCODE_GAMMA 171 #define SC_OPCODE_GAMMA_LN_MS 172 #define SC_OPCODE_ERF_MS 173 #define SC_OPCODE_ERFC_MS 174 #define SC_OPCODE_ERROR_TYPE_ODF 175 #define SC_OPCODE_ENCODEURL 176 #define SC_OPCODE_ISOWEEKNUM 177 #define SC_OPCODE_NOT 178 #define SC_OPCODE_NEG 179 #define SC_OPCODE_STOP_1_PAR 180 /*** Functions with more than one parameters ***/ #define SC_OPCODE_START_2_PAR 201 #define SC_OPCODE_ARC_TAN_2 201 #define SC_OPCODE_CEIL 202 #define SC_OPCODE_FLOOR 203 #define SC_OPCODE_ROUND 204 #define SC_OPCODE_ROUND_UP 205 #define SC_OPCODE_ROUND_DOWN 206 #define SC_OPCODE_TRUNC 207 #define SC_OPCODE_LOG 208 #define SC_OPCODE_POWER 209 #define SC_OPCODE_GCD 210 #define SC_OPCODE_LCM 211 #define SC_OPCODE_MOD 212 #define SC_OPCODE_SUM_PRODUCT 213 #define SC_OPCODE_SUM_SQ 214 #define SC_OPCODE_SUM_X2MY2 215 #define SC_OPCODE_SUM_X2DY2 216 #define SC_OPCODE_SUM_XMY2 217 #define SC_OPCODE_GET_DATE 218 #define SC_OPCODE_GET_TIME 219 #define SC_OPCODE_GET_DIFF_DATE 220 #define SC_OPCODE_GET_DIFF_DATE_360 221 #define SC_OPCODE_MIN 222 #define SC_OPCODE_MAX 223 #define SC_OPCODE_SUM 224 #define SC_OPCODE_PRODUCT 225 #define SC_OPCODE_AVERAGE 226 #define SC_OPCODE_COUNT 227 #define SC_OPCODE_COUNT_2 228 #define SC_OPCODE_NPV 229 #define SC_OPCODE_IRR 230 #define SC_OPCODE_VAR 231 #define SC_OPCODE_VAR_P 232 #define SC_OPCODE_ST_DEV 233 #define SC_OPCODE_ST_DEV_P 234 #define SC_OPCODE_B 235 #define SC_OPCODE_NORM_DIST 236 #define SC_OPCODE_EXP_DIST 237 #define SC_OPCODE_BINOM_DIST 238 #define SC_OPCODE_POISSON_DIST 239 #define SC_OPCODE_COMBIN 240 #define SC_OPCODE_COMBIN_A 241 #define SC_OPCODE_PERMUT 242 #define SC_OPCODE_PERMUTATION_A 243 #define SC_OPCODE_PV 244 #define SC_OPCODE_SYD 245 #define SC_OPCODE_DDB 246 #define SC_OPCODE_DB 247 #define SC_OPCODE_VBD 248 #define SC_OPCODE_PDURATION 249 #define SC_OPCODE_SLN 250 #define SC_OPCODE_PMT 251 #define SC_OPCODE_COLUMNS 252 #define SC_OPCODE_ROWS 253 #define SC_OPCODE_COLUMN 254 #define SC_OPCODE_ROW 255 #define SC_OPCODE_RRI 256 #define SC_OPCODE_FV 257 #define SC_OPCODE_NPER 258 #define SC_OPCODE_RATE 259 #define SC_OPCODE_IPMT 260 #define SC_OPCODE_PPMT 261 #define SC_OPCODE_CUM_IPMT 262 #define SC_OPCODE_CUM_PRINC 263 #define SC_OPCODE_EFFECT 264 #define SC_OPCODE_NOMINAL 265 #define SC_OPCODE_SUB_TOTAL 266 #define SC_OPCODE_DB_SUM 267 /* database functions */ #define SC_OPCODE_DB_COUNT 268 #define SC_OPCODE_DB_COUNT_2 269 #define SC_OPCODE_DB_AVERAGE 270 #define SC_OPCODE_DB_GET 271 #define SC_OPCODE_DB_MAX 272 #define SC_OPCODE_DB_MIN 273 #define SC_OPCODE_DB_PRODUCT 274 #define SC_OPCODE_DB_STD_DEV 275 #define SC_OPCODE_DB_STD_DEV_P 276 #define SC_OPCODE_DB_VAR 277 #define SC_OPCODE_DB_VAR_P 278 #define SC_OPCODE_INDIRECT 279 /* management functions */ #define SC_OPCODE_ADDRESS 280 #define SC_OPCODE_MATCH 281 #define SC_OPCODE_COUNT_EMPTY_CELLS 282 #define SC_OPCODE_COUNT_IF 283 #define SC_OPCODE_SUM_IF 284 #define SC_OPCODE_LOOKUP 285 #define SC_OPCODE_V_LOOKUP 286 #define SC_OPCODE_H_LOOKUP 287 #define SC_OPCODE_MULTI_AREA 288 #define SC_OPCODE_OFFSET 289 #define SC_OPCODE_INDEX 290 #define SC_OPCODE_AREAS 291 #define SC_OPCODE_CURRENCY 292 /* string functions */ #define SC_OPCODE_REPLACE 293 #define SC_OPCODE_FIXED 294 #define SC_OPCODE_FIND 295 #define SC_OPCODE_EXACT 296 #define SC_OPCODE_LEFT 297 #define SC_OPCODE_RIGHT 298 #define SC_OPCODE_SEARCH 299 #define SC_OPCODE_MID 300 #define SC_OPCODE_TEXT 301 #define SC_OPCODE_SUBSTITUTE 302 #define SC_OPCODE_REPT 303 #define SC_OPCODE_CONCAT 304 #define SC_OPCODE_MAT_VALUE 305 /* matrix functions */ #define SC_OPCODE_MAT_DET 306 #define SC_OPCODE_MAT_INV 307 #define SC_OPCODE_MAT_MULT 308 #define SC_OPCODE_MAT_TRANS 309 #define SC_OPCODE_MATRIX_UNIT 310 #define SC_OPCODE_BACK_SOLVER 311 /* BackSolver */ #define SC_OPCODE_HYP_GEOM_DIST 312 /* statistical functions */ #define SC_OPCODE_LOG_NORM_DIST 313 #define SC_OPCODE_T_DIST 314 #define SC_OPCODE_F_DIST 315 #define SC_OPCODE_CHI_DIST 316 #define SC_OPCODE_WEIBULL 317 #define SC_OPCODE_NEG_BINOM_VERT 318 #define SC_OPCODE_CRIT_BINOM 319 #define SC_OPCODE_KURT 320 #define SC_OPCODE_HAR_MEAN 321 #define SC_OPCODE_GEO_MEAN 322 #define SC_OPCODE_STANDARD 323 #define SC_OPCODE_AVE_DEV 324 #define SC_OPCODE_SKEW 325 #define SC_OPCODE_DEV_SQ 326 #define SC_OPCODE_MEDIAN 327 #define SC_OPCODE_MODAL_VALUE 328 #define SC_OPCODE_Z_TEST 329 #define SC_OPCODE_T_TEST 330 #define SC_OPCODE_RANK 331 #define SC_OPCODE_PERCENTILE 332 #define SC_OPCODE_PERCENT_RANK 333 #define SC_OPCODE_LARGE 334 #define SC_OPCODE_SMALL 335 #define SC_OPCODE_FREQUENCY 336 #define SC_OPCODE_QUARTILE 337 #define SC_OPCODE_NORM_INV 338 #define SC_OPCODE_CONFIDENCE 339 #define SC_OPCODE_F_TEST 340 #define SC_OPCODE_TRIM_MEAN 341 #define SC_OPCODE_PROB 342 #define SC_OPCODE_CORREL 343 #define SC_OPCODE_COVAR 344 #define SC_OPCODE_PEARSON 345 #define SC_OPCODE_RSQ 346 #define SC_OPCODE_STEYX 347 #define SC_OPCODE_SLOPE 348 #define SC_OPCODE_INTERCEPT 349 #define SC_OPCODE_TREND 350 #define SC_OPCODE_GROWTH 351 #define SC_OPCODE_LINEST 352 #define SC_OPCODE_LOGEST 353 #define SC_OPCODE_FORECAST 354 #define SC_OPCODE_CHI_INV 355 #define SC_OPCODE_GAMMA_DIST 356 #define SC_OPCODE_GAMMA_INV 357 #define SC_OPCODE_T_INV 358 #define SC_OPCODE_F_INV 359 #define SC_OPCODE_CHI_TEST 360 #define SC_OPCODE_LOG_INV 361 #define SC_OPCODE_TABLE_OP 362 #define SC_OPCODE_BETA_DIST 363 #define SC_OPCODE_BETA_INV 364 #define SC_OPCODE_WEEK 365 /* miscellaneous */ #define SC_OPCODE_GET_DAY_OF_WEEK 366 #define SC_OPCODE_NO_NAME 367 #define SC_OPCODE_STYLE 368 #define SC_OPCODE_DDE 369 #define SC_OPCODE_BASE 370 #define SC_OPCODE_SHEET 371 #define SC_OPCODE_SHEETS 372 #define SC_OPCODE_MIN_A 373 #define SC_OPCODE_MAX_A 374 #define SC_OPCODE_AVERAGE_A 375 #define SC_OPCODE_ST_DEV_A 376 #define SC_OPCODE_ST_DEV_P_A 377 #define SC_OPCODE_VAR_A 378 #define SC_OPCODE_VAR_P_A 379 #define SC_OPCODE_EASTERSUNDAY 380 #define SC_OPCODE_DECIMAL 381 #define SC_OPCODE_CONVERT_OOO 382 #define SC_OPCODE_ROMAN 383 #define SC_OPCODE_MIRR 384 #define SC_OPCODE_CELL 385 #define SC_OPCODE_ISPMT 386 #define SC_OPCODE_HYPERLINK 387 #define SC_OPCODE_X_LOOKUP 388 // free: 389 #define SC_OPCODE_GET_PIVOT_DATA 390 #define SC_OPCODE_EUROCONVERT 391 #define SC_OPCODE_NUMBERVALUE 392 #define SC_OPCODE_CHISQ_DIST 393 #define SC_OPCODE_CHISQ_INV 394 #define SC_OPCODE_BITAND 395 #define SC_OPCODE_BITOR 396 #define SC_OPCODE_BITXOR 397 #define SC_OPCODE_BITRSHIFT 398 #define SC_OPCODE_BITLSHIFT 399 #define SC_OPCODE_GET_DATEDIF 400 #define SC_OPCODE_XOR 401 #define SC_OPCODE_AVERAGE_IF 402 #define SC_OPCODE_SUM_IFS 403 #define SC_OPCODE_AVERAGE_IFS 404 #define SC_OPCODE_COUNT_IFS 405 #define SC_OPCODE_SKEWP 406 #define SC_OPCODE_LENB 407 #define SC_OPCODE_RIGHTB 408 #define SC_OPCODE_LEFTB 409 #define SC_OPCODE_MIDB 410 #define SC_OPCODE_FILTERXML 411 #define SC_OPCODE_WEBSERVICE 412 #define SC_OPCODE_COVARIANCE_S 413 #define SC_OPCODE_COVARIANCE_P 414 #define SC_OPCODE_ST_DEV_P_MS 415 #define SC_OPCODE_ST_DEV_S 416 #define SC_OPCODE_VAR_P_MS 417 #define SC_OPCODE_VAR_S 418 #define SC_OPCODE_BETA_DIST_MS 419 #define SC_OPCODE_BETA_INV_MS 420 #define SC_OPCODE_BINOM_DIST_MS 421 #define SC_OPCODE_BINOM_INV 422 #define SC_OPCODE_CHI_DIST_MS 423 #define SC_OPCODE_CHI_INV_MS 424 #define SC_OPCODE_CHI_TEST_MS 425 #define SC_OPCODE_CHISQ_DIST_MS 426 #define SC_OPCODE_CHISQ_INV_MS 427 #define SC_OPCODE_CONFIDENCE_N 428 #define SC_OPCODE_CONFIDENCE_T 429 #define SC_OPCODE_F_DIST_LT 430 #define SC_OPCODE_F_DIST_RT 431 #define SC_OPCODE_F_INV_LT 432 #define SC_OPCODE_F_INV_RT 433 #define SC_OPCODE_F_TEST_MS 434 #define SC_OPCODE_EXP_DIST_MS 435 #define SC_OPCODE_HYP_GEOM_DIST_MS 436 #define SC_OPCODE_POISSON_DIST_MS 437 #define SC_OPCODE_WEIBULL_MS 438 #define SC_OPCODE_GAMMA_DIST_MS 439 #define SC_OPCODE_GAMMA_INV_MS 440 #define SC_OPCODE_LOG_NORM_DIST_MS 441 #define SC_OPCODE_LOG_INV_MS 442 #define SC_OPCODE_NORM_DIST_MS 443 #define SC_OPCODE_NORM_INV_MS 444 #define SC_OPCODE_STD_NORM_DIST_MS 445 #define SC_OPCODE_S_NORM_INV_MS 446 #define SC_OPCODE_T_DIST_MS 447 #define SC_OPCODE_T_DIST_RT 448 #define SC_OPCODE_T_DIST_2T 449 #define SC_OPCODE_T_INV_2T 450 #define SC_OPCODE_T_INV_MS 451 #define SC_OPCODE_T_TEST_MS 452 #define SC_OPCODE_PERCENTILE_INC 453 #define SC_OPCODE_PERCENT_RANK_INC 454 #define SC_OPCODE_QUARTILE_INC 455 #define SC_OPCODE_RANK_EQ 456 #define SC_OPCODE_PERCENTILE_EXC 457 #define SC_OPCODE_PERCENT_RANK_EXC 458 #define SC_OPCODE_QUARTILE_EXC 459 #define SC_OPCODE_RANK_AVG 460 #define SC_OPCODE_MODAL_VALUE_MS 461 #define SC_OPCODE_MODAL_VALUE_MULTI 462 #define SC_OPCODE_NEG_BINOM_DIST_MS 463 #define SC_OPCODE_Z_TEST_MS 464 #define SC_OPCODE_CEIL_MS 465 #define SC_OPCODE_CEIL_ISO 466 #define SC_OPCODE_FLOOR_MS 467 #define SC_OPCODE_NETWORKDAYS_MS 468 #define SC_OPCODE_WORKDAY_MS 469 #define SC_OPCODE_AGGREGATE 470 #define SC_OPCODE_COLOR 471 #define SC_OPCODE_CEIL_MATH 472 #define SC_OPCODE_CEIL_PRECISE 473 #define SC_OPCODE_NETWORKDAYS 474 #define SC_OPCODE_FLOOR_MATH 475 #define SC_OPCODE_FLOOR_PRECISE 476 #define SC_OPCODE_RAWSUBTRACT 477 #define SC_OPCODE_WEEKNUM_OOO 478 #define SC_OPCODE_FORECAST_ETS_ADD 479 #define SC_OPCODE_FORECAST_ETS_SEA 480 #define SC_OPCODE_FORECAST_ETS_MUL 481 #define SC_OPCODE_FORECAST_ETS_PIA 482 #define SC_OPCODE_FORECAST_ETS_PIM 483 #define SC_OPCODE_FORECAST_ETS_STA 484 #define SC_OPCODE_FORECAST_ETS_STM 485 #define SC_OPCODE_FORECAST_LIN 486 #define SC_OPCODE_CONCAT_MS 487 #define SC_OPCODE_TEXTJOIN_MS 488 #define SC_OPCODE_IFS_MS 489 #define SC_OPCODE_SWITCH_MS 490 #define SC_OPCODE_MINIFS_MS 491 #define SC_OPCODE_MAXIFS_MS 492 #define SC_OPCODE_ROUNDSIG 493 #define SC_OPCODE_REPLACEB 494 #define SC_OPCODE_FINDB 495 #define SC_OPCODE_SEARCHB 496 #define SC_OPCODE_REGEX 497 #define SC_OPCODE_FOURIER 498 #define SC_OPCODE_RANDBETWEEN_NV 499 #define SC_OPCODE_STOP_2_PAR 500 /* last function with two or more parameters' OpCode + 1 */ #define SC_OPCODE_STOP_FUNCTION SC_OPCODE_STOP_2_PAR /* last function's OpCode + 1 */ #define SC_OPCODE_LAST_OPCODE_ID (SC_OPCODE_STOP_FUNCTION - 1) /* last OpCode */ /*** Internal ***/ #define SC_OPCODE_INTERNAL_BEGIN 9999 #define SC_OPCODE_TTT 9999 #define SC_OPCODE_DEBUG_VAR 10000 #define SC_OPCODE_INTERNAL_END 10000 /*** from here on ExtraData contained ***/ #define SC_OPCODE_DATA_TOKEN_1 10001 #define SC_OPCODE_NONE 0xFFFF #endif /* FORMULA_COMPILER_HRC */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ng LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/leak-suppress.txt
/lo/translations/diff/source/gl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po?id=e8d143a936fb478d68f21f6229ceabcbd86ffc2a'>source/gl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
AgeCommit message (Expand)Author
16
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/gl/readlicense_oo/docs.po6
-rw-r--r--source/gl/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/gl/sfx2/source/appl.po8
-rw-r--r--source/gl/svx/uiconfig/ui.po8
-rw-r--r--source/gl/sw/source/uibase/utlui.po12
-rw-r--r--source/gl/sw/uiconfig/swriter/ui.po6
-rw-r--r--source/gn/avmedia/source/framework.po6
-rw-r--r--source/gn/avmedia/source/viewer.po8
-rw-r--r--source/gn/basctl/source/basicide.po16
-rw-r--r--source/gn/basctl/source/dlged.po6
-rw-r--r--source/gn/basctl/uiconfig/basicide/ui.po12
-rw-r--r--source/gn/basic/source/classes.po14
-rw-r--r--source/gn/chart2/source/controller/dialogs.po16
-rw-r--r--source/gn/chart2/uiconfig/ui.po12
-rw-r--r--source/gn/cui/source/customize.po14
-rw-r--r--source/gn/cui/source/dialogs.po12
-rw-r--r--source/gn/cui/source/options.po34
-rw-r--r--source/gn/cui/source/tabpages.po18
-rw-r--r--source/gn/cui/uiconfig/ui.po254
-rw-r--r--source/gn/dbaccess/source/core/resource.po12
-rw-r--r--source/gn/dbaccess/source/ext/macromigration.po14
-rw-r--r--source/gn/dbaccess/source/ui/app.po16
-rw-r--r--source/gn/dbaccess/source/ui/browser.po10
-rw-r--r--source/gn/dbaccess/source/ui/dlg.po18
-rw-r--r--source/gn/dbaccess/source/ui/inc.po8
-rw-r--r--source/gn/dbaccess/source/ui/misc.po10
-rw-r--r--source/gn/dbaccess/source/ui/querydesign.po12
-rw-r--r--source/gn/dbaccess/source/ui/tabledesign.po14
-rw-r--r--source/gn/dbaccess/uiconfig/ui.po54
-rw-r--r--source/gn/dictionaries/hu_HU/dialog.po6
-rw-r--r--source/gn/editeng/source/items.po46
-rw-r--r--source/gn/extensions/source/bibliography.po8
-rw-r--r--source/gn/extensions/source/propctrlr.po46
-rw-r--r--source/gn/extensions/uiconfig/sabpilot/ui.po12
-rw-r--r--source/gn/extensions/uiconfig/scanner/ui.po10
-rw-r--r--source/gn/extensions/uiconfig/spropctrlr/ui.po8
-rw-r--r--source/gn/filter/source/config/fragments/filters.po44
-rw-r--r--source/gn/filter/source/config/fragments/internalgraphicfilters.po20
-rw-r--r--source/gn/filter/source/pdf.po8
-rw-r--r--source/gn/filter/uiconfig/ui.po30
-rw-r--r--source/gn/fpicker/source/office.po6
-rw-r--r--source/gn/framework/source/classes.po10
-rw-r--r--source/gn/instsetoo_native/inc_openoffice/windows/msi_languages.po36
-rw-r--r--source/gn/librelogo/source/pythonpath.po18
-rw-r--r--source/gn/officecfg/registry/data/org/openoffice/Office.po54
-rw-r--r--source/gn/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/gn/reportdesign/source/core/resource.po6
-rw-r--r--source/gn/reportdesign/source/ui/dlg.po10
-rw-r--r--source/gn/reportdesign/source/ui/inspection.po14
-rw-r--r--source/gn/reportdesign/source/ui/report.po10
-rw-r--r--source/gn/reportdesign/uiconfig/dbreport/ui.po8
-rw-r--r--source/gn/sc/source/ui/cctrl.po10
-rw-r--r--source/gn/sc/source/ui/drawfunc.po8
-rw-r--r--source/gn/sc/source/ui/navipi.po10
-rw-r--r--source/gn/sc/source/ui/src.po128
-rw-r--r--source/gn/sc/source/ui/styleui.po10
-rw-r--r--source/gn/sc/uiconfig/scalc/ui.po84
-rw-r--r--source/gn/scp2/source/draw.po6
-rw-r--r--source/gn/sd/source/core.po10
-rw-r--r--source/gn/sd/source/ui/accessibility.po6
-rw-r--r--source/gn/sd/source/ui/animations.po18
-rw-r--r--source/gn/sd/source/ui/annotations.po8
-rw-r--r--source/gn/sd/source/ui/app.po72
-rw-r--r--source/gn/sd/source/ui/dlg.po8
-rw-r--r--source/gn/sd/source/ui/view.po18
-rw-r--r--source/gn/sd/uiconfig/sdraw/ui.po30
-rw-r--r--source/gn/sd/uiconfig/simpress/ui.po46
-rw-r--r--source/gn/sfx2/source/appl.po16
-rw-r--r--source/gn/sfx2/source/dialog.po34
-rw-r--r--source/gn/sfx2/source/doc.po28
-rw-r--r--source/gn/sfx2/source/sidebar.po8
-rw-r--r--source/gn/sfx2/source/view.po6
-rw-r--r--source/gn/sfx2/uiconfig/ui.po42
-rw-r--r--source/gn/shell/source/win32/shlxthandler/res.po6
-rw-r--r--source/gn/starmath/source.po16
-rw-r--r--source/gn/starmath/uiconfig/smath/ui.po32
-rw-r--r--source/gn/svl/source/misc.po8
-rw-r--r--source/gn/svtools/source/contnr.po8
-rw-r--r--source/gn/svtools/source/control.po14
-rw-r--r--source/gn/svtools/source/dialogs.po18
-rw-r--r--source/gn/svtools/source/misc.po16
-rw-r--r--source/gn/svtools/uiconfig/ui.po14
-rw-r--r--source/gn/svx/inc.po66
-rw-r--r--source/gn/svx/source/accessibility.po14
-rw-r--r--source/gn/svx/source/dialog.po70
-rw-r--r--source/gn/svx/source/engine3d.po54
-rw-r--r--source/gn/svx/source/fmcomp.po6
-rw-r--r--source/gn/svx/source/form.po104
-rw-r--r--source/gn/svx/source/gallery2.po12
-rw-r--r--source/gn/svx/source/items.po54
-rw-r--r--source/gn/svx/source/sidebar/line.po6
-rw-r--r--source/gn/svx/source/sidebar/text.po8
-rw-r--r--source/gn/svx/source/src.po22
-rw-r--r--source/gn/svx/source/svdraw.po26
-rw-r--r--source/gn/svx/source/tbxctrls.po66
-rw-r--r--source/gn/svx/uiconfig/ui.po114
-rw-r--r--source/gn/sw/source/core/undo.po14
-rw-r--r--source/gn/sw/source/ui/app.po14
-rw-r--r--source/gn/sw/source/ui/config.po12
-rw-r--r--source/gn/sw/source/ui/dbui.po8
-rw-r--r--source/gn/sw/source/ui/dialog.po6
-rw-r--r--source/gn/sw/source/ui/dochdl.po8
-rw-r--r--source/gn/sw/source/ui/fldui.po8
-rw-r--r--source/gn/sw/source/ui/misc.po8
-rw-r--r--source/gn/sw/source/ui/sidebar.po8
-rw-r--r--source/gn/sw/source/ui/utlui.po26
-rw-r--r--source/gn/sw/source/uibase/docvw.po10
-rw-r--r--source/gn/sw/source/uibase/lingu.po8
-rw-r--r--source/gn/sw/source/uibase/ribbar.po8
-rw-r--r--source/gn/sw/source/uibase/utlui.po32
-rw-r--r--source/gn/sw/source/uibase/wrtsh.po8
-rw-r--r--source/gn/sw/uiconfig/swriter/ui.po208
-rw-r--r--source/gn/swext/mediawiki/help.po10
-rw-r--r--source/gn/vcl/source/src.po22
-rw-r--r--source/gn/vcl/uiconfig/ui.po32
-rw-r--r--source/gn/wizards/source/formwizard.po16
-rw-r--r--source/gn/wizards/source/template.po12
-rw-r--r--source/hu/cui/uiconfig/ui.po6
-rw-r--r--source/hu/sc/source/ui/navipi.po6
-rw-r--r--source/hu/sfx2/source/view.po6
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/it/svx/uiconfig/ui.po12
-rw-r--r--source/kk/sc/source/ui/src.po10
-rw-r--r--source/ko/chart2/source/controller/dialogs.po39
-rw-r--r--source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/nl/filter/uiconfig/ui.po10
-rw-r--r--source/nl/formula/source/core/resource.po2
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/nl/sd/source/ui/annotations.po13
-rw-r--r--source/nl/starmath/source.po6
-rw-r--r--source/nl/sw/source/ui/docvw.po12
-rw-r--r--source/nl/sw/uiconfig/swriter/ui.po8
-rw-r--r--source/nl/swext/mediawiki/help.po12
-rw-r--r--source/nn/editeng/source/items.po10
-rw-r--r--source/nn/filter/uiconfig/ui.po6
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po24
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/nn/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/nn/scp2/source/graphicfilter.po10
-rw-r--r--source/nn/starmath/source.po30
-rw-r--r--source/nn/starmath/uiconfig/smath/ui.po18
-rw-r--r--source/nn/svx/source/engine3d.po6
-rw-r--r--source/nn/sw/source/ui/config.po6
-rw-r--r--source/nn/sw/uiconfig/swriter/ui.po8
-rw-r--r--source/nn/vcl/uiconfig/ui.po6
-rw-r--r--source/oc/extensions/uiconfig/sabpilot/ui.po6
-rw-r--r--source/oc/filter/source/config/fragments/filters.po8
-rw-r--r--source/oc/filter/uiconfig/ui.po6
-rw-r--r--source/oc/formula/source/core/resource.po2
-rw-r--r--source/oc/scaddins/source/analysis.po2
-rw-r--r--source/oc/svx/source/dialog.po8
-rw-r--r--source/oc/sw/source/uibase/utlui.po12
-rw-r--r--source/oc/sw/uiconfig/swriter/ui.po32
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po52
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/pt-BR/svx/uiconfig/ui.po12
-rw-r--r--source/pt/avmedia/source/viewer.po6
-rw-r--r--source/pt/basic/source/classes.po6
-rw-r--r--source/pt/cui/uiconfig/ui.po6
-rw-r--r--source/pt/formula/source/core/resource.po6
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pt/sc/source/ui/src.po6
-rw-r--r--source/pt/sd/source/ui/app.po6
-rw-r--r--source/pt/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/pt/svx/source/svdraw.po6
-rw-r--r--source/pt/sw/source/core/undo.po10
-rw-r--r--source/pt/sw/source/ui/app.po6
-rw-r--r--source/pt/wizards/source/formwizard.po6
-rw-r--r--source/ru/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/sl/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/sl/sd/source/ui/app.po22
-rw-r--r--source/sl/sd/uiconfig/simpress/ui.po463
-rw-r--r--source/sl/starmath/uiconfig/smath/ui.po13
-rw-r--r--source/sq/chart2/uiconfig/ui.po6
-rw-r--r--source/sq/cui/source/options.po6
-rw-r--r--source/sq/cui/uiconfig/ui.po26
-rw-r--r--source/sq/dbaccess/source/ui/app.po6
-rw-r--r--source/sq/dbaccess/uiconfig/ui.po6
-rw-r--r--source/sq/desktop/uiconfig/ui.po10
-rw-r--r--source/sq/extensions/source/propctrlr.po6
-rw-r--r--source/sq/filter/uiconfig/ui.po10
-rw-r--r--source/sq/helpcontent2/source/auxiliary.po100
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/guide.po115
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po42
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po17
-rw-r--r--source/sq/sc/uiconfig/scalc/ui.po42
-rw-r--r--source/sq/sd/source/ui/app.po6
-rw-r--r--source/sq/sfx2/source/appl.po6
-rw-r--r--source/sq/sfx2/uiconfig/ui.po6
-rw-r--r--source/sq/svtools/source/contnr.po6
-rw-r--r--source/sq/svtools/source/misc.po214
-rw-r--r--source/sq/svx/source/svdraw.po6
-rw-r--r--source/sq/svx/source/tbxctrls.po6
-rw-r--r--source/sq/sw/uiconfig/swriter/ui.po18
-rw-r--r--source/sq/vcl/source/src.po6
-rw-r--r--source/sq/wizards/source/formwizard.po6
-rw-r--r--source/sv/sc/source/ui/src.po8
293 files changed, 2734 insertions, 3192 deletions
diff --git a/source/br/librelogo/source/pythonpath.po b/source/br/librelogo/source/pythonpath.po
index 358683347ba..e60eb0e5371 100644
--- a/source/br/librelogo/source/pythonpath.po
+++ b/source/br/librelogo/source/pythonpath.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-05-27 20:20+0000\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-08 14:25+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: none\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401222051.000000\n"
+"X-POOTLE-MTIME: 1431095135.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"NORMAL\n"
"property.text"
msgid "normal"
-msgstr "Reizh"
+msgstr "reizh"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office.po b/source/br/officecfg/registry/data/org/openoffice/Office.po
index 60fd2a0b781..5569c911558 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-04-12 16:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2015-05-08 13:47+0000\n"
+"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1428855152.000000\n"
+"X-POOTLE-MTIME: 1431092860.000000\n"
#: Addons.xcu
msgctxt ""
@@ -9104,7 +9104,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LightPreference"
-msgstr "KizañGouloù"
+msgstr "GwellvezGouloù"
#: TableWizard.xcu
msgctxt ""
@@ -9113,7 +9113,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LightPref"
-msgstr "KizañGouloù"
+msgstr "GwellvGoul"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
index fb07cabf86c..f8f9811f6f5 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-02-16 22:21+0100\n"
-"PO-Revision-Date: 2015-04-12 16:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2015-05-08 14:18+0000\n"
+"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1428855156.000000\n"
+"X-POOTLE-MTIME: 1431094727.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -14533,7 +14533,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Poi~nts"
-msgstr "~A boentoù"
+msgstr "~Poentoù"
#: GenericCommands.xcu
msgctxt ""
@@ -23632,7 +23632,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number Format : Date"
-msgstr "Mentrezh niverel : deizhiad"
+msgstr "Mentrezh niverel : deiziad"
#: WriterCommands.xcu
msgctxt ""
@@ -24424,7 +24424,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fie~ld Shadings"
-msgstr "~Merkoù"
+msgstr "~Anneuenn foñs evit ar maeziennoù"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/br/sc/source/ui/src.po b/source/br/sc/source/ui/src.po
index a08dce86b15..afec595c0cf 100644
--- a/source/br/sc/source/ui/src.po
+++ b/source/br/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-01-07 11:08+0100\n"
-"PO-Revision-Date: 2015-04-12 17:43+0000\n"
+"PO-Revision-Date: 2015-04-29 17:58+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1428860586.000000\n"
+"X-POOTLE-MTIME: 1430330288.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -8470,7 +8470,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Future value. Returns the future value of an investment based on regular payments and a constant interest rate."
-msgstr "Gwerzh da zont. Jediñ a ra gwerzh da zont ur postadur diazez war taladoù ingal ha war ur feur kampi arstalek."
+msgstr "Gwerzh da zont. Jediñ a ra gwerzh da zont ur postadur diazezet war taladoù ingal ha war ur feur kampi arstalek."
#: scfuncs.src
msgctxt ""
@@ -8569,7 +8569,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate."
-msgstr "Marevezh talañ. Jediñ a ra an niver marevezhioù paeañ evit ur postadur diazez war taladoù ingal hag ur feur kampi arstalek."
+msgstr "Marevezh talañ. Jediñ a ra an niver marevezhioù paeañ evit ur postadur diazezet war taladoù ingal hag ur feur kampi arstalek."
#: scfuncs.src
msgctxt ""
@@ -8884,7 +8884,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period."
-msgstr "Kampi berniet. Jediñ a ra talad ar c'hampioù evit ur postadur gant paemantoù ingal hag ur feur kampi arstalek evit ar marevezh lavaret.."
+msgstr "Kampi kemplezh. Jediñ a ra talad ar c'hampioù evit ur postadur gant taladoù ingal hag ur feur kampi arstalek evit ar marevezh lavaret."
#: scfuncs.src
msgctxt ""
@@ -8920,7 +8920,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one."
-msgstr "Marevezhioù. Ar marevezhioù ma fell deoc'h jediñ e gampioù berniet. P = 1 evit ar marevezh kentañ, P = NMAR evit an hini diwezhañ."
+msgstr "Marevezhioù. Ar marevezhioù ma fell deoc'h jediñ e gampioù kemplezh. P = 1 evit ar marevezh kentañ, P = NMAR evit an hini diwezhañ."
#: scfuncs.src
msgctxt ""
@@ -9001,7 +9001,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant."
-msgstr "Adtalañ. Jediñ a ra sammad an dastaladur evit ur postadur diazezet war paemantoù ingal hag ur feur kampi arstalek."
+msgstr "Dastalañ. Jediñ a ra sammad an dastaladur evit ur postadur diazezet war taladoù ingal hag ur feur kampi arstalek."
#: scfuncs.src
msgctxt ""
@@ -9073,7 +9073,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztaloù a dalv bremañ."
+msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztalioù a dalv bremañ."
#: scfuncs.src
msgctxt ""
@@ -9172,7 +9172,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztaloù a dalv bremañ."
+msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztalioù a dalv bremañ."
#: scfuncs.src
msgctxt ""
@@ -9235,7 +9235,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate."
-msgstr "Kampi berniet : Jediñ a ra berniad ar c'hampioù paeet etre daou varevezh lavaret evit ur postadur gant ur feur kampi arstalek."
+msgstr "Kampi kemplezh dassammet : Jediñ a ra berniad ar c'hampioù paeet etre daou varevezh lavaret evit ur postadur gant ur feur kampi arstalek."
#: scfuncs.src
msgctxt ""
@@ -9289,7 +9289,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztaloù a dalv bremañ."
+msgstr "Gwerzh vremanel. Talvoudegezh a-vremañ ar werzh pe kementad ar bloaztalioù a dalv bremañ."
#: scfuncs.src
msgctxt ""
@@ -9424,7 +9424,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "Period. The depreciation period which must have the same time unit as average useful life."
-msgstr "Marevezh. Ar marevezh traolañ a rank bezañ gant an hevelep unanenn amzer hag ar vuhevezh talvoudus."
+msgstr "Marevezh. Ar marevezh traolañ a rank bezañ gant an hevelep unanenn amzer hag ar vuhezvezh talvoudus."
#: scfuncs.src
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "Period. The depreciation period in the same time unit as the average useful life entry."
-msgstr "Marevezh. Ar marevezh traolañ gant an hevelep unanenn amzer ha buhezvezh ar mad.."
+msgstr "Marevezh. Ar marevezh dispriziañ gant an hevelep unanenn amzer ha buhezvezh ar mad."
#: scfuncs.src
msgctxt ""
@@ -9586,7 +9586,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "Factor. The factor for balance decline. F = 2 means a double declining balance factor"
-msgstr "Feur. Ar feur traolañ war zigresk. ; F = 2 zo an hentenn draolañ war zigresk dre zaoufeur."
+msgstr "Feur. Ar feur traolañ war zigresk. F = 2 zo an hentenn draolañ war zigresk dre zaoufeur."
#: scfuncs.src
msgctxt ""
@@ -9667,7 +9667,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life."
-msgstr "Marevezhioù : Ar marevezh ma fell deoc'h jediñ an traolañ evitañ. Ret eo dezhañ bezañ eztaolet gant an hevelep unanenn amzer ha buhezvezh ar mad."
+msgstr "Marevezhioù : Ar marevezh ma fell deoc'h jediñ an dispriziañ evitañ. Ret eo dezhañ bezañ eztaolet gant an hevelep unanenn amzer ha buhezvezh ar mad."
#: scfuncs.src
msgctxt ""
diff --git a/source/br/scaddins/source/analysis.po b/source/br/scaddins/source/analysis.po
index d89d26eb43f..c21880b0756 100644
--- a/source/br/scaddins/source/analysis.po
+++ b/source/br/scaddins/source/analysis.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-07-12 11:39+0000\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-04-29 17:58+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1405165157.000000\n"
+"X-POOTLE-MTIME: 1430330298.000000\n"
#: analysis.src
msgctxt ""
@@ -6053,7 +6053,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the future value of the initial principal after a series of compound interest rates are applied"
-msgstr "Reiñ a ra gwerzh da zont ur c'hevala en ur arloañ ur steudad feurioù kampi mesket outañ"
+msgstr "Reiñ a ra gwerzh da zont ur c'hevala en ur arloañ ur steudad feurioù kampi kemplezh outañ"
#: analysis.src
msgctxt ""
diff --git a/source/br/setup_native/source/mac.po b/source/br/setup_native/source/mac.po
index cba4fb4373f..447b08452ee 100644
--- a/source/br/setup_native/source/mac.po
+++ b/source/br/setup_native/source/mac.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-05-02 14:41+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-19 20:20+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1432066845.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -45,7 +46,7 @@ msgctxt ""
"IntroText1\n"
"LngText.text"
msgid "Welcome to the [FULLPRODUCTNAME] Installation Wizard"
-msgstr "Degemer mar er meziant staliañ [FULLPRODUCTNAME]"
+msgstr "Degemer mat er meziant staliañ [FULLPRODUCTNAME]"
#: macinstall.ulf
msgctxt ""
diff --git a/source/br/svtools/source/misc.po b/source/br/svtools/source/misc.po
index 525f58942dc..07c8e1e7d0d 100644
--- a/source/br/svtools/source/misc.po
+++ b/source/br/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-26 18:25+0000\n"
+"PO-Revision-Date: 2015-05-19 20:28+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1419618312.000000\n"
+"X-POOTLE-MTIME: 1432067330.000000\n"
#: imagemgr.src
msgctxt ""
@@ -2580,7 +2580,7 @@ msgctxt ""
"LANGUAGE_USER_EWE_GHANA\n"
"pairedlist.text"
msgid "Éwé"
-msgstr "Éwé"
+msgstr "Ewe"
#: langtab.src
msgctxt ""
diff --git a/source/br/svtools/uiconfig/ui.po b/source/br/svtools/uiconfig/ui.po
index 1c8a6ce8bff..025e85ba069 100644
--- a/source/br/svtools/uiconfig/ui.po
+++ b/source/br/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-26 18:10+0000\n"
+"PO-Revision-Date: 2015-05-08 14:19+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: none\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1419617409.000000\n"
+"X-POOTLE-MTIME: 1431094770.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "points"
-msgstr "a boentoù pegañ"
+msgstr "a boentoù"
#: graphicexport.ui
msgctxt ""
diff --git a/source/br/svx/source/engine3d.po b/source/br/svx/source/engine3d.po
index 300d5f3bc41..215a1b1c55f 100644
--- a/source/br/svx/source/engine3d.po
+++ b/source/br/svx/source/engine3d.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:09+0200\n"
-"PO-Revision-Date: 2013-07-28 15:04+0000\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-08 14:27+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1375023878.0\n"
+"X-POOTLE-MTIME: 1431095257.000000\n"
#: float3d.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"BTN_REPRESENTATION\n"
"imagebutton.quickhelptext"
msgid "Shading"
-msgstr "Skeud"
+msgstr "Disheoliadur"
#: float3d.src
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"FL_NORMALS\n"
"fixedline.text"
msgid "Normals"
-msgstr "Reizh"
+msgstr "Skoueriegenneoù"
#: float3d.src
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"FT_FOCAL_LENGTH\n"
"fixedtext.text"
msgid "~Focal length"
-msgstr "Am~kanell"
+msgstr "~Stihed"
#: float3d.src
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"FL_REPRESENTATION\n"
"fixedline.text"
msgid "Shading"
-msgstr "Skeud"
+msgstr "Disheoliadur"
#: float3d.src
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"BTN_TEX_MODULATE\n"
"imagebutton.quickhelptext"
msgid "Texture and Shading"
-msgstr "Gwiadezh ha skeud"
+msgstr "Gwiadezh ha disheoliadur"
#: float3d.src
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"FT_MAT_EMISSION\n"
"fixedtext.text"
msgid "~Illumination color"
-msgstr "~Liv luc'hek"
+msgstr "~Liv sklerijennañ"
#: float3d.src
msgctxt ""
@@ -891,7 +891,7 @@ msgctxt ""
"RID_SVX_3D_UNDO_FOCAL\n"
"string.text"
msgid "Focal length"
-msgstr "Amkanell ar c'hamera"
+msgstr "Stihed"
#: string3d.src
msgctxt ""
diff --git a/source/br/svx/source/sidebar/area.po b/source/br/svx/source/sidebar/area.po
index a139bc107a3..f0f6a915019 100644
--- a/source/br/svx/source/sidebar/area.po
+++ b/source/br/svx/source/sidebar/area.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-06-08 15:59+0000\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-08 13:38+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1402243191.000000\n"
+"X-POOTLE-MTIME: 1431092314.000000\n"
#: AreaPropertyPanel.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"MTR_TRGR_CENTER_X\n"
"metricfield.quickhelptext"
msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center."
-msgstr "Erspizañ dregantad al linkañ a-blaen diouzh ar c'hreiz evit stil skeudañ an ilrezenn. 50% a dalv d'ur c'hreiz a-blaen."
+msgstr "Erspizañ dregantad al linkañ a-blaen diouzh ar c'hreiz evit stil disheoliañ an ilrezenn. 50% a dalv d'ur c'hreiz a-blaen."
#: AreaPropertyPanel.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"MTR_TRGR_CENTER_Y\n"
"metricfield.quickhelptext"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
-msgstr "Erspizañ dregantad al linkañ a-serzh diouzh ar c'hreiz evit stil skeudañ an ilrezenn. 50% a dalv d'ur c'hreiz a-serzh."
+msgstr "Erspizañ dregantad al linkañ a-serzh diouzh ar c'hreiz evit stil disheoliañ an ilrezenn. 50% a dalv d'ur c'hreiz a-serzh."
#: AreaPropertyPanel.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"MTR_TRGR_ANGLE\n"
"metricfield.quickhelptext"
msgid "Specify the angle of rotation for the gradient shading style."
-msgstr "Erspizañ korn ar c'hwelañ evit stil skeud an ilrezenn."
+msgstr "Erspizañ korn ar c'hwelañ evit stil disheoliañ an ilrezenn."
#: AreaPropertyPanel.src
msgctxt ""
diff --git a/source/br/svx/source/toolbars.po b/source/br/svx/source/toolbars.po
index 10184c5a4a0..06d60c7aade 100644
--- a/source/br/svx/source/toolbars.po
+++ b/source/br/svx/source/toolbars.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2011-05-01 11:44+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-08 13:26+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1431091562.000000\n"
#: extrusionbar.src
msgctxt ""
@@ -93,7 +94,7 @@ msgctxt ""
"RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING\n"
"string.text"
msgid "Change Lighting"
-msgstr "Daskemmañ ar goulaouiñ"
+msgstr "Daskemmañ ar sklêrijennañ"
#: extrusionbar.src
msgctxt ""
diff --git a/source/ca/chart2/uiconfig/ui.po b/source/ca/chart2/uiconfig/ui.po
index 36ac9d56e8f..864b42509bf 100644
--- a/source/ca/chart2/uiconfig/ui.po
+++ b/source/ca/chart2/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:22+0100\n"
-"PO-Revision-Date: 2014-11-22 07:03+0000\n"
-"Last-Translator: Joan <joan@montane.cat>\n"
+"PO-Revision-Date: 2015-05-06 12:54+0000\n"
+"Last-Translator: Jordi <jordis@softcatala.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416639798.000000\n"
+"X-POOTLE-MTIME: 1430916854.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End with horizontal line"
-msgstr "_Finalitza amb una línia hortizontal"
+msgstr "_Finalitza amb una línia horitzontal"
#: steppedlinesdlg.ui
msgctxt ""
diff --git a/source/ca/formula/source/core/resource.po b/source/ca/formula/source/core/resource.po
index 6dfb6a35e67..98560f8766f 100644
--- a/source/ca/formula/source/core/resource.po
+++ b/source/ca/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-28 21:31+0200\n"
+"POT-Creation-Date: 2015-05-26 14:41+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/ca/helpcontent2/source/text/smath/01.po b/source/ca/helpcontent2/source/text/smath/01.po
index 7a0fb5362fc..783db652a55 100644
--- a/source/ca/helpcontent2/source/text/smath/01.po
+++ b/source/ca/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:24+0100\n"
-"PO-Revision-Date: 2015-01-05 21:14+0000\n"
+"PO-Revision-Date: 2015-05-06 12:57+0000\n"
"Last-Translator: Jordi <jordis@softcatala.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1420492456.000000\n"
+"X-POOTLE-MTIME: 1430917040.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -4768,7 +4768,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Align to horizontal center"
-msgstr "Alineació al centre"
+msgstr "Alineació al centre horitzontal"
#: 03090700.xhp
msgctxt ""
@@ -10925,7 +10925,7 @@ msgctxt ""
"469\n"
"help.text"
msgid "Align to horizontal center"
-msgstr "Alineació al centre"
+msgstr "Alineació al centre horitzontal"
#: 03091509.xhp
msgctxt ""
diff --git a/source/da/scp2/source/extensions.po b/source/da/scp2/source/extensions.po
index 959ed15c65d..e52ae4b49b2 100644
--- a/source/da/scp2/source/extensions.po
+++ b/source/da/scp2/source/extensions.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-05-29 19:51+0000\n"
-"Last-Translator: laugesen <jesper@laugesen.org>\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-05-22 18:57+0000\n"
+"Last-Translator: Jesper <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369857079.0\n"
+"X-POOTLE-MTIME: 1432321035.000000\n"
#: module_extensions.ulf
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_BEANSHELL\n"
"LngText.text"
msgid "Script provider for BeanShell"
-msgstr "Forberedelse af BeanShell-Scripting"
+msgstr "Understøttelse af BeanShell-Scripting"
#: module_extensions.ulf
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_BEANSHELL\n"
"LngText.text"
msgid "Script provider for BeanShell"
-msgstr "Forberedelse af BeanShell-Scripting"
+msgstr "Understøttelse af BeanShell-Scripting"
#: module_extensions.ulf
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_JAVASCRIPT\n"
"LngText.text"
msgid "Script provider for JavaScript"
-msgstr "Forberedelse af JavaScript"
+msgstr "Understøttelse af JavaScript-scripting"
#: module_extensions.ulf
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_JAVASCRIPT\n"
"LngText.text"
msgid "Script provider for JavaScript"
-msgstr "Forberedelse af JavaScript"
+msgstr "Understøttelse af JavaScript-scripting"
#: module_extensions_sun_templates.ulf
msgctxt ""
diff --git a/source/de/cui/uiconfig/ui.po b/source/de/cui/uiconfig/ui.po
index 4897b2e898c..72d4afecf76 100644
--- a/source/de/cui/uiconfig/ui.po
+++ b/source/de/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-01-07 11:08+0100\n"
-"PO-Revision-Date: 2015-02-14 17:51+0000\n"
+"PO-Revision-Date: 2015-05-07 16:02+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1423936281.000000\n"
+"X-POOTLE-MTIME: 1431014523.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Area"
-msgstr "_Fläche"
+msgstr "Fläche"
#: areadialog.ui
msgctxt ""
@@ -10513,7 +10513,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Allow collecting usage information, and sending it to TDF servers"
-msgstr "Das Sammeln und Senden von Informationen über die Benutzung an die Server der TDF erlauben"
+msgstr "Erlauben, Nutzungsdaten zu sammeln und an die Server der TDF zu senden."
#: optgeneralpage.ui
msgctxt ""
@@ -12472,7 +12472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use OpenGL for all rendering"
-msgstr "OpenGL für das Rendering benutzen"
+msgstr "OpenGL für das Rendern verwenden"
#: optviewpage.ui
msgctxt ""
@@ -12481,7 +12481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Force OpenGL even if blacklisted (might expose driver bugs)"
-msgstr "OpenGL trotz Blacklist erzwingen"
+msgstr "OpenGL trotz Eintrag in Negativliste erzwingen"
#: optviewpage.ui
msgctxt ""
diff --git a/source/de/extensions/uiconfig/sbibliography/ui.po b/source/de/extensions/uiconfig/sbibliography/ui.po
index f103385f8ad..586a3efb378 100644
--- a/source/de/extensions/uiconfig/sbibliography/ui.po
+++ b/source/de/extensions/uiconfig/sbibliography/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-19 16:25+0000\n"
+"PO-Revision-Date: 2015-05-18 14:01+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416414343.000000\n"
+"X-POOTLE-MTIME: 1431957669.000000\n"
#: choosedatasourcedialog.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numb_er"
-msgstr "Anza_hl"
+msgstr "N_ummer"
#: generalpage.ui
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc.po b/source/de/helpcontent2/source/text/scalc.po
index c0528cfb8da..917503f95e6 100644
--- a/source/de/helpcontent2/source/text/scalc.po
+++ b/source/de/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-04-23 16:10+0000\n"
+"PO-Revision-Date: 2015-05-17 12:40+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429805457.000000\n"
+"X-POOTLE-MTIME: 1431866420.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Preview Bar"
-msgstr "Symbolleiste Seitenansicht"
+msgstr "Symbolleiste Druckvorschau"
#: main0210.xhp
msgctxt ""
@@ -1271,7 +1271,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Symbolleiste Seitenansicht\">Symbolleiste Seitenansicht</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Symbolleiste Druckvorschau\">Symbolleiste Druckvorschau</link>"
#: main0210.xhp
msgctxt ""
@@ -1280,7 +1280,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Die Symbolleiste <emph>Seitenansicht</emph> wird angezeigt, wenn Sie im Menü <emph>Datei - Seitenansicht</emph> auswählen.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Die Symbolleiste <emph>Druckvorschau</emph> wird angezeigt, wenn Sie im Menü <emph>Datei - Druckvorschau</emph> auswählen.</ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1349,7 +1349,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Close Preview"
-msgstr "Seitenansicht schließen"
+msgstr "Druckvorschau schließen"
#: main0210.xhp
msgctxt ""
@@ -1357,7 +1357,7 @@ msgctxt ""
"par_id460829\n"
"help.text"
msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
-msgstr "Um die Seitenansicht zu beenden, klicken Sie auf die Schaltfläche <emph>Seitenansicht schließen</emph>."
+msgstr "Um die Druckvorschau zu beenden, klicken Sie auf die Schaltfläche <emph>Druckvorschau schließen</emph>."
#: main0214.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/00.po b/source/de/helpcontent2/source/text/scalc/00.po
index d5c6d0586c5..2e3f7b86bc0 100644
--- a/source/de/helpcontent2/source/text/scalc/00.po
+++ b/source/de/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-28 14:44+0000\n"
+"PO-Revision-Date: 2015-05-17 12:40+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417185872.000000\n"
+"X-POOTLE-MTIME: 1431866434.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
-msgstr "<variable id=\"seumvo\">Menü <emph>Ansicht - Seitenumbruch-Vorschau</emph></variable>"
+msgstr "<variable id=\"seumvo\">Wählen Sie im Menü <emph>Ansicht - Seitenumbruch-Vorschau</emph></variable>"
#: 00000404.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 6655d0f696a..5c559298517 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-26 19:57+0100\n"
-"PO-Revision-Date: 2015-04-23 15:54+0000\n"
+"PO-Revision-Date: 2015-05-22 16:20+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429804449.000000\n"
+"X-POOTLE-MTIME: 1432311641.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Preview"
-msgstr "Seitenansicht"
+msgstr "Druckvorschau"
#: 01120000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id1918698\n"
"help.text"
msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
-msgstr "<link href=\"text/scalc/01/01120000.xhp\">Seitenansicht</link>"
+msgstr "<link href=\"text/scalc/01/01120000.xhp\">Druckvorschau</link>"
#: 01120000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3831598\n"
"help.text"
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
-msgstr "<ahelp hid=\".uno:PrintPreview\">Öffnet oder schließt eine Vorschau der gedruckten Seite.</ahelp>"
+msgstr "<ahelp hid=\".uno:PrintPreview\">Öffnet oder schließt die Druckvorschau.</ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3145847\n"
"help.text"
msgid "Use the icons on the <emph>Page Preview Bar</emph> to scroll through the pages of the document or to print the document."
-msgstr "In der Symbolleiste <emph>Seitenvorschau</emph> stehen Symbole zum Durchlaufen der Seiten oder Drucken des Dokuments zur Verfügung."
+msgstr "In der Symbolleiste <emph>Druckvorschau</emph> stehen Symbole zum Durchlaufen der Seiten oder Drucken des Dokuments zur Verfügung."
#: 01120000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id7211828\n"
"help.text"
msgid "You cannot edit your document while you are in the page preview."
-msgstr "In der Seitenansicht ist keine Bearbeitung des Dokuments möglich."
+msgstr "In der Druckvorschau ist keine Bearbeitung des Dokuments möglich."
#: 01120000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id460829\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the page preview, click the <emph>Close Preview</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zum Verlassen der Seitenansicht klicken Sie auf die Schaltfläche <emph>Seitenansicht schließen</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zum Verlassen der Druckvorschau klicken Sie auf die Schaltfläche <emph>Druckvorschau schließen</emph>.</ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -9378,7 +9378,7 @@ msgctxt ""
"bm_id3147081\n"
"help.text"
msgid "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
-msgstr "<bookmark_value>ISTFEHLER (Funktion)</bookmark_value><bookmark_value>Erkennen;allgemeine Fehler</bookmark_value>"
+msgstr "<bookmark_value>ISTFEHLER (Funktion)</bookmark_value><bookmark_value>Erkennen; allgemeine Fehler</bookmark_value>"
#: 04060104.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/04.po b/source/de/helpcontent2/source/text/scalc/04.po
index 94e04d52fb9..4f5901a8e25 100644
--- a/source/de/helpcontent2/source/text/scalc/04.po
+++ b/source/de/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-01-13 07:49+0000\n"
+"PO-Revision-Date: 2015-05-17 12:52+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1421135349.000000\n"
+"X-POOTLE-MTIME: 1431867167.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -381,7 +381,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "In the page preview: Moves to the previous print page."
-msgstr "In der Seitenvorschau: Springt zur vorigen Druckseite."
+msgstr "In der Druckvorschau: Springt zur vorigen Druckseite."
#: 01020000.xhp
msgctxt ""
@@ -408,7 +408,7 @@ msgctxt ""
"132\n"
"help.text"
msgid "In the page preview: Moves to the next print page."
-msgstr "In der Seitenvorschau: Springt zur nächsten Druckseite."
+msgstr "In der Druckvorschau: Springt zur nächsten Druckseite."
#: 01020000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index d3526357446..5cee4170a99 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-01-29 13:49+0000\n"
+"PO-Revision-Date: 2015-05-17 12:54+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1422539375.000000\n"
+"X-POOTLE-MTIME: 1431867266.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -5549,7 +5549,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr "Ein Bild, das Sie mittels <item type=\"menuitem\">Format - Seite... - Hintergrund</item> hinzugefügt haben, ist nur im Ausdruck oder in der Seitenvorschau sichtbar. Um ein Hintergrundbild auch am Bildschirm anzuzeigen, fügen Sie das Bild über das Menü <item type=\"menuitem\">Einfügen - Bild - Aus Datei...</item> ein und ordnen Sie es über das Menü <item type=\"menuitem\">Format - Anordnung - In den Hintergrund</item> hinter den Zellen an. Benutzen Sie den <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>, um das Hintergrundbild auszuwählen."
+msgstr "Ein Bild, das Sie mittels <item type=\"menuitem\">Format - Seite... - Hintergrund</item> hinzugefügt haben, ist nur im Ausdruck oder in der Druckvorschau sichtbar. Um ein Hintergrundbild auch am Bildschirm anzuzeigen, fügen Sie das Bild über das Menü <item type=\"menuitem\">Einfügen - Bild - Aus Datei...</item> ein und ordnen Sie es über das Menü <item type=\"menuitem\">Format - Anordnung - In den Hintergrund</item> hinter den Zellen an. Benutzen Sie den <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>, um das Hintergrundbild auszuwählen."
#: format_table.xhp
msgctxt ""
@@ -7287,7 +7287,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Printing and Page Preview"
-msgstr "Drucken und Seitenansicht"
+msgstr "Drucken und Druckvorschau"
#: main.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 7cdf3fd6b7c..592b345831b 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-04-23 16:15+0000\n"
+"PO-Revision-Date: 2015-05-17 13:04+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429805724.000000\n"
+"X-POOTLE-MTIME: 1431867889.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -5719,7 +5719,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
-msgstr "<variable id=\"webhtml\">Wählen Sie <emph>Datei - Vorschau in Webbrowser</emph></variable>"
+msgstr "<variable id=\"webhtml\">Wählen Sie im Menü <emph>Datei - Vorschau in Webbrowser</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6622,7 +6622,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Menu<emph> File - Page Preview</emph>"
-msgstr "Menü<emph> Datei - Seitenansicht</emph>"
+msgstr "Wählen Sie im Menü <emph>Datei - Druckvorschau</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"par_idN11384\n"
"help.text"
msgid "Page Preview"
-msgstr "Seitenansicht"
+msgstr "Druckvorschau"
#: 00000401.xhp
msgctxt ""
@@ -7656,7 +7656,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Full Screen On/Off (in Page Preview)"
-msgstr "Vollbild ein/aus (in Seitenansicht)"
+msgstr "Vollbild ein/aus (in Druckvorschau)"
#: 00000403.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 4ff78c70f0e..6372732e7fb 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-04-23 16:24+0000\n"
+"PO-Revision-Date: 2015-04-29 16:10+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429806265.000000\n"
+"X-POOTLE-MTIME: 1430323805.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -16763,7 +16763,7 @@ msgctxt ""
"138\n"
"help.text"
msgid "Era, full name and year"
-msgstr "Ära, vollständiger Name, und Jahr"
+msgstr "Ära, vollständiger Name und Jahr"
#: 05020301.xhp
msgctxt ""
@@ -22676,7 +22676,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChangeCaseToFullWidth\">Formt die ausgewählten asiatischen Zeichen in normale Breite um.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Formt die ausgewählten asiatischen Zeichen in normale Breite um.</ahelp>"
#: 05050000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index 80cc3e117f4..86b48effae5 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-24 04:41+0000\n"
+"PO-Revision-Date: 2015-05-17 13:35+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1419396100.000000\n"
+"X-POOTLE-MTIME: 1431869728.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13087,7 +13087,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Page Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Springt zur vorigen Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Seitenansicht</emph> über das Menü <emph>Datei</emph> aufrufen."
+msgstr "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Springt zur vorigen Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Druckvorschau</emph> über das Menü <emph>Datei</emph> aufrufen."
#: 10010000.xhp
msgctxt ""
@@ -13130,7 +13130,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Page Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Springt zur nächsten Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Seitenansicht</emph> über das Menü <emph>Datei</emph> aufrufen."
+msgstr "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Springt zur nächsten Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Druckvorschau</emph> über das Menü <emph>Datei</emph> aufrufen."
#: 10020000.xhp
msgctxt ""
@@ -13173,7 +13173,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Page Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Springt zur ersten Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Seitenansicht</emph> über das Menü <emph>Datei</emph> aufrufen."
+msgstr "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Springt zur ersten Seite im Dokument.</ahelp> Diese Funktion ist nur aktiv, wenn Sie die <emph>Druckvorschau</emph> über das Menü <emph>Datei</emph> aufrufen."
#: 10030000.xhp
msgctxt ""
@@ -13259,7 +13259,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:CloseWin\">Closes the current window.</ahelp> Choose <emph>Window - Close Window</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4. In the page preview of $[officename] Writer and Calc, you can close the current window by clicking the <emph>Close Preview</emph> button."
-msgstr "<ahelp hid=\".uno:CloseWin\">Schließt das aktuelle Fenster.</ahelp> Wählen Sie <emph>Fenster - Fenster schließen</emph>, oder drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+F4. In der Seitenvorschau von $[officename] Writer und Calc können Sie das aktuelle Fenster durch Klicken auf die Schaltfläche <emph>Fenster schließen</emph> schließen."
+msgstr "<ahelp hid=\".uno:CloseWin\">Schließt das aktuelle Fenster.</ahelp> Wählen Sie <emph>Fenster - Fenster schließen</emph> oder drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+F4. In der Druckvorschau von $[officename] Writer und Calc können Sie das aktuelle Fenster durch Klicken auf die Schaltfläche <emph>Druckvorschau schließen</emph> verlassen."
#: 10100000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/04.po b/source/de/helpcontent2/source/text/shared/04.po
index 81e83a0d6c5..147327f547e 100644
--- a/source/de/helpcontent2/source/text/shared/04.po
+++ b/source/de/helpcontent2/source/text/shared/04.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:10+0200\n"
-"PO-Revision-Date: 2014-08-30 09:36+0000\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-04-29 16:13+0000\n"
"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1409391404.000000\n"
+"X-POOTLE-MTIME: 1430324022.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"250\n"
"help.text"
msgid "Page Up"
-msgstr "Seite auf"
+msgstr "Bild nach oben"
#: 01010000.xhp
msgctxt ""
@@ -1512,7 +1512,7 @@ msgctxt ""
"249\n"
"help.text"
msgid "Scroll up one screen."
-msgstr "Sprung zur nächsten Seite"
+msgstr "Sprung zur vorherigen Seite"
#: 01010000.xhp
msgctxt ""
@@ -1521,7 +1521,7 @@ msgctxt ""
"355\n"
"help.text"
msgid "Page Down"
-msgstr "Bild ab"
+msgstr "Bild nach unten"
#: 01010000.xhp
msgctxt ""
@@ -1530,7 +1530,7 @@ msgctxt ""
"248\n"
"help.text"
msgid "Scroll down one screen."
-msgstr "Seite ab"
+msgstr "Sprung zur nächsten Seite"
#: 01010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index 2a072a92636..9887db08cc5 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po