summaryrefslogtreecommitdiff
path: root/arch/x86/kernel/vm86_32.c
blob: cce1c89cb7dfd4897c9256ba1d24516303031e96 (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
// SPDX-License-Identifier: GPL-2.0
/*
 *  Copyright (C) 1994  Linus Torvalds
 *
 *  29 dec 2001 - Fixed oopses caused by unchecked access to the vm86
 *                stack - Manfred Spraul <manfred@colorfullife.com>
 *
 *  22 mar 2002 - Manfred detected the stackfaults, but didn't handle
 *                them correctly. Now the emulation will be in a
 *                consistent state after stackfaults - Kasper Dupont
 *                <kasperd@daimi.au.dk>
 *
 *  22 mar 2002 - Added missing clear_IF in set_vflags_* Kasper Dupont
 *                <kasperd@daimi.au.dk>
 *
 *  ?? ??? 2002 - Fixed premature returns from handle_vm86_fault
 *                caused by Kasper Dupont's changes - Stas Sergeev
 *
 *   4 apr 2002 - Fixed CHECK_IF_IN_TRAP broken by Stas' changes.
 *                Kasper Dupont <kasperd@daimi.au.dk>
 *
 *   9 apr 2002 - Changed syntax of macros in handle_vm86_fault.
 *                Kasper Dupont <kasperd@daimi.au.dk>
 *
 *   9 apr 2002 - Changed stack access macros to jump to a label
 *                instead of returning to userspace. This simplifies
 *                do_int, and is needed by handle_vm6_fault. Kasper
 *                Dupont <kasperd@daimi.au.dk>
 *
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/capability.h>
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/syscalls.h>
#include <linux/sched.h>
#include <linux/sched/task_stack.h>
#include <linux/kernel.h>
#include <linux/signal.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/highmem.h>
#include <linux/ptrace.h>
#include <linux/audit.h>
#include <linux/stddef.h>
#include <linux/slab.h>
#include <linux/security.h>

#include <linux/uaccess.h>
#include <asm/io.h>
#include <asm/tlbflush.h>
#include <asm/irq.h>
#include <asm/traps.h>
#include <asm/vm86.h>
#include <asm/switch_to.h>

/*
 * Known problems:
 *
 * Interrupt handling is not guaranteed:
 * - a real x86 will disable all interrupts for one instruction
 *   after a "mov ss,xx" to make stack handling atomic even without
 *   the 'lss' instruction. We can't guarantee this in v86 mode,
 *   as the next instruction might result in a page fault or similar.
 * - a real x86 will have interrupts disabled for one instruction
 *   past the 'sti' that enables them. We don't bother with all the
 *   details yet.
 *
 * Let's hope these problems do not actually matter for anything.
 */


/*
 * 8- and 16-bit register defines..
 */
#define AL(regs)	(((unsigned char *)&((regs)->pt.ax))[0])
#define AH(regs)	(((unsigned char *)&((regs)->pt.ax))[1])
#define IP(regs)	(*(unsigned short *)&((regs)->pt.ip))
#define SP(regs)	(*(unsigned short *)&((regs)->pt.sp))

/*
 * virtual flags (16 and 32-bit versions)
 */
#define VFLAGS	(*(unsigned short *)&(current->thread.vm86->veflags))
#define VEFLAGS	(current->thread.vm86->veflags)

#define set_flags(X, new, mask) \
((X) = ((X) & ~(mask)) | ((new) & (mask)))

#define SAFE_MASK	(0xDD5)
#define RETURN_MASK	(0xDFF)

void save_v86_state(struct kernel_vm86_regs *regs, int retval)
{
	struct task_struct *tsk = current;
	struct vm86plus_struct __user *user;
	struct vm86 *vm86 = current->thread.vm86;

	/*
	 * This gets called from entry.S with interrupts disabled, but
	 * from process context. Enable interrupts here, before trying
	 * to access user space.
	 */
	local_irq_enable();

	BUG_ON(!vm86);

	set_flags(regs->pt.flags, VEFLAGS, X86_EFLAGS_VIF | vm86->veflags_mask);
	user = vm86->user_vm86;

	if (!user_access_begin(user, vm86->vm86plus.is_vm86pus ?
		       sizeof(struct vm86plus_struct) :
		       sizeof(struct vm86_struct)))
		goto Efault;

	unsafe_put_user(regs->pt.bx, &user->regs.ebx, Efault_end);
	unsafe_put_user(regs->pt.cx, &user->regs.ecx, Efault_end);
	unsafe_put_user(regs->pt.dx, &user->regs.edx, Efault_end);
	unsafe_put_user(regs->pt.si, &user->regs.esi, Efault_end);
	unsafe_put_user(regs->pt.di, &user->regs.edi, Efault_end);
	unsafe_put_user(regs->pt.bp, &user->regs.ebp, Efault_end);
	unsafe_put_user(regs->pt.ax, &user->regs.eax, Efault_end);
	unsafe_put_user(regs->pt.ip, &user->regs.eip, Efault_end);
	unsafe_put_user(regs->pt.cs, &user->regs.cs, Efault_end);
	unsafe_put_user(regs->pt.flags, &user->regs.eflags, Efault_end);
	unsafe_put_user(regs->pt.sp, &user->regs.esp, Efault_end);
	unsafe_put_user(regs->pt.ss, &user->regs.ss, Efault_end);
	unsafe_put_user(regs->es, &user->regs.es, Efault_end);
	unsafe_put_user(regs->ds, &user->regs.ds, Efault_end);
	unsafe_put_user(regs->fs, &user->regs.fs, Efault_end);
	unsafe_put_user(regs->gs, &user->regs.gs, Efault_end);

	/*
	 * Don't write screen_bitmap in case some user had a value there
	 * and expected it to remain unchanged.
	 */

	user_access_end();

exit_vm86:
	preempt_disable();
	tsk->thread.sp0 = vm86->saved_sp0;
	tsk->thread.sysenter_cs = __KERNEL_CS;
	update_task_stack(tsk);
	refresh_sysenter_cs(&tsk->thread);
	vm86->saved_sp0 = 0;
	preempt_enable();

	memcpy(&regs->pt, &vm86->regs32, sizeof(struct pt_regs));

	lazy_load_gs(vm86->regs32.gs);

	regs->pt.ax = retval;
	return;

Efault_end:
	user_access_end();
Efault:
	pr_alert("could not access userspace vm86 info\n");
	force_fatal_sig(SIGSEGV);
	goto exit_vm86;
}

static int do_vm86_irq_handling(int subfunction, int irqnumber);
static long do_sys_vm86(struct vm86plus_struct __user *user_vm86, bool plus);

SYSCALL_DEFINE1(vm86old, struct vm86_struct __user *, user_vm86)
{
	return do_sys_vm86((struct vm86plus_struct __user *) user_vm86, false);
}


SYSCALL_DEFINE2(vm86, unsigned long, cmd, unsigned long, arg)
{
	switch (cmd) {
	case VM86_REQUEST_IRQ:
	case VM86_FREE_IRQ:
	case VM86_GET_IRQ_BITS:
	case VM86_GET_AND_RESET_IRQ:
		return do_vm86_irq_handling(cmd, (int)arg);
	case VM86_PLUS_INSTALL_CHECK:
		/*
		 * NOTE: on old vm86 stuff this will return the error
		 *  from access_ok(), because the subfunction is
		 *  interpreted as (invalid) address to vm86_struct.
		 *  So the installation check works.
		 */
		return 0;
	}

	/* we come here only for functions VM86_ENTER, VM86_ENTER_NO_BYPASS */
	return do_sys_vm86((struct vm86plus_struct __user *) arg, true);
}


static long do_sys_vm86(struct vm86plus_struct __user *user_vm86, bool plus)
{
	struct task_struct *tsk = current;
	struct vm86 *vm86 = tsk->thread.vm86;
	struct kernel_vm86_regs vm86regs;
	struct pt_regs *regs = current_pt_regs();
	unsigned long err = 0;
	struct vm86_struct v;

	err = security_mmap_addr(0);
	if (err) {
		/*
		 * vm86 cannot virtualize the address space, so vm86 users
		 * need to manage the low 1MB themselves using mmap.  Given
		 * that BIOS places important data in the first page, vm86
		 * is essentially useless if mmap_min_addr != 0.  DOSEMU,
		 * for example, won't even bother trying to use vm86 if it
		 * can't map a page at virtual address 0.
		 *
		 * To reduce the available kernel attack surface, simply
		 * disallow vm86(old) for users who cannot mmap at va 0.
		 *
		 * The implementation of security_mmap_addr will allow
		 * suitably privileged users to map va 0 even if
		 * vm.mmap_min_addr is set above 0, and we want this
		 * behavior for vm86 as well, as it ensures that legacy
		 * tools like vbetool will not fail just because of
		 * vm.mmap_min_addr.
		 */
		pr_info_once("Denied a call to vm86(old) from %s[%d] (uid: %d).  Set the vm.mmap_min_addr sysctl to 0 and/or adjust LSM mmap_min_addr policy to enable vm86 if you are using a vm86-based DOS emulator.\n",
			     current->comm, task_pid_nr(current),
			     from_kuid_munged(&init_user_ns, current_uid()));
		return -EPERM;
	}

	if (!vm86) {
		if (!(vm86 = kzalloc(sizeof(*vm86), GFP_KERNEL)))
			return -ENOMEM;
		tsk->thread.vm86 = vm86;
	}
	if (vm86->saved_sp0)
		return -EPERM;

	if (copy_from_user(&v, user_vm86,
			offsetof(struct vm86_struct, int_revectored)))
		return -EFAULT;


	/* VM86_SCREEN_BITMAP had numerous bugs and appears to have no users. */
	if (v.flags & VM86_SCREEN_BITMAP) {
		char comm[TASK_COMM_LEN];

		pr_info_once("vm86: '%s' uses VM86_SCREEN_BITMAP, which is no longer supported\n", get_task_comm(comm, current));
		return -EINVAL;
	}

	memset(&vm86regs, 0, sizeof(vm86regs));

	vm86regs.pt.bx = v.regs.ebx;
	vm86regs.pt.cx = v.regs.ecx;
	vm86regs.pt.dx = v.regs.edx;
	vm86regs.pt.si = v.regs.esi;
	vm86regs.pt.di = v.regs.edi;
	vm86regs.pt.bp = v.regs.ebp;
	vm86regs.pt.ax = v.regs.eax;
	vm86regs.pt.ip = v.regs.eip;
	vm86regs.pt.cs = v.regs.cs;
	vm86regs.pt.flags = v.regs.eflags;
	vm86regs.pt.sp = v.regs.esp;
	vm86regs.pt.ss = v.regs.ss;
	vm86regs.es = v.regs.es;
	vm86regs.ds = v.regs.ds;
	vm86regs.fs = v.regs.fs;
	vm86regs.gs = v.regs.gs;

	vm86->flags = v.flags;
	vm86->cpu_type = v.cpu_type;

	if (copy_from_user(&vm86->int_revectored,
			   &user_vm86->int_revectored,
			   sizeof(struct revectored_struct)))
		return -EFAULT;
	if (copy_from_user(&vm86->int21_revectored,
			   &user_vm86->int21_revectored,
			   sizeof(struct revectored_struct)))
		return -EFAULT;
	if (plus) {
		if (copy_from_user(&vm86->vm86plus, &user_vm86->vm86plus,
				   sizeof(struct vm86plus_info_struct)))
			return -EFAULT;
		vm86->vm86plus.is_vm86pus = 1;
	} else
		memset(&vm86->vm86plus, 0,
		       sizeof(struct vm86plus_info_struct));

	memcpy(&vm86->regs32, regs, sizeof(struct pt_regs));
	vm86->user_vm86 = user_vm86;

/*
 * The flags register is also special: we cannot trust that the user
 * has set it up safely, so this makes sure interrupt etc flags are
 * inherited from protected mode.
 */
	VEFLAGS = vm86regs.pt.flags;
	vm86regs.pt.flags &= SAFE_MASK;
	vm86regs.pt.flags |= regs->flags & ~SAFE_MASK;
	vm86regs.pt.flags |= X86_VM_MASK;

	vm86regs.pt.orig_ax = regs->orig_ax;

	switch (vm86->cpu_type) {
	case CPU_286:
		vm86->veflags_mask = 0;
		break;
	case CPU_386:
		vm86->veflags_mask = X86_EFLAGS_NT | X86_EFLAGS_IOPL;
		break;
	case CPU_486:
		vm86->veflags_mask = X86_EFLAGS_AC | X86_EFLAGS_NT | X86_EFLAGS_IOPL;
		break;
	default:
		vm86->veflags_mask = X86_EFLAGS_ID | X86_EFLAGS_AC | X86_EFLAGS_NT | X86_EFLAGS_IOPL;
		break;
	}

/*
 * Save old state
 */
	vm86->saved_sp0 = tsk->thread.sp0;
	lazy_save_gs(vm86->regs32.gs);

	/* make room for real-mode segments */
	preempt_disable();
	tsk->thread.sp0 += 16;

	if (boot_cpu_has(X86_FEATURE_SEP)) {
		tsk->thread.sysenter_cs = 0;
		refresh_sysenter_cs(&tsk->thread);
	}

	update_task_stack(tsk);
	preempt_enable();

	memcpy((struct kernel_vm86_regs *)regs, &vm86regs, sizeof(vm86regs));
	return regs->ax;
}

static inline void set_IF(struct kernel_vm86_regs *regs)
{
	VEFLAGS |= X86_EFLAGS_VIF;
}

static inline void clear_IF(struct kernel_vm86_regs *regs)
{
	VEFLAGS &= ~X86_EFLAGS_VIF;
}

static inline void clear_TF(struct kernel_vm86_regs *regs)
{
	regs->pt.flags &= ~X86_EFLAGS_TF;
}

static inline void clear_AC(struct kernel_vm86_regs *regs)
{
	regs->pt.flags &= ~X86_EFLAGS_AC;
}

/*
 * It is correct to call set_IF(regs) from the set_vflags_*
 * functions. However someone forgot to call clear_IF(regs)
 * in the opposite case.
 * After the command sequence CLI PUSHF STI POPF you should
 * end up with interrupts disabled, but you ended up with
 * interrupts enabled.
 *  ( I was testing my own changes, but the only bug I
 *    could find was in a function I had not changed. )
 * [KD]
 */

static inline void set_vflags_long(unsigned long flags, struct kernel_vm86_regs *regs)
{
	set_flags(VEFLAGS, flags, current->thread.vm86->veflags_mask);
	set_flags(regs->pt.flags, flags, SAFE_MASK);
	if (flags & X86_EFLAGS_IF)
		set_IF(regs);
	else
		clear_IF(regs);
}

static inline void set_vflags_short(unsigned short flags, struct kernel_vm86_regs *regs)
{
	set_flags(VFLAGS, flags, current->thread.vm86->veflags_mask);
	set_flags(regs->pt.flags, flags, SAFE_MASK);
	if (flags & X86_EFLAGS_IF)
		set_IF(regs);
	else
		clear_IF(regs);
}

static inline unsigned long get_vflags(struct kernel_vm86_regs *regs)
{
	unsigned long flags = regs->pt.flags & RETURN_MASK;

	if (VEFLAGS & X86_EFLAGS_VIF)
		flags |= X86_EFLAGS_IF;
	flags |= X86_EFLAGS_IOPL;
	return flags | (VEFLAGS & current->thread.vm86->veflags_mask);
}

static inline int is_revectored(int nr, struct revectored_struct *bitmap)
{
	return test_bit(nr, bitmap->__map);
}

#define val_byte(val, n) (((__u8 *)&val)[n])

#define pushb(base, ptr, val, err_label) \
	do { \
		__u8 __val = val; \
		ptr--; \
		if (put_user(__val, base + ptr) < 0) \
			goto err_label; \
	} while (0)

#define pushw(base, ptr, val, err_label) \
	do { \
		__u16 __val = val; \
		ptr--; \
		if (put_user(val_byte(__val, 1), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 0), base + ptr) < 0) \
			goto err_label; \
	} while (0)

#define pushl(base, ptr, val, err_label) \
	do { \
		__u32 __val = val; \
		ptr--; \
		if (put_user(val_byte(__val, 3), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 2), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 1), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 0), base + ptr) < 0) \
			goto err_label; \
	} while (0)

#define popb(base, ptr, err_label) \
	({ \
		__u8 __res; \
		if (get_user(__res, base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

#define popw(base, ptr, err_label) \
	({ \
		__u16 __res; \
		if (get_user(val_byte(__res, 0), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 1), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

#define popl(base, ptr, err_label) \
	({ \
		__u32 __res; \
		if (get_user(val_byte(__res, 0), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 1), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 2), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 3), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

/* There are so many possible reasons for this function to return
 * VM86_INTx, so adding another doesn't bother me. We can expect
 * userspace programs to be able to handle it. (Getting a problem
 * in userspace is always better than an Oops anyway.) [KD]
 */
static void do_int(struct kernel_vm86_regs *regs, int i,
    unsigned char __user *ssp, unsigned short sp)
{
	unsigned long __user *intr_ptr;
	unsigned long segoffs;
	struct vm86 *vm86 = current->thread.vm86;

	if (regs->pt.cs == BIOSSEG)
		goto cannot_handle;
	if (is_revectored(i, &vm86->int_revectored))
		goto cannot_handle;
	if (i == 0x21 && is_revectored(AH(regs), &vm86->int21_revectored))
		goto cannot_handle;
	intr_ptr = (unsigned long __user *) (i << 2);
	if (get_user(segoffs, intr_ptr))
		goto cannot_handle;
	if ((segoffs >> 16) == BIOSSEG)
		goto cannot_handle;
	pushw(ssp, sp, get_vflags(regs), cannot_handle);
	pushw(ssp, sp, regs->pt.cs, cannot_handle);
	pushw(ssp, sp, IP(regs), cannot_handle);
	regs->pt.cs = segoffs >> 16;
	SP(regs) -= 6;
	IP(regs) = segoffs & 0xffff;
	clear_TF(regs);
	clear_IF(regs);
	clear_AC(regs);
	return;

cannot_handle:
	save_v86_state(regs, VM86_INTx + (i << 8));
}

int handle_vm86_trap(struct kernel_vm86_regs *regs, long error_code, int trapno)
{
	struct vm86 *vm86 = current->thread.vm86;

	if (vm86->vm86plus.is_vm86pus) {
		if ((trapno == 3) || (trapno == 1)) {
			save_v86_state(regs, VM86_TRAP + (trapno << 8));
			return 0;
		}
		do_int(regs, trapno, (unsigned char __user *) (regs->pt.ss << 4), SP(regs));
		return 0;
	}
	if (trapno != 1)
		return 1; /* we let this handle by the calling routine */
	current->thread.trap_nr = trapno;
	current->thread.error_code = error_code;
	force_sig(SIGTRAP);
	return 0;
}

void handle_vm86_fault(struct kernel_vm86_regs *regs, long error_code)
{
	unsigned char opcode;
	unsigned char __user *csp;
	unsigned char __user *ssp;
	unsigned short ip, sp, orig_flags;
	int data32, pref_done;
	struct vm86plus_info_struct *vmpi = &current->thread.vm86->vm86plus;

#define CHECK_IF_IN_TRAP \
	if (vmpi->vm86dbg_active && vmpi->vm86dbg_TFpendig) \
		newflags |= X86_EFLAGS_TF

	orig_flags = *(unsigned short *)&regs->pt.flags;

	csp = (unsigned char __user *) (regs->pt.cs << 4);
	ssp = (unsigned char __user *) (regs->pt.ss << 4);
	sp = SP(regs);
	ip = IP(regs);

	data32 = 0;
	pref_done = 0;
	do {
		switch (opcode = popb(csp, ip, simulate_sigsegv)) {
		case 0x66:      /* 32-bit data */     data32 = 1; break;
		case 0x67:      /* 32-bit address */  break;
		case 0x2e:      /* CS */              break;
		case 0x3e:      /* DS */              break;
		case 0x26:      /* ES */              break;
		case 0x36:      /* SS */              break;
		case 0x65:      /* GS */              break;
		case 0x64:      /* FS */              break;
		case 0xf2:      /* repnz */       break;
		case 0xf3:      /* rep */             break;
		default: pref_done = 1;
		}
	} while (!pref_done);

	switch (opcode) {

	/* pushf */
	case 0x9c:
		if (data32) {
			pushl(ssp, sp, get_vflags(regs), simulate_sigsegv);
			SP(regs) -= 4;
		} else {
			pushw(ssp, sp, get_vflags(regs), simulate_sigsegv);
			SP(regs) -= 2;
		}
		IP(regs) = ip;
		goto vm86_fault_return;

	/* popf */
	case 0x9d:
		{
		unsigned long newflags;
		if (data32) {
			newflags = popl(ssp, sp, simulate_sigsegv);
			SP(regs) += 4;
		} else {
			newflags = popw(ssp, sp, simulate_sigsegv);
			SP(regs) += 2;
		}
		IP(regs) = ip;
		CHECK_IF_IN_TRAP;
		if (data32)
			set_vflags_long(newflags, regs);
		else
			set_vflags_short(newflags, regs);

		goto check_vip;
		}

	/* int xx */
	case 0xcd: {
		int intno = popb(csp, ip, simulate_sigsegv);
		IP(regs) = ip;
		if (vmpi->vm86dbg_active) {
			if ((1 << (intno & 7)) & vmpi->vm86dbg_intxxtab[intno >> 3]) {
				save_v86_state(regs, VM86_INTx + (intno << 8));
				return;
			}
		}
		do_int(regs, intno, ssp, sp);
		return;
	}

	/* iret */
	case 0xcf:
		{
		unsigned long newip;
		unsigned long newcs;
		unsigned long newflags;
		if (data32) {
			newip = popl(ssp, sp, simulate_sigsegv);
			newcs = popl(ssp, sp, simulate_sigsegv);
			newflags = popl(ssp, sp, simulate_sigsegv);
			SP(regs) += 12;
		} else {
			newip = popw(ssp, sp, simulate_sigsegv);
			newcs = popw(ssp, sp, simulate_sigsegv);
			newflags = popw(ssp, sp, simulate_sigsegv);
			SP(regs) += 6;
		}
		IP(regs) = newip;
		regs->pt.cs = newcs;
		CHECK_IF_IN_TRAP;
		if (data32) {
			set_vflags_long(newflags, regs);
		} else {
			set_vflags_short(newflags, regs);
		}
		goto check_vip;
		}

	/* cli */
	case 0xfa:
		IP(regs) = ip;
		clear_IF(regs);
		goto vm86_fault_return;

	/* sti */
	/*
	 * Damn. This is incorrect: the 'sti' instruction should actually
	 * enable interrupts after the /next/ instruction. Not good.
	 *
	 * Probably needs some horsing around with the TF flag. Aiee..
	 */
	case 0xfb:
		IP(regs) = ip;
		set_IF(regs);
		goto check_vip;

	default:
		save_v86_state(regs, VM86_UNKNOWN);
	}

	return;

check_vip:
	if ((VEFLAGS & (X86_EFLAGS_VIP | X86_EFLAGS_VIF)) ==
	    (X86_EFLAGS_VIP | X86_EFLAGS_VIF)) {
		save_v86_state(regs, VM86_STI);
		return;
	}

vm86_fault_return:
	if (vmpi->force_return_for_pic  && (VEFLAGS & (X86_EFLAGS_IF | X86_EFLAGS_VIF))) {
		save_v86_state(regs, VM86_PICRETURN);
		return;
	}
	if (orig_flags & X86_EFLAGS_TF)
		handle_vm86_trap(regs, 0, X86_TRAP_DB);
	return;

simulate_sigsegv:
	/* FIXME: After a long discussion with Stas we finally
	 *        agreed, that this is wrong. Here we should
	 *        really send a SIGSEGV to the user program.
	 *        But how do we create the correct context? We
	 *        are inside a general protection fault handler
	 *        and has just returned from a page fault handler.
	 *        The correct context for the signal handler
	 *        should be a mixture of the two, but how do we
	 *        get the information? [KD]
	 */
	save_v86_state(regs, VM86_UNKNOWN);
}

/* ---------------- vm86 special IRQ passing stuff ----------------- */

#define VM86_IRQNAME		"vm86irq"

static struct vm86_irqs {
	struct task_struct *tsk;
	int sig;
} vm86_irqs[16];

static DEFINE_SPINLOCK(irqbits_lock);
static int irqbits;

#define ALLOWED_SIGS (1 /* 0 = don't send a signal */ \
	| (1 << SIGUSR1) | (1 << SIGUSR2) | (1 << SIGIO)  | (1 << SIGURG) \
	| (1 << SIGUNUSED))

static irqreturn_t irq_handler(int intno, void *dev_id)
{
	int irq_bit;
	unsigned long flags;

	spin_lock_irqsave(&irqbits_lock, flags);
	irq_bit = 1 << intno;
	if ((irqbits & irq_bit) || !vm86_irqs[intno].tsk)
		goto out;
	irqbits |= irq_bit;
	if (vm86_irqs[intno].sig)
		send_sig(vm86_irqs[intno].sig, vm86_irqs[intno].tsk, 1);
	/*
	 * IRQ will be re-enabled when user asks for the irq (whether
	 * polling or as a result of the signal)
	 */
	disable_irq_nosync(intno);
	spin_unlock_irqrestore(&irqbits_lock, flags);
	return IRQ_HANDLED;

out:
	spin_unlock_irqrestore(&irqbits_lock, flags);
	return IRQ_NONE;
}

static inline void free_vm86_irq(int irqnumber)
{
	unsigned long flags;

	free_irq(irqnumber, NULL);
	vm86_irqs[irqnumber].tsk = NULL;

	spin_lock_irqsave(&irqbits_lock, flags);
	irqbits &= ~(1 << irqnumber);
	spin_unlock_irqrestore(&irqbits_lock, flags);
}

void release_vm86_irqs(struct task_struct *task)
{
	int i;
	for (i = FIRST_VM86_IRQ ; i <= LAST_VM86_IRQ; i++)
	    if (vm86_irqs[i].tsk == task)
		free_vm86_irq(i);
}

static inline int get_and_reset_irq(int irqnumber)
{
	int bit;
	unsigned long flags;
	int ret = 0;

	if (invalid_vm86_irq(irqnumber)) return 0;
	if (vm86_irqs[irqnumber].tsk != current) return 0;
	spin_lock_irqsave(&irqbits_lock, flags);
	bit = irqbits & (1 << irqnumber);
	irqbits &= ~bit;
	if (bit) {
		enable_irq(irqnumber);
		ret = 1;
	}

	spin_unlock_irqrestore(&irqbits_lock, flags);
	return ret;
}


static int do_vm86_irq_handling(int subfunction, int irqnumber)
{
	int ret;
	switch (subfunction) {
		case VM86_GET_AND_RESET_IRQ: {
			return get_and_reset_irq(irqnumber);
		}
		case VM86_GET_IRQ_BITS: {
			return irqbits;
		}
		case VM86_REQUEST_IRQ: {
			int sig = irqnumber >> 8;
			int irq = irqnumber & 255;
			if (!capable(CAP_SYS_ADMIN)) return -EPERM;
			if (!((1 << sig) & ALLOWED_SIGS)) return -EPERM;
			if (invalid_vm86_irq(irq)) return -EPERM;
			if (vm86_irqs[irq].tsk) return -EPERM;
			ret = request_irq(irq, &irq_handler, 0, VM86_IRQNAME, NULL);
			if (ret) return ret;
			vm86_irqs[irq].sig = sig;
			vm86_irqs[irq].tsk = current;
			return irq;
		}
		case  VM86_FREE_IRQ: {
			if (invalid_vm86_irq(irqnumber)) return -EPERM;
			if (!vm86_irqs[irqnumber].tsk) return 0;
			if (vm86_irqs[irqnumber].tsk != current) return -EPERM;
			free_vm86_irq(irqnumber);
			return 0;
		}
	}
	return -EINVAL;
}

ss='upd'>source/be/editeng/source/misc.po9
-rw-r--r--source/be/extensions/source/propctrlr.po10
-rw-r--r--source/be/extras/source/autocorr/emoji.po10
-rw-r--r--source/be/filter/source/config/fragments/filters.po31
-rw-r--r--source/be/filter/source/config/fragments/types.po13
-rw-r--r--source/be/fpicker/uiconfig/ui.po10
-rw-r--r--source/be/framework/source/classes.po10
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po60
-rw-r--r--source/be/readlicense_oo/docs.po5
-rw-r--r--source/be/reportdesign/uiconfig/dbreport/ui.po10
-rw-r--r--source/be/sc/source/ui/src.po5
-rw-r--r--source/be/sc/uiconfig/scalc/ui.po21
-rw-r--r--source/be/scp2/source/ooo.po10
-rw-r--r--source/be/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/be/sfx2/source/appl.po5
-rw-r--r--source/be/sfx2/source/dialog.po30
-rw-r--r--source/be/sfx2/source/doc.po11
-rw-r--r--source/be/sfx2/uiconfig/ui.po81
-rw-r--r--source/be/svl/source/misc.po12
-rw-r--r--source/be/svtools/source/dialogs.po14
-rw-r--r--source/be/svtools/source/misc.po13
-rw-r--r--source/be/svx/source/stbctrls.po14
-rw-r--r--source/be/svx/uiconfig/ui.po20
-rw-r--r--source/be/sw/uiconfig/swriter/ui.po21
-rw-r--r--source/be/swext/mediawiki/help.po6
-rw-r--r--source/be/sysui/desktop/share.po9
-rw-r--r--source/be/uui/source.po30
-rw-r--r--source/be/uui/uiconfig/ui.po59
-rw-r--r--source/be/vcl/source/src.po10
-rw-r--r--source/be/wizards/source/euro.po10
-rw-r--r--source/be/wizards/source/formwizard.po13
-rw-r--r--source/be/wizards/source/importwizard.po15
-rw-r--r--source/bg/cui/uiconfig/ui.po10
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bg/sfx2/source/dialog.po28
-rw-r--r--source/bg/sfx2/uiconfig/ui.po10
-rw-r--r--source/bg/svtools/source/dialogs.po16
-rw-r--r--source/bg/svtools/source/misc.po15
-rw-r--r--source/bg/svx/source/dialog.po42
-rw-r--r--source/bg/svx/source/stbctrls.po12
-rw-r--r--source/bg/svx/uiconfig/ui.po10
-rw-r--r--source/bn-IN/cui/uiconfig/ui.po13
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bn-IN/sfx2/source/dialog.po30
-rw-r--r--source/bn-IN/sfx2/uiconfig/ui.po20
-rw-r--r--source/bn-IN/svtools/source/dialogs.po14
-rw-r--r--source/bn-IN/svtools/source/misc.po15
-rw-r--r--source/bn-IN/svx/source/stbctrls.po14
-rw-r--r--source/bn-IN/svx/uiconfig/ui.po8
-rw-r--r--source/bn/cui/uiconfig/ui.po10
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bn/sfx2/source/dialog.po30
-rw-r--r--source/bn/sfx2/uiconfig/ui.po10
-rw-r--r--source/bn/svtools/source/dialogs.po14
-rw-r--r--source/bn/svtools/source/misc.po15
-rw-r--r--source/bn/svx/source/stbctrls.po14
-rw-r--r--source/bn/svx/uiconfig/ui.po8
-rw-r--r--source/bo/cui/uiconfig/ui.po10
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bo/sfx2/source/dialog.po30
-rw-r--r--source/bo/sfx2/uiconfig/ui.po10
-rw-r--r--source/bo/svtools/source/dialogs.po14
-rw-r--r--source/bo/svtools/source/misc.po15
-rw-r--r--source/bo/svx/source/stbctrls.po14
-rw-r--r--source/bo/svx/uiconfig/ui.po8
-rw-r--r--source/br/cui/uiconfig/ui.po44
-rw-r--r--source/br/sfx2/source/dialog.po30
-rw-r--r--source/br/sfx2/uiconfig/ui.po19
-rw-r--r--source/br/svtools/source/dialogs.po12
-rw-r--r--source/br/svtools/source/misc.po15
-rw-r--r--source/br/svx/source/stbctrls.po14
-rw-r--r--source/br/svx/uiconfig/ui.po8
-rw-r--r--source/brx/cui/uiconfig/ui.po10
-rw-r--r--source/brx/sfx2/source/dialog.po30
-rw-r--r--source/brx/sfx2/uiconfig/ui.po10
-rw-r--r--source/brx/svtools/source/dialogs.po14
-rw-r--r--source/brx/svtools/source/misc.po15
-rw-r--r--source/brx/svx/source/stbctrls.po14
-rw-r--r--source/brx/svx/uiconfig/ui.po8
-rw-r--r--source/bs/cui/uiconfig/ui.po13
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bs/sfx2/source/dialog.po30
-rw-r--r--source/bs/sfx2/uiconfig/ui.po20
-rw-r--r--source/bs/svtools/source/dialogs.po14
-rw-r--r--source/bs/svtools/source/misc.po15
-rw-r--r--source/bs/svx/source/stbctrls.po14
-rw-r--r--source/bs/svx/uiconfig/ui.po8
-rw-r--r--source/ca-valencia/cui/uiconfig/ui.po12
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ca-valencia/sfx2/source/dialog.po30
-rw-r--r--source/ca-valencia/sfx2/uiconfig/ui.po19
-rw-r--r--source/ca-valencia/svtools/source/dialogs.po12
-rw-r--r--source/ca-valencia/svtools/source/misc.po15
-rw-r--r--source/ca-valencia/svx/source/stbctrls.po14
-rw-r--r--source/ca-valencia/svx/uiconfig/ui.po8
-rw-r--r--source/ca/cui/uiconfig/ui.po10
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ca/sd/source/core.po14
-rw-r--r--source/ca/sd/source/ui/app.po24
-rw-r--r--source/ca/sfx2/source/dialog.po30
-rw-r--r--source/ca/sfx2/uiconfig/ui.po10
-rw-r--r--source/ca/svtools/source/dialogs.po16
-rw-r--r--source/ca/svtools/source/misc.po15
-rw-r--r--source/ca/svx/source/dialog.po32
-rw-r--r--source/ca/svx/source/stbctrls.po12
-rw-r--r--source/ca/svx/uiconfig/ui.po22
-rw-r--r--source/cs/cui/uiconfig/ui.po8
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/cs/sfx2/source/dialog.po28
-rw-r--r--source/cs/sfx2/uiconfig/ui.po15
-rw-r--r--source/cs/svtools/source/dialogs.po12
-rw-r--r--source/cs/svtools/source/misc.po13
-rw-r--r--source/cs/svx/source/stbctrls.po12
-rw-r--r--source/cs/svx/uiconfig/ui.po14
-rw-r--r--source/cy/cui/uiconfig/ui.po16
-rw-r--r--source/cy/sfx2/source/dialog.po28
-rw-r--r--source/cy/sfx2/uiconfig/ui.po15
-rw-r--r--source/cy/svtools/source/dialogs.po12
-rw-r--r--source/cy/svtools/source/misc.po13
-rw-r--r--source/cy/svx/source/stbctrls.po14
-rw-r--r--source/cy/svx/uiconfig/ui.po14
-rw-r--r--source/da/cui/uiconfig/ui.po10
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/da/sfx2/source/dialog.po26
-rw-r--r--source/da/sfx2/uiconfig/ui.po13
-rw-r--r--source/da/svtools/source/dialogs.po12
-rw-r--r--source/da/svtools/source/misc.po11
-rw-r--r--source/da/svx/source/stbctrls.po14
-rw-r--r--source/da/svx/uiconfig/ui.po14
-rw-r--r--source/de/cui/uiconfig/ui.po14
-rw-r--r--source/de/filter/uiconfig/ui.po10
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po78
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po20
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/de/helpcontent2/source/text/simpress.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/de/helpcontent2/source/text/smath.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po20
-rw-r--r--source/de/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po58
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po12
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/de/sc/source/ui/src.po12
-rw-r--r--source/de/scaddins/source/analysis.po16
-rw-r--r--source/de/scp2/source/ooo.po12
-rw-r--r--source/de/sfx2/source/dialog.po30
-rw-r--r--source/de/sfx2/uiconfig/ui.po10
-rw-r--r--source/de/svtools/source/dialogs.po16
-rw-r--r--source/de/svtools/source/misc.po17
-rw-r--r--source/de/svx/source/items.po26
-rw-r--r--source/de/svx/source/stbctrls.po14
-rw-r--r--source/de/svx/uiconfig/ui.po14
-rw-r--r--source/de/uui/uiconfig/ui.po8
-rw-r--r--source/de/vcl/source/src.po8
-rw-r--r--source/dgo/cui/uiconfig/ui.po10
-rw-r--r--source/dgo/sfx2/source/dialog.po30
-rw-r--r--source/dgo/sfx2/uiconfig/ui.po10
-rw-r--r--source/dgo/svtools/source/dialogs.po14
-rw-r--r--source/dgo/svtools/source/misc.po15
-rw-r--r--source/dgo/svx/source/stbctrls.po14
-rw-r--r--source/dgo/svx/uiconfig/ui.po8
-rw-r--r--source/dz/cui/uiconfig/ui.po10
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/dz/sfx2/source/dialog.po30
-rw-r--r--source/dz/sfx2/uiconfig/ui.po10
-rw-r--r--source/dz/svtools/source/dialogs.po14
-rw-r--r--source/dz/svtools/source/misc.po15
-rw-r--r--source/dz/svx/source/stbctrls.po14
-rw-r--r--source/dz/svx/uiconfig/ui.po8
-rw-r--r--source/el/cui/uiconfig/ui.po10
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/el/sfx2/source/dialog.po32
-rw-r--r--source/el/sfx2/uiconfig/ui.po12
-rw-r--r--source/el/svtools/source/dialogs.po16
-rw-r--r--source/el/svtools/source/misc.po17
-rw-r--r--source/el/svx/source/stbctrls.po16
-rw-r--r--source/el/svx/uiconfig/ui.po16
-rw-r--r--source/en-GB/cui/uiconfig/ui.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/04.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/en-GB/scaddins/source/analysis.po22
-rw-r--r--source/en-GB/sfx2/source/dialog.po32
-rw-r--r--source/en-GB/sfx2/uiconfig/ui.po14
-rw-r--r--source/en-GB/svtools/source/dialogs.po16
-rw-r--r--source/en-GB/svtools/source/misc.po17
-rw-r--r--source/en-GB/svx/source/stbctrls.po14
-rw-r--r--source/en-GB/svx/uiconfig/ui.po16
-rw-r--r--source/en-ZA/cui/uiconfig/ui.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/en-ZA/sfx2/source/dialog.po30
-rw-r--r--source/en-ZA/sfx2/uiconfig/ui.po10
-rw-r--r--source/en-ZA/svtools/source/dialogs.po14
-rw-r--r--source/en-ZA/svtools/source/misc.po11
-rw-r--r--source/en-ZA/svx/source/stbctrls.po14
-rw-r--r--source/en-ZA/svx/uiconfig/ui.po8
-rw-r--r--source/eo/cui/uiconfig/ui.po8
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/eo/sfx2/source/dialog.po28
-rw-r--r--source/eo/sfx2/uiconfig/ui.po15
-rw-r--r--source/eo/svtools/source/dialogs.po12
-rw-r--r--source/eo/svtools/source/misc.po11
-rw-r--r--source/eo/svx/source/stbctrls.po10
-rw-r--r--source/eo/svx/uiconfig/ui.po14
-rw-r--r--source/es/cui/source/dialogs.po8
-rw-r--r--source/es/cui/uiconfig/ui.po8
-rw-r--r--source/es/desktop/source/deployment/registry/script.po11
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/es/readlicense_oo/docs.po6
-rw-r--r--source/es/sc/source/ui/StatisticsDialogs.po8
-rw-r--r--source/es/sc/source/ui/src.po8
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po54
-rw-r--r--source/es/sfx2/source/dialog.po28
-rw-r--r--source/es/sfx2/uiconfig/ui.po15
-rw-r--r--source/es/svtools/source/dialogs.po12
-rw-r--r--source/es/svtools/source/misc.po13
-rw-r--r--source/es/svx/source/stbctrls.po12
-rw-r--r--source/es/svx/uiconfig/ui.po14
-rw-r--r--source/es/sw/source/ui/utlui.po6
-rw-r--r--source/et/cui/uiconfig/ui.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/et/sfx2/source/dialog.po28
-rw-r--r--source/et/sfx2/uiconfig/ui.po15
-rw-r--r--source/et/svtools/source/dialogs.po18
-rw-r--r--source/et/svtools/source/misc.po13
-rw-r--r--source/et/svx/source/stbctrls.po12
-rw-r--r--source/et/svx/uiconfig/ui.po14
-rw-r--r--source/eu/cui/uiconfig/ui.po8
-rw-r--r--source/eu/formula/source/core/resource.po22
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po224
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/eu/sc/source/ui/src.po8
-rw-r--r--source/eu/sfx2/source/dialog.po28
-rw-r--r--source/eu/sfx2/uiconfig/ui.po15
-rw-r--r--source/eu/svtools/source/dialogs.po16
-rw-r--r--source/eu/svtools/source/misc.po13
-rw-r--r--source/eu/svx/source/stbctrls.po12
-rw-r--r--source/eu/svx/uiconfig/ui.po14
-rw-r--r--source/fa/cui/uiconfig/ui.po10
-rw-r--r--source/fa/sfx2/source/dialog.po32
-rw-r--r--source/fa/sfx2/uiconfig/ui.po10
-rw-r--r--source/fa/svtools/source/dialogs.po14
-rw-r--r--source/fa/svtools/source/misc.po17
-rw-r--r--source/fa/svx/source/stbctrls.po16
-rw-r--r--source/fa/svx/uiconfig/ui.po8
-rw-r--r--source/fi/cui/uiconfig/ui.po8
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/fi/sfx2/source/dialog.po28
-rw-r--r--source/fi/sfx2/uiconfig/ui.po15
-rw-r--r--source/fi/svtools/source/dialogs.po12
-rw-r--r--source/fi/svtools/source/misc.po13
-rw-r--r--source/fi/svx/source/stbctrls.po12
-rw-r--r--source/fi/svx/uiconfig/ui.po14
-rw-r--r--source/fr/cui/uiconfig/ui.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/fr/sfx2/source/dialog.po34
-rw-r--r--source/fr/sfx2/uiconfig/ui.po14
-rw-r--r--source/fr/svtools/source/dialogs.po16
-rw-r--r--source/fr/svtools/source/misc.po19
-rw-r--r--source/fr/svx/source/stbctrls.po18
-rw-r--r--source/fr/svx/uiconfig/ui.po14
-rw-r--r--source/ga/cui/uiconfig/ui.po13
-rw-r--r--source/ga/sfx2/source/dialog.po30
-rw-r--r--source/ga/sfx2/uiconfig/ui.po20
-rw-r--r--source/ga/svtools/source/dialogs.po18
-rw-r--r--source/ga/svtools/source/misc.po15
-rw-r--r--source/ga/svx/source/stbctrls.po14
-rw-r--r--source/ga/svx/uiconfig/ui.po8
-rw-r--r--source/gd/cui/uiconfig/ui.po8
-rw-r--r--source/gd/sfx2/source/dialog.po28
-rw-r--r--source/gd/sfx2/uiconfig/ui.po13
-rw-r--r--source/gd/svtools/source/dialogs.po12
-rw-r--r--source/gd/svtools/source/misc.po11
-rw-r--r--source/gd/svx/source/stbctrls.po16
-rw-r--r--source/gd/svx/uiconfig/ui.po10
-rw-r--r--source/gl/cui/uiconfig/ui.po8
-rw-r--r--source/gl/desktop/source/deployment/registry/script.po11
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/02.po60
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/gl/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po62
-rw-r--r--source/gl/sfx2/source/dialog.po28
-rw-r--r--source/gl/sfx2/uiconfig/ui.po15
-rw-r--r--source/gl/svtools/source/dialogs.po12
-rw-r--r--source/gl/svtools/source/misc.po13
-rw-r--r--source/gl/svx/source/stbctrls.po12
-rw-r--r--source/gl/svx/uiconfig/ui.po14
-rw-r--r--source/gu/cui/uiconfig/ui.po9
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/gu/sfx2/source/dialog.po30
-rw-r--r--source/gu/sfx2/uiconfig/ui.po6
-rw-r--r--source/gu/svtools/source/dialogs.po18
-rw-r--r--source/gu/svtools/source/misc.po15
-rw-r--r--source/gu/svx/source/stbctrls.po14
-rw-r--r--source/gu/svx/uiconfig/ui.po8
-rw-r--r--source/gug/cui/uiconfig/ui.po8
-rw-r--r--source/gug/sfx2/source/dialog.po28
-rw-r--r--source/gug/sfx2/uiconfig/ui.po6
-rw-r--r--source/gug/svtools/source/dialogs.po12
-rw-r--r--source/gug/svtools/source/misc.po15
-rw-r--r--source/gug/svx/source/stbctrls.po14
-rw-r--r--source/gug/svx/uiconfig/ui.po10
-rw-r--r--source/he/cui/uiconfig/ui.po8
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/he/sfx2/source/dialog.po28
-rw-r--r--source/he/sfx2/uiconfig/ui.po16
-rw-r--r--source/he/svtools/source/dialogs.po18
-rw-r--r--source/he/svtools/source/misc.po13
-rw-r--r--source/he/svx/source/stbctrls.po16
-rw-r--r--source/he/svx/uiconfig/ui.po10
-rw-r--r--source/hi/cui/uiconfig/ui.po10
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hi/sfx2/source/dialog.po30
-rw-r--r--source/hi/sfx2/uiconfig/ui.po10
-rw-r--r--source/hi/svtools/source/dialogs.po18
-rw-r--r--source/hi/svtools/source/misc.po15
-rw-r--r--source/hi/svx/source/stbctrls.po14
-rw-r--r--source/hi/svx/uiconfig/ui.po8
-rw-r--r--source/hr/chart2/source/controller/dialogs.po10
-rw-r--r--source/hr/cui/uiconfig/ui.po24
-rw-r--r--source/hr/dbaccess/source/ui/browser.po8
-rw-r--r--source/hr/dbaccess/source/ui/dlg.po8
-rw-r--r--source/hr/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/hr/framework/source/classes.po8
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/hr/sc/source/ui/miscdlgs.po12
-rw-r--r--source/hr/sc/source/ui/src.po8
-rw-r--r--source/hr/scp2/source/draw.po12
-rw-r--r--source/hr/scp2/source/math.po16
-rw-r--r--source/hr/sd/source/ui/app.po8
-rw-r--r--source/hr/sfx2/source/dialog.po32
-rw-r--r--source/hr/sfx2/uiconfig/ui.po21
-rw-r--r--source/hr/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/hr/svtools/source/dialogs.po12
-rw-r--r--source/hr/svtools/source/misc.po13
-rw-r--r--source/hr/svx/source/form.po6
-rw-r--r--source/hr/svx/source/stbctrls.po12
-rw-r--r--source/hr/svx/uiconfig/ui.po26
-rw-r--r--source/hr/sw/source/ui/app.po10
-rw-r--r--source/hr/sw/source/ui/dbui.po10
-rw-r--r--source/hr/sw/source/ui/index.po6
-rw-r--r--source/hr/sw/source/ui/shells.po10
-rw-r--r--source/hr/sw/source/ui/utlui.po6
-rw-r--r--source/hr/sw/source/uibase/misc.po12
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po34
-rw-r--r--source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po14
-rw-r--r--source/hu/cui/uiconfig/ui.po8
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hu/sfx2/source/dialog.po28
-rw-r--r--source/hu/sfx2/uiconfig/ui.po15
-rw-r--r--source/hu/svtools/source/dialogs.po12
-rw-r--r--source/hu/svtools/source/misc.po13
-rw-r--r--source/hu/svx/source/stbctrls.po12
-rw-r--r--source/hu/svx/uiconfig/ui.po14
-rw-r--r--source/id/cui/uiconfig/ui.po8
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/id/sfx2/source/dialog.po28
-rw-r--r--source/id/sfx2/uiconfig/ui.po15
-rw-r--r--source/id/svtools/source/dialogs.po12
-rw-r--r--source/id/svtools/source/misc.po11
-rw-r--r--source/id/svx/source/stbctrls.po12
-rw-r--r--source/id/svx/uiconfig/ui.po14
-rw-r--r--source/is/cui/uiconfig/ui.po8
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/is/sfx2/source/dialog.po28
-rw-r--r--source/is/sfx2/uiconfig/ui.po15
-rw-r--r--source/is/svtools/source/dialogs.po12
-rw-r--r--source/is/svtools/source/misc.po13
-rw-r--r--source/is/svx/source/stbctrls.po12
-rw-r--r--source/is/svx/uiconfig/ui.po14
-rw-r--r--source/it/chart2/uiconfig/ui.po8
-rw-r--r--source/it/cui/uiconfig/ui.po16
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/it/helpcontent2/source/text/scalc/02.po6
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/it/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po16
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/it/reportdesign/source/ui/inspection.po10
-rw-r--r--source/it/sfx2/source/dialog.po28
-rw-r--r--source/it/sfx2/uiconfig/ui.po15
-rw-r--r--source/it/svtools/source/dialogs.po12
-rw-r--r--source/it/svtools/source/misc.po13
-rw-r--r--source/it/svtools/uiconfig/ui.po6
-rw-r--r--source/it/svx/source/stbctrls.po12
-rw-r--r--source/it/svx/uiconfig/ui.po14
-rw-r--r--source/ja/cui/uiconfig/ui.po8
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ja/sd/source/ui/app.po10
-rw-r--r--source/ja/sd/uiconfig/simpress/ui.po18
-rw-r--r--source/ja/sfx2/source/dialog.po28
-rw-r--r--source/ja/sfx2/uiconfig/ui.po8
-rw-r--r--source/ja/svtools/source/dialogs.po12
-rw-r--r--source/ja/svtools/source/misc.po17
-rw-r--r--source/ja/svx/source/stbctrls.po16
-rw-r--r--source/ja/svx/uiconfig/ui.po12
-rw-r--r--source/ka/cui/uiconfig/ui.po10
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ka/sfx2/source/dialog.po28
-rw-r--r--source/ka/sfx2/uiconfig/ui.po8
-rw-r--r--source/ka/svtools/source/dialogs.po18
-rw-r--r--source/ka/svtools/source/misc.po11
-rw-r--r--source/ka/svx/source/stbctrls.po14
-rw-r--r--source/ka/svx/uiconfig/ui.po8
-rw-r--r--source/kk/cui/uiconfig/ui.po10
-rw-r--r--source/kk/librelogo/source/pythonpath.po13
-rw-r--r--source/kk/sfx2/source/dialog.po30
-rw-r--r--source/kk/sfx2/uiconfig/ui.po10
-rw-r--r--source/kk/svtools/source/dialogs.po16
-rw-r--r--source/kk/svtools/source/misc.po15
-rw-r--r--source/kk/svx/source/stbctrls.po14
-rw-r--r--source/kk/svx/uiconfig/ui.po14
-rw-r--r--source/km/cui/uiconfig/ui.po13
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/km/sfx2/source/dialog.po28
-rw-r--r--source/km/sfx2/uiconfig/ui.po8
-rw-r--r--source/km/svtools/source/dialogs.po18
-rw-r--r--source/km/svtools/source/misc.po13
-rw-r--r--source/km/svx/source/stbctrls.po14
-rw-r--r--source/km/svx/uiconfig/ui.po8
-rw-r--r--source/kmr-Latn/cui/uiconfig/ui.po10
-rw-r--r--source/kmr-Latn/sfx2/source/dialog.po30
-rw-r--r--source/kmr-Latn/sfx2/uiconfig/ui.po8
-rw-r--r--source/kmr-Latn/svtools/source/dialogs.po18
-rw-r--r--source/kmr-Latn/svtools/source/misc.po15
-rw-r--r--source/kmr-Latn/svx/source/stbctrls.po14
-rw-r--r--source/kmr-Latn/svx/uiconfig/ui.po8
-rw-r--r--source/kn/cui/uiconfig/ui.po13
-rw-r--r--source/kn/sfx2/source/dialog.po30
-rw-r--r--source/kn/sfx2/uiconfig/ui.po18
-rw-r--r--source/kn/svtools/source/dialogs.po18
-rw-r--r--source/kn/svtools/source/misc.po13
-rw-r--r--source/kn/svx/source/stbctrls.po14
-rw-r--r--source/kn/svx/uiconfig/ui.po8
-rw-r--r--source/ko/cui/uiconfig/ui.po13
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ko/sfx2/source/dialog.po30
-rw-r--r--source/ko/sfx2/uiconfig/ui.po20
-rw-r--r--source/ko/svtools/source/dialogs.po18
-rw-r--r--source/ko/svtools/source/misc.po15
-rw-r--r--source/ko/svx/source/stbctrls.po14
-rw-r--r--source/ko/svx/uiconfig/ui.po8
-rw-r--r--source/kok/cui/uiconfig/ui.po10
-rw-r--r--source/kok/sfx2/source/dialog.po30
-rw-r--r--source/kok/sfx2/uiconfig/ui.po10
-rw-r--r--source/kok/svtools/source/dialogs.po18
-rw-r--r--source/kok/svtools/source/misc.po15
-rw-r--r--source/kok/svx/source/stbctrls.po14
-rw-r--r--source/kok/svx/uiconfig/ui.po8
-rw-r--r--source/ks/cui/uiconfig/ui.po10
-rw-r--r--source/ks/sfx2/source/dialog.po28
-rw-r--r--source/ks/sfx2/uiconfig/ui.po6
-rw-r--r--source/ks/svtools/source/dialogs.po18
-rw-r--r--source/ks/svtools/source/misc.po11
-rw-r--r--source/ks/svx/source/stbctrls.po14
-rw-r--r--source/ks/svx/uiconfig/ui.po8
-rw-r--r--source/lo/cui/uiconfig/ui.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/lo/sfx2/source/dialog.po26
-rw-r--r--source/lo/sfx2/uiconfig/ui.po8
-rw-r--r--source/lo/svtools/source/dialogs.po14
-rw-r--r--source/lo/svtools/source/misc.po11
-rw-r--r--source/lo/svx/source/stbctrls.po14
-rw-r--r--source/lo/svx/uiconfig/ui.po8
-rw-r--r--source/lt/cui/uiconfig/ui.po8
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lt/sfx2/source/dialog.po28
-rw-r--r--source/lt/sfx2/uiconfig/ui.po15
-rw-r--r--source/lt/shell/source/win32/shlxthandler/res.po14
-rw-r--r--source/lt/svtools/source/dialogs.po12
-rw-r--r--source/lt/svtools/source/misc.po13
-rw-r--r--source/lt/svx/source/stbctrls.po12
-rw-r--r--source/lt/svx/uiconfig/ui.po14
-rw-r--r--source/lv/cui/uiconfig/ui.po8
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/lv/sfx2/source/dialog.po28
-rw-r--r--source/lv/sfx2/uiconfig/ui.po15
-rw-r--r--source/lv/svtools/source/dialogs.po12
-rw-r--r--source/lv/svtools/source/misc.po13
-rw-r--r--source/lv/svx/source/stbctrls.po12
-rw-r--r--source/lv/svx/uiconfig/ui.po14
-rw-r--r--source/mai/cui/uiconfig/ui.po6
-rw-r--r--source/mai/sfx2/source/dialog.po26
-rw-r--r--source/mai/sfx2/uiconfig/ui.po8
-rw-r--r--source/mai/svtools/source/dialogs.po18
-rw-r--r--source/mai/svtools/source/misc.po11
-rw-r--r--source/mai/svx/source/stbctrls.po14
-rw-r--r--source/mai/svx/uiconfig/ui.po8
-rw-r--r--source/mk/cui/uiconfig/ui.po6
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/mk/sfx2/source/dialog.po28
-rw-r--r--source/mk/sfx2/uiconfig/ui.po8
-rw-r--r--source/mk/svtools/source/dialogs.po18
-rw-r--r--source/mk/svtools/source/misc.po13
-rw-r--r--source/mk/svx/source/stbctrls.po14
-rw-r--r--source/mk/svx/uiconfig/ui.po8
-rw-r--r--source/ml/cui/uiconfig/ui.po14
-rw-r--r--source/ml/sfx2/source/dialog.po28
-rw-r--r--source/ml/sfx2/uiconfig/ui.po8
-rw-r--r--source/ml/svtools/source/dialogs.po12
-rw-r--r--source/ml/svtools/source/misc.po15
-rw-r--r--source/ml/svx/source/stbctrls.po16
-rw-r--r--source/ml/svx/uiconfig/ui.po8
-rw-r--r--source/mn/cui/uiconfig/ui.po12
-rw-r--r--source/mn/sfx2/source/dialog.po26
-rw-r--r--source/mn/sfx2/uiconfig/ui.po6
-rw-r--r--source/mn/svtools/source/dialogs.po18
-rw-r--r--source/mn/svtools/source/misc.po13
-rw-r--r--source/mn/svx/source/stbctrls.po14
-rw-r--r--source/mn/svx/uiconfig/ui.po8
-rw-r--r--source/mni/cui/uiconfig/ui.po10
-rw-r--r--source/mni/sfx2/source/dialog.po28
-rw-r--r--source/mni/sfx2/uiconfig/ui.po8
-rw-r--r--source/mni/svtools/source/dialogs.po18
-rw-r--r--source/mni/svtools/source/misc.po11
-rw-r--r--source/mni/svx/source/stbctrls.po14
-rw-r--r--source/mni/svx/uiconfig/ui.po8
-rw-r--r--source/mr/cui/uiconfig/ui.po13
-rw-r--r--source/mr/sfx2/source/dialog.po28
-rw-r--r--source/mr/sfx2/uiconfig/ui.po8
-rw-r--r--source/mr/svtools/source/dialogs.po18
-rw-r--r--source/mr/svtools/source/misc.po13
-rw-r--r--source/mr/svx/source/stbctrls.po14
-rw-r--r--source/mr/svx/uiconfig/ui.po8
-rw-r--r--source/my/cui/uiconfig/ui.po10
-rw-r--r--source/my/sfx2/source/dialog.po28
-rw-r--r--source/my/sfx2/uiconfig/ui.po8
-rw-r--r--source/my/svtools/source/dialogs.po18
-rw-r--r--source/my/svtools/source/misc.po13
-rw-r--r--source/my/svx/source/stbctrls.po14
-rw-r--r--source/my/svx/uiconfig/ui.po8
-rw-r--r--source/nb/cui/uiconfig/ui.po10
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nb/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po8
-rw-r--r--source/nb/sfx2/source/dialog.po30
-rw-r--r--source/nb/sfx2/uiconfig/ui.po10
-rw-r--r--source/nb/svtools/source/dialogs.po18
-rw-r--r--source/nb/svtools/source/misc.po15
-rw-r--r--source/nb/svx/source/stbctrls.po14
-rw-r--r--source/nb/svx/uiconfig/ui.po14
-rw-r--r--source/ne/cui/uiconfig/ui.po10
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ne/sfx2/source/dialog.po28
-rw-r--r--source/ne/sfx2/uiconfig/ui.po8
-rw-r--r--source/ne/svtools/source/dialogs.po18
-rw-r--r--source/ne/svtools/source/misc.po13
-rw-r--r--source/ne/svx/source/stbctrls.po14
-rw-r--r--source/ne/svx/uiconfig/ui.po8
-rw-r--r--source/nl/cui/uiconfig/ui.po12
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po14
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nl/sc/source/ui/src.po8
-rw-r--r--source/nl/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/nl/sfx2/source/dialog.po32
-rw-r--r--source/nl/sfx2/uiconfig/ui.po15
-rw-r--r--source/nl/svtools/source/dialogs.po18
-rw-r--r--source/nl/svtools/source/misc.po17
-rw-r--r--source/nl/svx/source/stbctrls.po12
-rw-r--r--source/nl/svx/uiconfig/ui.po16
-rw-r--r--source/nl/swext/mediawiki/help.po8
-rw-r--r--source/nn/cui/uiconfig/ui.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nn/sd/source/core.po14
-rw-r--r--source/nn/sfx2/source/dialog.po28
-rw-r--r--source/nn/sfx2/uiconfig/ui.po15
-rw-r--r--source/nn/svtools/source/dialogs.po12
-rw-r--r--source/nn/svtools/source/misc.po13
-rw-r--r--source/nn/svx/source/stbctrls.po12
-rw-r--r--source/nn/svx/uiconfig/ui.po14
-rw-r--r--source/nn/xmlsecurity/uiconfig/ui.po8
-rw-r--r--source/nr/cui/uiconfig/ui.po6
-rw-r--r--source/nr/sfx2/source/dialog.po26
-rw-r--r--source/nr/sfx2/uiconfig/ui.po8
-rw-r--r--source/nr/svtools/source/dialogs.po18
-rw-r--r--source/nr/svtools/source/misc.po13
-rw-r--r--source/nr/svx/source/stbctrls.po14
-rw-r--r--source/nr/svx/uiconfig/ui.po8
-rw-r--r--source/nso/cui/uiconfig/ui.po10
-rw-r--r--source/nso/sfx2/source/dialog.po26
-rw-r--r--source/nso/sfx2/uiconfig/ui.po8
-rw-r--r--source/nso/svtools/source/dialogs.po18
-rw-r--r--source/nso/svtools/source/misc.po13
-rw-r--r--source/nso/svx/source/stbctrls.po14
-rw-r--r--source/nso/svx/uiconfig/ui.po8
-rw-r--r--source/oc/cui/uiconfig/ui.po8
-rw-r--r--source/oc/sfx2/source/dialog.po28
-rw-r--r--source/oc/sfx2/uiconfig/ui.po15
-rw-r--r--source/oc/svtools/source/dialogs.po12
-rw-r--r--source/oc/svtools/source/misc.po17
-rw-r--r--source/oc/svx/source/stbctrls.po16
-rw-r--r--source/oc/svx/uiconfig/ui.po12
-rw-r--r--source/om/cui/uiconfig/ui.po6
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/om/sfx2/source/dialog.po26
-rw-r--r--source/om/sfx2/uiconfig/ui.po8
-rw-r--r--source/om/svtools/source/dialogs.po18
-rw-r--r--source/om/svtools/source/misc.po13
-rw-r--r--source/om/svx/source/stbctrls.po14
-rw-r--r--source/om/svx/uiconfig/ui.po8
-rw-r--r--source/or/cui/uiconfig/ui.po9
-rw-r--r--source/or/sfx2/source/dialog.po30
-rw-r--r--source/or/sfx2/uiconfig/ui.po10
-rw-r--r--source/or/svtools/source/dialogs.po18
-rw-r--r--source/or/svtools/source/misc.po13
-rw-r--r--source/or/svx/source/stbctrls.po14
-rw-r--r--source/or/svx/uiconfig/ui.po8
-rw-r--r--source/pa-IN/cui/uiconfig/ui.po10
-rw-r--r--source/pa-IN/sfx2/source/dialog.po28
-rw-r--r--source/pa-IN/sfx2/uiconfig/ui.po8
-rw-r--r--source/pa-IN/svtools/source/dialogs.po18
-rw-r--r--source/pa-IN/svtools/source/misc.po11
-rw-r--r--source/pa-IN/svx/source/stbctrls.po14
-rw-r--r--source/pa-IN/svx/uiconfig/ui.po8
-rw-r--r--source/pl/cui/uiconfig/ui.po8
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po228
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po146
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pl/sfx2/source/dialog.po28
-rw-r--r--source/pl/sfx2/uiconfig/ui.po15
-rw-r--r--source/pl/svtools/source/dialogs.po18
-rw-r--r--source/pl/svtools/source/misc.po13
-rw-r--r--source/pl/svtools/uiconfig/ui.po6
-rw-r--r--source/pl/svx/source/stbctrls.po12
-rw-r--r--source/pl/svx/uiconfig/ui.po14
-rw-r--r--source/pt-BR/cui/uiconfig/ui.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--source/pt-BR/sfx2/source/dialog.po32
-rw-r--r--source/pt-BR/sfx2/uiconfig/ui.po12
-rw-r--r--source/pt-BR/svtools/source/dialogs.po16
-rw-r--r--source/pt-BR/svtools/source/misc.po17
-rw-r--r--source/pt-BR/svx/source/stbctrls.po16
-rw-r--r--source/pt-BR/svx/uiconfig/ui.po14
-rw-r--r--source/pt/cui/uiconfig/ui.po10
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po34
-rw-r--r--source/pt/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/pt/sfx2/source/dialog.po30
-rw-r--r--source/pt/sfx2/uiconfig/ui.po10
-rw-r--r--source/pt/svtools/source/dialogs.po16
-rw-r--r--source/pt/svtools/source/misc.po15
-rw-r--r--source/pt/svx/source/stbctrls.po12
-rw-r--r--source/pt/svx/uiconfig/ui.po14
-rw-r--r--source/ro/cui/uiconfig/ui.po8
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ro/sfx2/source/dialog.po28
-rw-r--r--source/ro/sfx2/uiconfig/ui.po15
-rw-r--r--source/ro/svtools/source/dialogs.po12
-rw-r--r--source/ro/svtools/source/misc.po13
-rw-r--r--source/ro/svx/source/stbctrls.po16
-rw-r--r--source/ro/svx/uiconfig/ui.po8
-rw-r--r--source/ru/cui/uiconfig/ui.po8
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ru/sfx2/source/dialog.po28
-rw-r--r--source/ru/sfx2/uiconfig/ui.po15
-rw-r--r--source/ru/svtools/source/dialogs.po12
-rw-r--r--source/ru/svtools/source/misc.po13
-rw-r--r--source/ru/svx/source/stbctrls.po12
-rw-r--r--source/ru/svx/uiconfig/ui.po14
-rw-r--r--source/ru/wizards/source/formwizard.po14
-rw-r--r--source/rw/cui/uiconfig/ui.po6
-rw-r--r--source/rw/sfx2/source/dialog.po26
-rw-r--r--source/rw/sfx2/uiconfig/ui.po6
-rw-r--r--source/rw/svtools/source/dialogs.po18
-rw-r--r--source/rw/svtools/source/misc.po13
-rw-r--r--source/rw/svx/source/stbctrls.po14
-rw-r--r--source/rw/svx/uiconfig/ui.po8
-rw-r--r--source/sa-IN/cui/uiconfig/ui.po10
-rw-r--r--source/sa-IN/sfx2/source/dialog.po28
-rw-r--r--source/sa-IN/sfx2/uiconfig/ui.po8
-rw-r--r--source/sa-IN/svtools/source/dialogs.po18
-rw-r--r--source/sa-IN/svtools/source/misc.po13
-rw-r--r--source/sa-IN/svx/source/stbctrls.po14
-rw-r--r--source/sa-IN/svx/uiconfig/ui.po8
-rw-r--r--source/sat/cui/uiconfig/ui.po10
-rw-r--r--source/sat/sfx2/source/dialog.po28
-rw-r--r--source/sat/sfx2/uiconfig/ui.po10
-rw-r--r--source/sat/svtools/source/dialogs.po18
-rw-r--r--source/sat/svtools/source/misc.po13
-rw-r--r--source/sat/svx/source/stbctrls.po14
-rw-r--r--source/sat/svx/uiconfig/ui.po8
-rw-r--r--source/sd/cui/uiconfig/ui.po10
-rw-r--r--source/sd/sfx2/source/dialog.po28
-rw-r--r--source/sd/sfx2/uiconfig/ui.po10
-rw-r--r--source/sd/svtools/source/dialogs.po18
-rw-r--r--source/sd/svtools/source/misc.po11
-rw-r--r--source/sd/svx/source/stbctrls.po14
-rw-r--r--source/sd/svx/uiconfig/ui.po8
-rw-r--r--source/si/cui/uiconfig/ui.po10
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/si/sfx2/source/dialog.po28
-rw-r--r--source/si/sfx2/uiconfig/ui.po10
-rw-r--r--source/si/svtools/source/dialogs.po18
-rw-r--r--source/si/svtools/source/misc.po13
-rw-r--r--source/si/svx/source/stbctrls.po14
-rw-r--r--source/si/svx/uiconfig/ui.po8
-rw-r--r--source/sid/cui/uiconfig/ui.po10
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/sid/sfx2/source/dialog.po30
-rw-r--r--source/sid/sfx2/uiconfig/ui.po10
-rw-r--r--source/sid/svtools/source/dialogs.po18
-rw-r--r--source/sid/svtools/source/misc.po15
-rw-r--r--source/sid/svx/source/stbctrls.po14
-rw-r--r--source/sid/svx/uiconfig/ui.po8
-rw-r--r--source/sk/cui/uiconfig/ui.po8
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sk/sfx2/source/dialog.po28
-rw-r--r--source/sk/sfx2/uiconfig/ui.po15
-rw-r--r--source/sk/svtools/source/dialogs.po12
-rw-r--r--source/sk/svtools/source/misc.po13
-rw-r--r--source/sk/svx/source/stbctrls.po12
-rw-r--r--source/sk/svx/uiconfig/ui.po14
-rw-r--r--source/sq/cui/uiconfig/ui.po12
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/sq/sfx2/source/dialog.po30
-rw-r--r--source/sq/sfx2/uiconfig/ui.po10
-rw-r--r--source/sq/svtools/source/dialogs.po18
-rw-r--r--source/sq/svtools/source/misc.po15
-rw-r--r--source/sq/svx/source/stbctrls.po14
-rw-r--r--source/sq/svx/uiconfig/ui.po8
-rw-r--r--source/ss/cui/uiconfig/ui.po6
-rw-r--r--source/ss/sfx2/source/dialog.po28
-rw-r--r--source/ss/sfx2/uiconfig/ui.po6
-rw-r--r--source/ss/svtools/source/dialogs.po18
-rw-r--r--source/ss/svtools/source/misc.po11
-rw-r--r--source/ss/svx/source/stbctrls.po14
-rw-r--r--source/ss/svx/uiconfig/ui.po8
-rw-r--r--source/st/cui/uiconfig/ui.po6
-rw-r--r--source/st/sfx2/source/dialog.po26
-rw-r--r--source/st/sfx2/uiconfig/ui.po8
-rw-r--r--source/st/svtools/source/dialogs.po18
-rw-r--r--source/st/svtools/source/misc.po11
-rw-r--r--source/st/svx/source/stbctrls.po14
-rw-r--r--source/st/svx/uiconfig/ui.po8
-rw-r--r--source/sv/cui/uiconfig/ui.po8
-rw-r--r--source/sv/extensions/source/propctrlr.po78
-rw-r--r--source/sv/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sv/filter/uiconfig/ui.po8
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po29
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/sv/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po15
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po33
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po11
-rw-r--r--source/sv/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/sv/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/sv/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po13
-rw-r--r--source/sv/helpcontent2/source/text/swriter/04.po8
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po13
-rw-r--r--source/sv/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po268
-rw-r--r--source/sv/sfx2/source/dialog.po30
-rw-r--r--source/sv/sfx2/uiconfig/ui.po15
-rw-r--r--source/sv/svtools/source/dialogs.po12
-rw-r--r--source/sv/svtools/source/misc.po13
-rw-r--r--source/sv/svx/source/stbctrls.po16
-rw-r--r--source/sv/svx/uiconfig/ui.po10
-rw-r--r--source/sw-TZ/cui/uiconfig/ui.po6
-rw-r--r--source/sw-TZ/sfx2/source/dialog.po26
-rw-r--r--source/sw-TZ/sfx2/uiconfig/ui.po8
-rw-r--r--source/sw-TZ/svtools/source/dialogs.po18
-rw-r--r--source/sw-TZ/svtools/source/misc.po11
-rw-r--r--source/sw-TZ/svx/source/stbctrls.po14
-rw-r--r--source/sw-TZ/svx/uiconfig/ui.po8
-rw-r--r--source/szl/cui/uiconfig/ui.po6
-rw-r--r--source/szl/sfx2/source/dialog.po30
-rw-r--r--source/szl/sfx2/uiconfig/ui.po6
-rw-r--r--source/szl/svtools/source/dialogs.po16
-rw-r--r--source/szl/svtools/source/misc.po15
-rw-r--r--source/szl/svx/source/stbctrls.po14
-rw-r--r--source/szl/svx/uiconfig/ui.po8
-rw-r--r--source/ta/chart2/source/controller/dialogs.po12
-rw-r--r--source/ta/cui/uiconfig/ui.po16
-rw-r--r--source/ta/extensions/source/update/check.po15
-rw-r--r--source/ta/extensions/uiconfig/scanner/ui.po10
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ta/readlicense_oo/docs.po20
-rw-r--r--source/ta/scaddins/source/analysis.po10
-rw-r--r--source/ta/sfx2/source/dialog.po30
-rw-r--r--source/ta/sfx2/uiconfig/ui.po15
-rw-r--r--source/ta/svtools/source/dialogs.po12
-rw-r--r--source/ta/svtools/source/misc.po11
-rw-r--r--source/ta/svx/source/stbctrls.po10
-rw-r--r--source/ta/svx/uiconfig/ui.po8
-rw-r--r--source/te/cui/uiconfig/ui.po13
-rw-r--r--source/te/sfx2/source/dialog.po30
-rw-r--r--source/te/sfx2/uiconfig/ui.po8
-rw-r--r--source/te/svtools/source/dialogs.po18
-rw-r--r--source/te/svtools/source/misc.po13
-rw-r--r--source/te/svx/source/stbctrls.po14
-rw-r--r--source/te/svx/uiconfig/ui.po8
-rw-r--r--source/tg/cui/uiconfig/ui.po6
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/tg/sfx2/source/dialog.po26
-rw-r--r--source/tg/sfx2/uiconfig/ui.po10
-rw-r--r--source/tg/svtools/source/dialogs.po18
-rw-r--r--source/tg/svtools/source/misc.po11
-rw-r--r--source/tg/svx/source/stbctrls.po14
-rw-r--r--source/tg/svx/uiconfig/ui.po8
-rw-r--r--source/th/cui/uiconfig/ui.po10
-rw-r--r--source/th/sfx2/source/dialog.po28
-rw-r--r--source/th/sfx2/uiconfig/ui.po8
-rw-r--r--source/th/svtools/source/dialogs.po18
-rw-r--r--source/th/svtools/source/misc.po13
-rw-r--r--source/th/svx/source/stbctrls.po14
-rw-r--r--source/th/svx/uiconfig/ui.po8
-rw-r--r--source/tn/cui/uiconfig/ui.po6
-rw-r--r--source/tn/sfx2/source/dialog.po28
-rw-r--r--source/tn/sfx2/uiconfig/ui.po8
-rw-r--r--source/tn/svtools/source/dialogs.po18
-rw-r--r--source/tn/svtools/source/misc.po11
-rw-r--r--source/tn/svx/source/stbctrls.po14
-rw-r--r--source/tn/svx/uiconfig/ui.po8
-rw-r--r--source/tr/cui/uiconfig/ui.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/tr/sfx2/source/dialog.po28
-rw-r--r--source/tr/sfx2/uiconfig/ui.po15
-rw-r--r--source/tr/svtools/source/dialogs.po12
-rw-r--r--source/tr/svtools/source/misc.po13
-rw-r--r--source/tr/svx/source/stbctrls.po12
-rw-r--r--source/tr/svx/uiconfig/ui.po14
-rw-r--r--source/ts/cui/uiconfig/ui.po6
-rw-r--r--source/ts/sfx2/source/dialog.po28
-rw-r--r--source/ts/sfx2/uiconfig/ui.po8
-rw-r--r--source/ts/svtools/source/dialogs.po18
-rw-r--r--source/ts/svtools/source/misc.po11
-rw-r--r--source/ts/svx/source/stbctrls.po14
-rw-r--r--source/ts/svx/uiconfig/ui.po8
-rw-r--r--source/ug/cui/uiconfig/ui.po12
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ug/sfx2/source/dialog.po28
-rw-r--r--source/ug/sfx2/uiconfig/ui.po18
-rw-r--r--source/ug/svtools/source/dialogs.po18
-rw-r--r--source/ug/svtools/source/misc.po11
-rw-r--r--source/ug/svx/source/stbctrls.po10
-rw-r--r--source/ug/svx/uiconfig/ui.po8
-rw-r--r--source/uk/cui/uiconfig/ui.po12
-rw-r--r--source/uk/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/uk/dbaccess/uiconfig/ui.po10
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po50
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po82
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po136
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po234
-rw-r--r--source/uk/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/uk/sfx2/source/dialog.po30
-rw-r--r--source/uk/sfx2/uiconfig/ui.po16
-rw-r--r--source/uk/svtools/source/dialogs.po16
-rw-r--r--source/uk/svtools/source/misc.po17
-rw-r--r--source/uk/svx/source/form.po10
-rw-r--r--source/uk/svx/source/stbctrls.po14
-rw-r--r--source/uk/svx/uiconfig/ui.po16
-rw-r--r--source/uz/cui/uiconfig/ui.po6
-rw-r--r--source/uz/sfx2/source/dialog.po28
-rw-r--r--source/uz/sfx2/uiconfig/ui.po8
-rw-r--r--source/uz/svtools/source/dialogs.po18
-rw-r--r--source/uz/svtools/source/misc.po15
-rw-r--r--source/uz/svx/source/stbctrls.po14
-rw-r--r--source/uz/svx/uiconfig/ui.po8
-rw-r--r--source/ve/cui/uiconfig/ui.po6
-rw-r--r--source/ve/sfx2/source/dialog.po26
-rw-r--r--source/ve/sfx2/uiconfig/ui.po8
-rw-r--r--source/ve/svtools/source/dialogs.po18
-rw-r--r--source/ve/svtools/source/misc.po11
-rw-r--r--source/ve/svx/source/stbctrls.po14
-rw-r--r--source/ve/svx/uiconfig/ui.po8
-rw-r--r--source/vec/chart2/source/controller/dialogs.po10
-rw-r--r--source/vec/chart2/uiconfig/ui.po8
-rw-r--r--source/vec/cui/source/options.po5
-rw-r--r--source/vec/cui/uiconfig/ui.po20
-rw-r--r--source/vec/dbaccess/uiconfig/ui.po6
-rw-r--r--source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po7
-rw-r--r--source/vec/readlicense_oo/docs.po6
-rw-r--r--source/vec/sfx2/source/dialog.po28
-rw-r--r--source/vec/sfx2/source/view.po6
-rw-r--r--source/vec/sfx2/uiconfig/ui.po15
-rw-r--r--source/vec/svtools/source/dialogs.po12
-rw-r--r--source/vec/svtools/source/misc.po13
-rw-r--r--source/vec/svx/source/stbctrls.po12
-rw-r--r--source/vec/svx/uiconfig/ui.po14
-rw-r--r--source/vec/sw/source/uibase/utlui.po6
-rw-r--r--source/vec/swext/mediawiki/help.po30
-rw-r--r--source/vi/cui/uiconfig/ui.po10
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/vi/sfx2/source/dialog.po28
-rw-r--r--source/vi/sfx2/uiconfig/ui.po8
-rw-r--r--source/vi/svtools/source/dialogs.po18
-rw-r--r--source/vi/svtools/source/misc.po13
-rw-r--r--source/vi/svx/source/stbctrls.po14
-rw-r--r--source/vi/svx/uiconfig/ui.po8
-rw-r--r--source/xh/cui/uiconfig/ui.po6
-rw-r--r--source/xh/sfx2/source/dialog.po26
-rw-r--r--source/xh/sfx2/uiconfig/ui.po10
-rw-r--r--source/xh/svtools/source/dialogs.po18
-rw-r--r--source/xh/svtools/source/misc.po13
-rw-r--r--source/xh/svx/source/stbctrls.po14
-rw-r--r--source/xh/svx/uiconfig/ui.po8
-rw-r--r--source/zh-CN/cui/uiconfig/ui.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/zh-CN/sfx2/source/dialog.po28
-rw-r--r--source/zh-CN/sfx2/uiconfig/ui.po15
-rw-r--r--source/zh-CN/svtools/source/dialogs.po16
-rw-r--r--source/zh-CN/svtools/source/misc.po13
-rw-r--r--source/zh-CN/svx/source/stbctrls.po12
-rw-r--r--source/zh-CN/svx/uiconfig/ui.po14
-rw-r--r--source/zh-TW/cui/uiconfig/ui.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/zh-TW/sfx2/source/dialog.po28
-rw-r--r--source/zh-TW/sfx2/uiconfig/ui.po15
-rw-r--r--source/zh-TW/svtools/source/dialogs.po12
-rw-r--r--source/zh-TW/svtools/source/misc.po13
-rw-r--r--source/zh-TW/svx/source/dialog.po8
-rw-r--r--source/zh-TW/svx/source/stbctrls.po12
-rw-r--r--source/zh-TW/svx/uiconfig/ui.po14
-rw-r--r--source/zu/cui/uiconfig/ui.po6
-rw-r--r--source/zu/sfx2/source/dialog.po28
-rw-r--r--source/zu/sfx2/uiconfig/ui.po6
-rw-r--r--source/zu/svtools/source/dialogs.po18
-rw-r--r--source/zu/svtools/source/misc.po13
-rw-r--r--source/zu/svx/source/stbctrls.po14
-rw-r--r--source/zu/svx/uiconfig/ui.po8
1115 files changed, 11101 insertions, 6536 deletions
diff --git a/source/af/cui/uiconfig/ui.po b/source/af/cui/uiconfig/ui.po
index a7f57134ebb..4dd3485e664 100644
--- a/source/af/cui/uiconfig/ui.po
+++ b/source/af/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794659.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593134.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/af/sfx2/source/dialog.po b/source/af/sfx2/source/dialog.po
index 968d856c38b..b73e44dc69c 100644
--- a/source/af/sfx2/source/dialog.po
+++ b/source/af/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467650563.000000\n"
+"X-POOTLE-MTIME: 1480676667.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiërargies"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/af/sfx2/uiconfig/ui.po b/source/af/sfx2/uiconfig/ui.po
index b323e99655c..863e5158f70 100644
--- a/source/af/sfx2/uiconfig/ui.po
+++ b/source/af/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650650.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480676832.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/af/svtools/source/dialogs.po b/source/af/svtools/source/dialogs.po
index fdab2e243da..e1285839ba6 100644
--- a/source/af/svtools/source/dialogs.po
+++ b/source/af/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-29 18:28+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-01 15:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456770514.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462118072.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Geformateerde teks [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/af/svtools/source/misc.po b/source/af/svtools/source/misc.po
index 565fa6ab787..1b13031144a 100644
--- a/source/af/svtools/source/misc.po
+++ b/source/af/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467651022.000000\n"
+"X-POOTLE-MTIME: 1480677245.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/af/svx/source/stbctrls.po b/source/af/svx/source/stbctrls.po
index ed99d925396..46590540690 100644
--- a/source/af/svx/source/stbctrls.po
+++ b/source/af/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467651243.000000\n"
+"X-POOTLE-MTIME: 1480678276.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/af/svx/uiconfig/ui.po b/source/af/svx/uiconfig/ui.po
index 58a794733f1..116213a4a9a 100644
--- a/source/af/svx/uiconfig/ui.po
+++ b/source/af/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-02 11:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/am/cui/uiconfig/ui.po b/source/am/cui/uiconfig/ui.po
index 8c1093f1f45..3f2715f2cd5 100644
--- a/source/am/cui/uiconfig/ui.po
+++ b/source/am/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-20 00:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-02 23:24+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489969104.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491175465.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -15484,7 +15484,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
-msgstr "ፊደል ማረሚያ እና ሰዋሰው: $LANGUAGE ($LOCATION)"
+msgstr "ፊደል እና ሰዋሰው ማረሚያ: $LANGUAGE ($LOCATION)"
#: spellingdialog.ui
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 4680596d0c4..e8b345644d7 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-18 20:02+0000\n"
+"PO-Revision-Date: 2017-04-02 22:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489867329.000000\n"
+"X-POOTLE-MTIME: 1491172740.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -17014,7 +17014,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "<emph>መግለጫ1, መግለጫ2:</emph> ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት"
+msgstr "<emph>መግለጫ1: መግለጫ2:</emph> ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት"
#: 03070100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index ced22e2062e..590033d6f5c 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-28 17:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490723843.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index 011922794bd..52219ffdde3 100644
--- a/source/am/helpcontent2/source/text/schart/01.po
+++ b/source/am/helpcontent2/source/text/schart/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-17 01:14+0000\n"
+"PO-Revision-Date: 2017-03-31 01:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489713299.000000\n"
+"X-POOTLE-MTIME: 1490924866.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id3791924\n"
"help.text"
msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
-msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት perspective ተመሳሳይ እንደ አሁኑ እትም"
+msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት ተመሳሳይ አስተያየት እንደ አሁኑ እትም"
#: three_d_view.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index a4586f9145b..a6d5a0345d3 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-17 19:11+0000\n"
+"PO-Revision-Date: 2017-03-30 20:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489777905.000000\n"
+"X-POOTLE-MTIME: 1490905223.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -4112,7 +4112,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
-msgstr "በ እርዳታ ገጽ ላይ ለ <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] ባጠቃላይ</link> እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: እና መጎተቻ እና መጣያ የ መሳሰሉ"
+msgstr "በ እርዳታ ገጽ ላይ ለ <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] ባጠቃላይ</link> እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: መጎተቻ እና መጣያ የመሳሰሉ"
#: 00000099.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 9c38fe54c35..3c31da4a1f1 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-28 18:53+0000\n"
+"PO-Revision-Date: 2017-03-31 01:42+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490727230.000000\n"
+"X-POOTLE-MTIME: 1490924546.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Form Controls"
-msgstr "የፎርም መቆጣጠሪያዎች"
+msgstr "የ ፎርም መቆጣጠሪያዎች"
#: 01170000.xhp
msgctxt ""
@@ -674,7 +674,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Form Controls"
-msgstr "የፎርም መቆጣጠሪያዎች"
+msgstr "የ ፎርም መቆጣጠሪያዎች"
#: 01170000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/05.po b/source/am/helpcontent2/source/text/shared/05.po
index 9c85e335c9f..823f8b0f3d8 100644
--- a/source/am/helpcontent2/source/text/shared/05.po
+++ b/source/am/helpcontent2/source/text/shared/05.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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-12-07 18:50+0000\n"
+"PO-Revision-Date: 2017-04-02 22:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481136618.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491173028.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click <emph>Display</emph> to load the corresponding Help document."
-msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ <emph>ማሳያ</emph>ተመሳሳዩን የ እርዳታ ገጽ ለ መጫን"
+msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ <emph> ማሳያ </emph> ተመሳሳዩን የ እርዳታ ገጽ ለ መጫን"
#: 00000140.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autokorr.po b/source/am/helpcontent2/source/text/shared/autokorr.po
index db1ad6d1282..f9acd4cca46 100644
--- a/source/am/helpcontent2/source/text/shared/autokorr.po
+++ b/source/am/helpcontent2/source/text/shared/autokorr.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-04-22 23:39+0200\n"
-"PO-Revision-Date: 2017-01-30 19:31+0000\n"
+"PO-Revision-Date: 2017-04-02 22:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485804682.000000\n"
+"X-POOTLE-MTIME: 1491172786.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Minus signs have been replaced"
-msgstr "የመቀነስ ምልክት ተቀይሯል"
+msgstr "የ መቀነሻ ምልክት ተቀይሯል"
#: 12000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index 7e474b524bc..377ddacd8de 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-03-28 18:09+0000\n"
+"PO-Revision-Date: 2017-04-02 22:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490724592.000000\n"
+"X-POOTLE-MTIME: 1491172896.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -12761,7 +12761,7 @@ msgctxt ""
"par_id1278420\n"
"help.text"
msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
-msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክይ ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት"
+msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክት ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት"
#: rep_main.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 1f45586dc90..3ee64fb3fcd 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-28 19:00+0000\n"
+"PO-Revision-Date: 2017-03-30 19:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490727634.000000\n"
+"X-POOTLE-MTIME: 1490902447.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -10043,7 +10043,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor."
-msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው የ ፍጹም መንገድ ስሞች ነው በውስጣዊ: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው"
+msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው በ ውስጣዊ የ ፍጹም መንገድ ስሞች ነው: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው"
#: imagemap.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index caf4f8e8116..c421317ad7f 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-17 01:24+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-02 21:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489713879.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491169466.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">ይምረጡ</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
@@ -8626,7 +8626,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "Character style"
-msgstr "የባህሪ ዘዴ"
+msgstr "የ ባህሪ ዘዴ"
#: 01041100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index 6266d2f71b2..30d27e3ddcc 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-28 19:07+0000\n"
+"PO-Revision-Date: 2017-04-02 22:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490728074.000000\n"
+"X-POOTLE-MTIME: 1491172804.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Minus"
-msgstr "መቀነስ"
+msgstr "መቀነሻ"
#: 03090100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index ce83c10ccdd..40ef95eb055 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-28 17:05+0000\n"
+"PO-Revision-Date: 2017-03-30 19:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490720721.000000\n"
+"X-POOTLE-MTIME: 1490902474.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -2428,7 +2428,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Text documents in $[officename] have an integrated <link href=\"text/swriter/main0214.xhp\" name=\"calculation function\">calculation function</link> that helps you execute sophisticated calculations or logical links. You can easily create a table in a text document in order to perform calculations."
-msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የ<link href=\"text/swriter/main0214.xhp\" name=\"calculation function\">ማስሊያ ተግባር</link> አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም"
+msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የ <link href=\"text/swriter/main0214.xhp\" name=\"calculation function\"> ማስሊያ ተግባር</link> አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም"
#: main0503.xhp
msgctxt ""
@@ -2518,4 +2518,4 @@ msgctxt ""
"28\n"
"help.text"
msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
-msgstr "መጠቀም ይችላሉ <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">የእርዳታ ስርአቱን</link> እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">መመሪያዎች</link> ለቀላል እና ለውስብስብ ስራዎች"
+msgstr "መጠቀም ይችላሉ <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">የ እርዳታ ስርአቱን</link> እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">መመሪያዎች</link> ለ ቀላል እና ለ ውስብስብ ስራዎች"
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index f67140dc5b8..d70c9cd687e 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-03-28 02:40+0000\n"
+"PO-Revision-Date: 2017-03-30 23:02+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490668849.000000\n"
+"X-POOTLE-MTIME: 1490914965.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -15753,7 +15753,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Right-click in a paragraph, choose <emph>Paragraph, </emph>set the options that you want, for example, the background color, and then click <emph>OK</emph>."
-msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ <emph>አንቀጽ </emph>ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ : የ መደብ ቀለም: እና ከዛ ይጫኑ <emph>እሺ</emph>."
+msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ <emph>አንቀጽ </emph>ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ: የ መደብ ቀለም: እና ከዛ ይጫኑ <emph>እሺ</emph>."
#: text_emphasize.xhp
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index 87632694982..7480a81984d 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-19 23:57+0000\n"
+"PO-Revision-Date: 2017-04-02 22:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489967877.000000\n"
+"X-POOTLE-MTIME: 1491173523.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23587,7 +23587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Settings"
-msgstr "የገጽ ማሰናጃዎች"
+msgstr "የ ገጽ ማሰናጃ"
#: ReportCommands.xcu
msgctxt ""
@@ -26512,7 +26512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Column Type"
-msgstr "የገጽ አምድ አይነት"
+msgstr "የ ገጽ አምድ አይነት"
#: WriterCommands.xcu
msgctxt ""
@@ -26530,7 +26530,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Settings"
-msgstr "የገጽ ማሰናጃዎች"
+msgstr "የ ገጽ ማሰናጃ"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sc/uiconfig/scalc/ui.po b/source/am/sc/uiconfig/scalc/ui.po
index cc6888ecb41..bed7a61c2f2 100644
--- a/source/am/sc/uiconfig/scalc/ui.po
+++ b/source/am/sc/uiconfig/scalc/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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-23 23:47+0000\n"
+"PO-Revision-Date: 2017-04-02 23:42+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487893656.000000\n"
+"X-POOTLE-MTIME: 1491176548.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6548,14 +6548,13 @@ msgid "Case se_nsitive"
msgstr "Case se_nsitive"
#: optcalculatepage.ui
-#, fuzzy
msgctxt ""
"optcalculatepage.ui\n"
"case\n"
"tooltip_text\n"
"string.text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel"
+msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel ጋር"
#: optcalculatepage.ui
msgctxt ""
diff --git a/source/am/sfx2/source/dialog.po b/source/am/sfx2/source/dialog.po
index 33d8dcf4269..5ec1d3c78b9 100644
--- a/source/am/sfx2/source/dialog.po
+++ b/source/am/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-04 20:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480881922.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "በ ቅደም ተከተል"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/am/sfx2/uiconfig/ui.po b/source/am/sfx2/uiconfig/ui.po
index d8c6c349f7e..03baf7f3445 100644
--- a/source/am/sfx2/uiconfig/ui.po
+++ b/source/am/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 02:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485139385.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n"
-"\n"
-"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
-"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
-"\n"
-"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/am/svtools/source/dialogs.po b/source/am/svtools/source/dialogs.po
index 78bc32bed25..c2759571f4f 100644
--- a/source/am/svtools/source/dialogs.po
+++ b/source/am/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-20 00:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489968923.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "በትክክል የቀረበ ጽሁፍ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/am/svtools/source/misc.po b/source/am/svtools/source/misc.po
index a721de7449b..7af32e764c0 100644
--- a/source/am/svtools/source/misc.po
+++ b/source/am/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-14 15:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungarian (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/am/svx/source/stbctrls.po b/source/am/svx/source/stbctrls.po
index 5e945c7f3a6..a462bad0e6b 100644
--- a/source/am/svx/source/stbctrls.po
+++ b/source/am/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-02 18:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480703596.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/am/svx/uiconfig/ui.po b/source/am/svx/uiconfig/ui.po
index 8c510ac6de1..e3e768db059 100644
--- a/source/am/svx/uiconfig/ui.po
+++ b/source/am/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-03-19 16:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-02 23:45+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489942235.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491176727.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Focal length"
-msgstr ""
+msgstr "የ _ትኩረት እርዝመት"
#: docking3deffects.ui
msgctxt ""
@@ -5075,20 +5075,20 @@ msgstr "በ ጥንቃቄ ዘዴ _ይቀጥሉ"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_ማጥፊያ"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "ለውጦቹን _መፈጸሚያ እና እንደገና ማስጀመሪያ"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ar/cui/uiconfig/ui.po b/source/ar/cui/uiconfig/ui.po
index 4fab9330c4d..373a9290071 100644
--- a/source/ar/cui/uiconfig/ui.po
+++ b/source/ar/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-16 03:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-03 15:28+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
"Language: ar\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489635387.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491233297.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "الحقوق محفوظة © ٢٠٠٠–٢٠١٦ لمساهمي ليبر‌ أوفيس."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Component method name:"
-msgstr ""
+msgstr "اسم طريقة المكون:"
#: autocorrectdialog.ui
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Unlinked image"
-msgstr ""
+msgstr "الصور غير المربوطة"
#: backgroundpage.ui
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find images"
-msgstr ""
+msgstr "ابحث عن الصور"
#: backgroundpage.ui
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color"
-msgstr "لون"
+msgstr "اللون"
#: backgroundpage.ui
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Image"
-msgstr ""
+msgstr "الصورة"
#: baselinksdialog.ui
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Links"
-msgstr "حرّر الوصلات"
+msgstr "حرّر الروابط"
#: baselinksdialog.ui
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Break Link"
-msgstr ""
+msgstr "_فك الرابط"
#: baselinksdialog.ui
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Automatic"
-msgstr "ت_لقائية"
+msgstr "ت_لقائيًا"
#: baselinksdialog.ui
msgctxt ""
@@ -1268,7 +1268,6 @@ msgid "Style:"
msgstr "النمط:"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1278,7 +1277,6 @@ msgid "Original"
msgstr "كما هي"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1288,7 +1286,6 @@ msgid "Filled"
msgstr "مملوءة"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1304,7 +1301,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Zoomed"
-msgstr ""
+msgstr "مقرّبة"
#: bitmaptabpage.ui
msgctxt ""
@@ -1313,7 +1310,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Custom"
-msgstr ""
+msgstr "مخصّص"
#: bitmaptabpage.ui
msgctxt ""
@@ -1322,7 +1319,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Tiled"
-msgstr ""
+msgstr "مبلّطة"
#: bitmaptabpage.ui
msgctxt ""
@@ -1334,14 +1331,13 @@ msgid "Size:"
msgstr "المقاس:"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "W:"
-msgstr "ع:"
+msgstr "عرض:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1350,7 +1346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "H:"
-msgstr ""
+msgstr "طول:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1368,7 +1364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position:"
-msgstr "الموقع:"
+msgstr "الموضع:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1458,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Position:"
-msgstr ""
+msgstr "موضع التبليط:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1467,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X:"
-msgstr ""
+msgstr "س:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1476,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y:"
-msgstr ""
+msgstr "ص:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1485,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Offset:"
-msgstr ""
+msgstr "إزاحة التبليط:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1494,7 +1490,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Row"
-msgstr ""
+msgstr "صف"
#: bitmaptabpage.ui
msgctxt ""
@@ -1503,7 +1499,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Column"
-msgstr ""
+msgstr "عمود"
#: bitmaptabpage.ui
msgctxt ""
@@ -1512,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "الخيارات"
#: bitmaptabpage.ui
msgctxt ""
@@ -1521,7 +1517,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "مثال"
#: bitmaptabpage.ui
msgctxt ""
@@ -1530,7 +1526,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "معاينة"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1557,7 +1553,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL vendor:"
-msgstr ""
+msgstr "الشركة:"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1584,7 +1580,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Blacklist Entry"
-msgstr ""
+msgstr "حرر مُدخل قائمة أوبن‌سي‌إل السوداء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1593,7 +1589,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Blacklist Entry"
-msgstr ""
+msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل السوداء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1602,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Whitelist Entry"
-msgstr ""
+msgstr "حرر مُدخل قائمة أوبن‌سي‌إل البيضاء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1611,7 +1607,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Whitelist Entry"
-msgstr ""
+msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل البيضاء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1620,7 +1616,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL Information"
-msgstr ""
+msgstr "معلومات أوبن‌سي‌إل"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1629,7 +1625,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Any"
-msgstr ""
+msgstr "أي واحد"
#: borderareatransparencydialog.ui
msgctxt ""
@@ -1710,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pr_esets:"
-msgstr ""
+msgstr "الإعدادات الجا_هزة:"
#: borderpage.ui
msgctxt ""
@@ -1719,7 +1715,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Adjacent Cells:"
-msgstr ""
+msgstr "الخلايا الم_تجاورة:"
#: borderpage.ui
msgctxt ""
@@ -1728,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove border"
-msgstr ""
+msgstr "أزل الحد"
#: borderpage.ui
msgctxt ""
@@ -1791,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right:"
-msgstr "يمين:"
+msgstr "اليمين:"
#: borderpage.ui
msgctxt ""
@@ -1818,37 +1814,34 @@ msgctxt ""
"label\n"
"string.text"
msgid "Synchronize"
-msgstr "مزامنة"
+msgstr "زامِن"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label10\n"
"label\n"
"string.text"
msgid "Spacing to Contents"
-msgstr "المسافة حتى المحتويات"
+msgstr "المسافة إلى المحتويات"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label22\n"
"label\n"
"string.text"
msgid "_Position:"
-msgstr "الم_وضع"
+msgstr "الم_وضع:"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"distanceft\n"
"label\n"
"string.text"
msgid "Distan_ce:"
-msgstr "ال_مسافة"
+msgstr "ال_مسافة:"
#: borderpage.ui
msgctxt ""
@@ -1860,7 +1853,6 @@ msgid "C_olor:"
msgstr "ال_لون:"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label11\n"
@@ -1885,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge adjacent line styles"
-msgstr ""
+msgstr "ا_دمج طُرز الخطوط المتجاورة"
#: borderpage.ui
msgctxt ""
@@ -1894,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr "خصائص"
+msgstr "الخصائص"
#: breaknumberoption.ui
msgctxt ""
@@ -1906,27 +1898,24 @@ msgid "Hyphenation"
msgstr "فصل المقاطع"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"beforelabel\n"
"label\n"
"string.text"
msgid "Characters Before Break"
-msgstr "المحارف قبل الفاصل"
+msgstr "عدد الأحرف قبل الفاصل"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"afterlabel\n"
"label\n"
"string.text"
msgid "Characters After Break"
-msgstr "المحارف بعد الفاصل"
+msgstr "عدد الأحرف بعد الفاصل"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"minimallabel\n"
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index d0f81bdcec5..ac5b77bd4f2 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-25 02:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5723,22 +5723,20 @@ msgid "Functions"
msgstr "دوال"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 88af6d7f963..680d2736179 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ar/sfx2/source/dialog.po b/source/ar/sfx2/source/dialog.po
index 0e2f71c4368..180727cbac1 100644
--- a/source/ar/sfx2/source/dialog.po
+++ b/source/ar/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 13:43+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484833406.000000\n"
#: dialog.src
@@ -725,6 +725,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "هيكلي"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ar/sfx2/uiconfig/ui.po b/source/ar/sfx2/uiconfig/ui.po
index 3e01b180aa9..14bf0f85025 100644
--- a/source/ar/sfx2/uiconfig/ui.po
+++ b/source/ar/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-06 22:52+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488840765.000000\n"
#: alienwarndialog.ui
@@ -795,19 +795,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"إن %PRODUCTNAME متوفّر وفقا لشروط رخصة موزيلا العامة، الإصدارة الثانية. يمكن الحصول على نسخة من الرخصة على http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"يمكنك إيجاد إشعارات الحقوق وشروط الرخص الإضافية لنصوص الأطراف الثالثة والمطبّقة في أجزاء من البرمجية في ملف LICENSE.html، انقر \"أظهر الرخصة\" لترى التفاصيل الدقيقة بالإنجليزية.\n"
-"\n"
-"كل العلامات التجارية وتلك المسجلة أيضا المذكورة هنا ملك لأصحابها المعنيين.\n"
-"\n"
-"الحقوق محفوظة © 2000–2016 مساهمو ليبر أوفيس. جميع الحقوق محفوظة.\n"
-"\n"
-"أُنشأ هذا المنتج من %OOOVENDOR، وذلك بناء على أوبن‌أوفيس.أورغ، محفوظ الحقوق 2000، 2011 أوركال و/أو شركاتها التابعة. يشكر %OOOVENDOR كل أعضاء المجتمع، فضلا طالع http://www.libreoffice.org/ لتفاصيل أكثر."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ar/svtools/source/dialogs.po b/source/ar/svtools/source/dialogs.po
index f15a810db2b..7b649efdae7 100644
--- a/source/ar/svtools/source/dialogs.po
+++ b/source/ar/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-20 16:39+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484930380.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "نص منسّق [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ar/svtools/source/misc.po b/source/ar/svtools/source/misc.po
index aa50404cddb..a611858b0f2 100644
--- a/source/ar/svtools/source/misc.po
+++ b/source/ar/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-10 18:06+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489169206.000000\n"
#: imagemgr.src
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ar/svx/source/stbctrls.po b/source/ar/svx/source/stbctrls.po
index d6bce239cf1..4877091d198 100644
--- a/source/ar/svx/source/stbctrls.po
+++ b/source/ar/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-15 20:13+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487189597.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "لائم الشّريحة إلى النّافذة الحاليّة."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ar/svx/uiconfig/ui.po b/source/ar/svx/uiconfig/ui.po
index 6c6b17b38bf..830a3d91769 100644
--- a/source/ar/svx/uiconfig/ui.po
+++ b/source/ar/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-16 03:55+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489636530.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5078,20 +5078,20 @@ msgstr "أ_كمل في الوضع الآمن"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "أ_نهِ"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_طبّق التغييرات و أعد التشغيل"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ar/sw/uiconfig/swriter/ui.po b/source/ar/sw/uiconfig/swriter/ui.po
index c62f77230ca..14734e77a87 100644
--- a/source/ar/sw/uiconfig/swriter/ui.po
+++ b/source/ar/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ 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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-06 22:50+0000\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2017-04-01 07:00+0000\n"
+"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: none\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488840656.000000\n"
+"X-POOTLE-MTIME: 1491030012.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "أدرِج صوت و فديو"
#: notebookbar.ui
msgctxt ""
@@ -10527,24 +10527,22 @@ msgid "Caption"
msgstr "واصفة"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Level:"
-msgstr "مستوى"
+msgstr "المستوى:"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "Separator:"
-msgstr "فاصل"
+msgstr "الفاصل"
#: optcaptionpage.ui
msgctxt ""
@@ -10566,14 +10564,13 @@ msgid "Numbering Captions by Chapter"
msgstr "ترقيم الواصفات لكل فصل"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Character style:"
-msgstr "نمط الأحرف"
+msgstr "نمط الأحرف:"
#: optcaptionpage.ui
msgctxt ""
@@ -13799,7 +13796,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Continue at the beginning?"
-msgstr ""
+msgstr "أأتابع من البداية؟"
#: querycontinuebegindialog.ui
msgctxt ""
@@ -13808,7 +13805,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to continue at the beginning?"
-msgstr ""
+msgstr "أتريد المتابعة من البداية؟"
#: querycontinuebegindialog.ui
msgctxt ""
@@ -13826,7 +13823,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Continue at the end?"
-msgstr ""
+msgstr "أأتابع من النهاية؟"
#: querycontinueenddialog.ui
msgctxt ""
@@ -13835,7 +13832,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to continue at the end?"
-msgstr ""
+msgstr "أتريد المتابعة من النهاية؟"
#: querycontinueenddialog.ui
msgctxt ""
@@ -14318,7 +14315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add..."
-msgstr ""
+msgstr "أ_ضف..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14327,7 +14324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create..."
-msgstr ""
+msgstr "أ_نشئ..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14336,17 +14333,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Filter..."
-msgstr ""
+msgstr "ر_شّح..."
#: selectaddressdialog.ui
-#, fuzzy
msgctxt ""
"selectaddressdialog.ui\n"
"edit\n"
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "تحرير"
+msgstr "_حرّر..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14355,7 +14351,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change _Table..."
-msgstr ""
+msgstr "غيّر ال_جدول..."
#: selectaddressdialog.ui
msgctxt ""
diff --git a/source/as/cui/uiconfig/ui.po b/source/as/cui/uiconfig/ui.po
index 5135a591084..755591d3be7 100644
--- a/source/as/cui/uiconfig/ui.po
+++ b/source/as/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794877.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593303.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME শব্দ প্ৰক্ৰিয়াকৰণ, স্প্ৰেডশ্বীটসমূহ, পৰিৱেশন আৰু অধিকৰ বাবে এটা আধুনিক, সহজতে-ব্যৱহাৰকৰিব পৰা, মুক্ত উৎস উৎপাদন চুইট।"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "স্বত্বাধিকাৰ ©২০০০-২০১৪ LibreOffice অৱদানকাৰীসকল।"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/as/sfx2/source/dialog.po b/source/as/sfx2/source/dialog.po
index e2e78294009..521c94bf6ed 100644
--- a/source/as/sfx2/source/dialog.po
+++ b/source/as/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 16:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457626599.000000\n"
+"X-POOTLE-MTIME: 1478888209.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ওপৰৰ পৰা তললৈকে ক্ৰমানুসাৰে"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/as/sfx2/uiconfig/ui.po b/source/as/sfx2/uiconfig/ui.po
index b3ab7e5972e..97bff2af162 100644
--- a/source/as/sfx2/uiconfig/ui.po
+++ b/source/as/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650708.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595687.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/as/svtools/source/dialogs.po b/source/as/svtools/source/dialogs.po
index ec79b13bdd1..b3a55c6cd8d 100644
--- a/source/as/svtools/source/dialogs.po
+++ b/source/as/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:36+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
"Language: as\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440531397.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "ফৰমেট কৰি থোৱা টেক্সট [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/as/svtools/source/misc.po b/source/as/svtools/source/misc.po
index 1a81aca7765..c965ac8bfc7 100644
--- a/source/as/svtools/source/misc.po
+++ b/source/as/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 08:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462696034.000000\n"
+"X-POOTLE-MTIME: 1478888824.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/as/svx/source/stbctrls.po b/source/as/svx/source/stbctrls.po
index 0fca13e44ed..d77673854aa 100644
--- a/source/as/svx/source/stbctrls.po
+++ b/source/as/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845950.000000\n"
+"X-POOTLE-MTIME: 1478889867.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/as/svx/uiconfig/ui.po b/source/as/svx/uiconfig/ui.po
index 8064b02c0b8..341e6f1ddf5 100644
--- a/source/as/svx/uiconfig/ui.po
+++ b/source/as/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5086,16 +5086,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ast/cui/uiconfig/ui.po b/source/ast/cui/uiconfig/ui.po
index 1ce563410a2..c5f4aa58ad2 100644
--- a/source/ast/cui/uiconfig/ui.po
+++ b/source/ast/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ast\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794929.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593267.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME ye una suite de productividá moderna, cenciella d'usar y de códigu abiertu, pa procesar testu, fueyes de cálculu, presentaciones y más."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2014 collaboradores de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 9ce6f744cc3..02a58eff9f7 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 18:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -5721,22 +5721,20 @@ msgid "Functions"
msgstr "Funciones"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 0caef59837d..28f80eaebd9 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ast/sfx2/source/dialog.po b/source/ast/sfx2/source/dialog.po
index 14b50bb8787..661b91f814a 100644
--- a/source/ast/sfx2/source/dialog.po
+++ b/source/ast/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 18:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457635713.000000\n"
+"X-POOTLE-MTIME: 1478888927.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Xerárquicu"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ast/sfx2/uiconfig/ui.po b/source/ast/sfx2/uiconfig/ui.po
index 59cbcece5df..f747662c7cb 100644
--- a/source/ast/sfx2/uiconfig/ui.po
+++ b/source/ast/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-22 15:10+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ast\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479827454.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595753.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -790,7 +790,6 @@ msgid "_Show License"
msgstr "_Amosar la llicencia"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -803,19 +802,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME ta disponible suxetu a los términos de la Llicencia Pública de Mozilla, v. 2.0. Pue alcontrar una copia de la llicencia en http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Otros avisos de copyright del códigu de terceros y les condiciones de llicencia aplicables a porciones del software descríbense nel ficheru LICENSE.html; escueya «Amosar la llicencia» pa ver los detalles exactos n'inglés.\n"
-"\n"
-"Toles marques comerciales que se mencionen, rexistraes o non, son propiedá de los dueños respeutivos.\n"
-"\n"
-"Copyright © 2000–2014 de los collaboradores de LibreOffice. Tolos drechos acutaos.\n"
-"\n"
-"Esti productu creóse por %OOOVENDOR, basáu en OpenOffice.org, que tien Copyright 2000, 2011 de Oracle y/o los sos afiliaos. %OOOVENDOR reconoz a tolos miembros de la comunidá; por favor, vea http://www.libreoffice.org/ pa más detalles."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ast/svtools/source/dialogs.po b/source/ast/svtools/source/dialogs.po
index d13901fe97b..c010ee219d1 100644
--- a/source/ast/svtools/source/dialogs.po
+++ b/source/ast/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:32+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440531157.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testu formatiáu [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ast/svtools/source/misc.po b/source/ast/svtools/source/misc.po
index 39086a0bb9f..30f7ea4333e 100644
--- a/source/ast/svtools/source/misc.po
+++ b/source/ast/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 08:37+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462696653.000000\n"
+"X-POOTLE-MTIME: 1478889547.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ast/svx/source/stbctrls.po b/source/ast/svx/source/stbctrls.po
index 8753a702104..6f353db75cd 100644
--- a/source/ast/svx/source/stbctrls.po
+++ b/source/ast/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:53+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845629.000000\n"
+"X-POOTLE-MTIME: 1478890584.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ast/svx/uiconfig/ui.po b/source/ast/svx/uiconfig/ui.po
index 264915c9d6c..1180aba3808 100644
--- a/source/ast/svx/uiconfig/ui.po
+++ b/source/ast/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5105,16 +5105,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/be/basctl/source/basicide.po b/source/be/basctl/source/basicide.po
index e5672635f98..671c224214a 100644
--- a/source/be/basctl/source/basicide.po
+++ b/source/be/basctl/source/basicide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: basicide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-29 14:52+0000\n"
+"PO-Revision-Date: 2017-03-30 08:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799134.000000\n"
+"X-POOTLE-MTIME: 1490861844.000000\n"
#: basicprint.src
msgctxt ""
@@ -745,13 +745,12 @@ msgid "Modules..."
msgstr "Модулі..."
#: basidesh.src
-#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_STR_REMOVEWATCHTIP\n"
"string.text"
msgid "Remove Watch"
-msgstr "Remove Watch"
+msgstr "Выдаліць назіральніка"
#: basidesh.src
msgctxt ""
diff --git a/source/be/basctl/uiconfig/basicide/ui.po b/source/be/basctl/uiconfig/basicide/ui.po
index 173d7892b70..5e797d588e7 100644
--- a/source/be/basctl/uiconfig/basicide/ui.po
+++ b/source/be/basctl/uiconfig/basicide/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\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-22 23:40+0200\n"
-"PO-Revision-Date: 2017-03-29 14:55+0000\n"
+"PO-Revision-Date: 2017-03-30 08:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799340.000000\n"
+"X-POOTLE-MTIME: 1490861865.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -386,14 +386,13 @@ msgid "_Export..."
msgstr "_Экспартаваць..."
#: managebreakpoints.ui
-#, fuzzy
msgctxt ""
"managebreakpoints.ui\n"
"ManageBreakpointsDialog\n"
"title\n"
"string.text"
msgid "Manage Breakpoints"
-msgstr "Manage Breakpoints"
+msgstr "Кіраваць перапынкамі"
#: managebreakpoints.ui
msgctxt ""
@@ -414,14 +413,13 @@ msgid "Pass count:"
msgstr "Колькасць праходаў:"
#: managebreakpoints.ui
-#, fuzzy
msgctxt ""
"managebreakpoints.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Breakpoints"
-msgstr "Breakpoints"
+msgstr "Перапынкі"
#: managelanguages.ui
msgctxt ""
@@ -478,7 +476,6 @@ msgid "M_odule:"
msgstr "М_одуль:"
#: modulepage.ui
-#, fuzzy
msgctxt ""
"modulepage.ui\n"
"newmodule\n"
diff --git a/source/be/basic/source/classes.po b/source/be/basic/source/classes.po
index 43f92649cc6..7eca78c52b2 100644
--- a/source/be/basic/source/classes.po
+++ b/source/be/basic/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: classes\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2017-03-29 14:58+0000\n"
+"PO-Revision-Date: 2017-03-30 10:15+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799530.000000\n"
+"X-POOTLE-MTIME: 1490868929.000000\n"
#: sb.src
msgctxt ""
@@ -233,7 +233,6 @@ msgid "File already open."
msgstr "Файл ужо адкрыты."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -243,7 +242,6 @@ msgid "Device I/O error."
msgstr "Памылка ўводу ці вываду з прыстасавання."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -253,7 +251,6 @@ msgid "File already exists."
msgstr "Файл ужо існуе."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -263,7 +260,6 @@ msgid "Incorrect record length."
msgstr "Няправільная даўжыня запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -273,7 +269,6 @@ msgid "Disk or hard drive full."
msgstr "Дыск (ці дыскета) поўны."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -283,7 +278,6 @@ msgid "Reading exceeds EOF."
msgstr "Чытанне перасягае EOF."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -293,7 +287,6 @@ msgid "Incorrect record number."
msgstr "Няправільны нумар запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -303,7 +296,6 @@ msgid "Too many files."
msgstr "Занадта многа файлаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -313,7 +305,6 @@ msgid "Device not available."
msgstr "Прыстасаванне не прысутнае."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -323,7 +314,6 @@ msgid "Access denied."
msgstr "Не дазволены доступ."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -333,7 +323,6 @@ msgid "Disk not ready."
msgstr "Не гатовы дыск."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -343,7 +332,6 @@ msgid "Not implemented."
msgstr "Не рэалізавана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -353,7 +341,6 @@ msgid "Renaming on different drives impossible."
msgstr "Немагчыма мяняць назву па-над рознымі дыскамі."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -363,7 +350,6 @@ msgid "Path/File access error."
msgstr "Памылка дасягання каталогу ці файла."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -373,7 +359,6 @@ msgid "Path not found."
msgstr "Не знойдзены шлях."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -383,7 +368,6 @@ msgid "Object variable not set."
msgstr "Не настаўлена аб'ектавая зменная."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -393,7 +377,6 @@ msgid "Invalid string pattern."
msgstr "Няправільны ўзор радка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -403,7 +386,6 @@ msgid "Use of zero not permitted."
msgstr "Не дазваляецца ўжыванне нуля."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -413,7 +395,6 @@ msgid "DDE Error."
msgstr "Памылка DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -423,7 +404,6 @@ msgid "Awaiting response to DDE connection."
msgstr "Чакаецца водгук на спробу далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -433,7 +413,6 @@ msgid "No DDE channels available."
msgstr "Няма наяўных каналаў DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -443,7 +422,6 @@ msgid "No application responded to DDE connect initiation."
msgstr "Ніякія праграмы не адгукаюцца на ініцыяцыю далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -453,7 +431,6 @@ msgid "Too many applications responded to DDE connect initiation."
msgstr "Занадта многа праграм адгукнуліся на ініцыяцыю далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -463,7 +440,6 @@ msgid "DDE channel locked."
msgstr "Канал DDE замкнуты."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -473,7 +449,6 @@ msgid "External application cannot execute DDE operation."
msgstr "Вонкавая праграма няздольная выканаць аперацыю DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -483,7 +458,6 @@ msgid "Timeout while waiting for DDE response."
msgstr "Таймаут пры чаканні водгуку DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -493,7 +467,6 @@ msgid "User pressed ESCAPE during DDE operation."
msgstr "У час аперацыі DDE была націснута клавіша \"Escape\"."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -503,7 +476,6 @@ msgid "External application busy."
msgstr "Вонкавая праграма занятая."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -513,7 +485,6 @@ msgid "DDE operation without data."
msgstr "Аперацыя DDE без даных."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -523,7 +494,6 @@ msgid "Data are in wrong format."
msgstr "Няправільны фармат даных."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -533,7 +503,6 @@ msgid "External application has been terminated."
msgstr "Вонкавая праграма была спынена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -543,7 +512,6 @@ msgid "DDE connection interrupted or modified."
msgstr "Далучэнне DDE перапынена або зменена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -553,17 +521,15 @@ msgid "DDE method invoked with no channel open."
msgstr "Метад DDE выкліканы без адкрытага канала."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_INVALID_LINK & ERRCODE_RES_MASK\n"
"string.text"
msgid "Invalid DDE link format."
-msgstr "Неправільны фармат спасылкі DDE."
+msgstr "Няправільны фармат спасылкі DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -573,7 +539,6 @@ msgid "DDE message has been lost."
msgstr "Паведамленне DDE было згублена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -583,37 +548,33 @@ msgid "Paste link already performed."
msgstr "Ужо здзейснена ўстаўлянне спасылкі."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n"
"string.text"
msgid "Link mode cannot be set due to invalid link topic."
-msgstr "Немагчыма змяніць лад спасылкі, з-за недапушчальнай тэмы (topic) спасылкі."
+msgstr "Немагчыма змяніць рэжым спасылкі з-за няправільнай тэмы."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n"
"string.text"
msgid "DDE requires the DDEML.DLL file."
-msgstr "Дзеля DDE патрабуецца файл DDEML.DLL."
+msgstr "DDE патрабуе файл DDEML.DLL."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_CANNOT_LOAD & ERRCODE_RES_MASK\n"
"string.text"
msgid "Module cannot be loaded; invalid format."
-msgstr "Модуль немагчыма прачытаць, з-за недапушчальнага фармату."
+msgstr "Немагчыма прачытаць модуль; няправільны фармат."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -623,17 +584,15 @@ msgid "Invalid object index."
msgstr "Недапушчальны індэкс аб'екта."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n"
"string.text"
msgid "Object is not available."
-msgstr "Аб'ект не наяўны."
+msgstr "Аб'ект недаступны."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -643,27 +602,24 @@ msgid "Incorrect property value."
msgstr "Няправільнае значэнне ўласцівасці."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_PROP_READONLY & ERRCODE_RES_MASK\n"
"string.text"
msgid "This property is read-only."
-msgstr "Гэта ўласцівасць з'яўляецца толькі-чытанай."
+msgstr "Гэта ўласцівасць толькі для чытання."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_PROP_WRITEONLY & ERRCODE_RES_MASK\n"
"string.text"
msgid "This property is write only."
-msgstr "Гэта ўласцівасць толькі дзеля запісу."
+msgstr "Гэта ўласцівасць толькі для запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -673,7 +629,6 @@ msgid "Invalid object reference."
msgstr "Недапушчальная спасылка на аб'ект."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -683,7 +638,6 @@ msgid "Property or method not found: $(ARG1)."
msgstr "Не знойдзена ўласцівасць ці метад: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -693,7 +647,6 @@ msgid "Object required."
msgstr "Патрабуецца аб'ект."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -703,7 +656,6 @@ msgid "Invalid use of an object."
msgstr "Няправільнае выкарыстанне аб'екта."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -713,7 +665,6 @@ msgid "OLE Automation is not supported by this object."
msgstr "Аўтаматызацыя OLE не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -723,7 +674,6 @@ msgid "This property or method is not supported by the object."
msgstr "Гэта ўласцівасць ці метад не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -733,7 +683,6 @@ msgid "OLE Automation Error."
msgstr "Памылка аўтаматызацыі OLE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -743,7 +692,6 @@ msgid "This action is not supported by given object."
msgstr "Гэта дзеянне не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -753,17 +701,15 @@ msgid "Named arguments are not supported by given object."
msgstr "Называныя аргументы не падтрымліваюцца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_BAD_LOCALE & ERRCODE_RES_MASK\n"
"string.text"
msgid "The current locale setting is not supported by the given object."
-msgstr "Актыўнае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам."
+msgstr "Бягучае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -773,17 +719,15 @@ msgid "Named argument not found."
msgstr "Называны аргумент не знойдзены."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_NOT_OPTIONAL & ERRCODE_RES_MASK\n"
"string.text"
msgid "Argument is not optional."
-msgstr "Аргумент не з'яўляецца неабавязковым."
+msgstr "Аргумент абавязковы."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -793,7 +737,6 @@ msgid "Invalid number of arguments."
msgstr "Няправільная колькасць аргументаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -803,7 +746,6 @@ msgid "Object is not a list."
msgstr "Гэты аб'ект не з'яўляецца спісам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -813,7 +755,6 @@ msgid "Invalid ordinal number."
msgstr "Недапушчальны парадкавы нумар."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -823,7 +764,6 @@ msgid "Specified DLL function not found."
msgstr "Азначаная функцыя DLL не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -833,7 +773,6 @@ msgid "Invalid clipboard format."
msgstr "Недапушчальны фармат абменніка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -843,27 +782,24 @@ msgid "Object does not have this property."
msgstr "Гэты аб'ект не ўтрымлівае гэтай уласцівасці."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n"
"string.text"
msgid "Object does not have this method."
-msgstr "Гэты аб'ект не ўтрымлівае гэтага метада."
+msgstr "Гэты аб'ект не ўтрымлівае гэтага метаду."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_ARG_MISSING & ERRCODE_RES_MASK\n"
"string.text"
msgid "Required argument lacking."
-msgstr "Адсутнічае патрабаваны аргумент."
+msgstr "Адсутнічае абавязковы аргумент."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -873,17 +809,15 @@ msgid "Invalid number of arguments."
msgstr "Няправільная колькасць аргументаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_METHOD_FAILED & ERRCODE_RES_MASK\n"
"string.text"
msgid "Error executing a method."
-msgstr "Памылка пры выкананні метада."
+msgstr "Памылка пры выкананні метаду."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -893,7 +827,6 @@ msgid "Unable to set property."
msgstr "Немагчыма наставіць уласцівасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -903,7 +836,6 @@ msgid "Unable to determine property."
msgstr "Немагчыма вызначыць уласцівасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -913,7 +845,6 @@ msgid "Unexpected symbol: $(ARG1)."
msgstr "Нечаканы сімвал: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -923,7 +854,6 @@ msgid "Expected: $(ARG1)."
msgstr "Чакалася: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -933,7 +863,6 @@ msgid "Symbol expected."
msgstr "Чакаўся сімвал."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -943,7 +872,6 @@ msgid "Variable expected."
msgstr "Чакалася зменная."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -953,7 +881,6 @@ msgid "Label expected."
msgstr "Чакалася метка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -963,7 +890,6 @@ msgid "Value cannot be applied."
msgstr "Немагчыма ўжыць гэта значэнне."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -973,7 +899,6 @@ msgid "Variable $(ARG1) already defined."
msgstr "Зменная $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -983,7 +908,6 @@ msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Працэдура (\"sub\" ці \"function\") $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -993,7 +917,6 @@ msgid "Label $(ARG1) already defined."
msgstr "Метка $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1003,7 +926,6 @@ msgid "Variable $(ARG1) not found."
msgstr "Зменная $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1013,7 +935,6 @@ msgid "Array or procedure $(ARG1) not found."
msgstr "Масіў ці працэдура $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1023,7 +944,6 @@ msgid "Procedure $(ARG1) not found."
msgstr "Працэдура $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1033,7 +953,6 @@ msgid "Label $(ARG1) undefined."
msgstr "Метка $(ARG1) не вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1043,7 +962,6 @@ msgid "Unknown data type $(ARG1)."
msgstr "Невядомы тып даных $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1053,7 +971,6 @@ msgid "Exit $(ARG1) expected."
msgstr "Чакалася Exit $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1063,7 +980,6 @@ msgid "Statement block still open: $(ARG1) missing."
msgstr "Блок сцвярджэння застаецца адкрытым: не хапае $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1073,7 +989,6 @@ msgid "Parentheses do not match."
msgstr "Дужкі ўзаемна не адпаведныя."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1083,7 +998,6 @@ msgid "Symbol $(ARG1) already defined differently."
msgstr "Сімвал $(ARG1) ужо вызначаны іншым чынам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1093,7 +1007,6 @@ msgid "Parameters do not correspond to procedure."
msgstr "Параметры не адпавядаюць працэдуры."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1103,17 +1016,15 @@ msgid "Invalid character in number."
msgstr "Недапушчальны знак у ліку."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n"
"string.text"
msgid "Array must be dimensioned."
-msgstr "Масіў мусіць мець вымярэнне(-і)."
+msgstr "Масіў мусіць мець вымернасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1123,7 +1034,6 @@ msgid "Else/Endif without If."
msgstr "Else/Endif без If."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1133,7 +1043,6 @@ msgid "$(ARG1) not allowed within a procedure."
msgstr "Не дазваляецца $(ARG1) у працэдуры."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1143,7 +1052,6 @@ msgid "$(ARG1) not allowed outside a procedure."
msgstr "Не дазваляецца $(ARG1) па-за працэдурай."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1153,17 +1061,15 @@ msgid "Dimension specifications do not match."
msgstr "Вызначэнні вымярэнняў узаемна не адпаведныя."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_BAD_OPTION & ERRCODE_RES_MASK\n"
"string.text"
msgid "Unknown option: $(ARG1)."
-msgstr "Невядомая магчымасць: $(ARG1)."
+msgstr "Невядомы параметр: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1173,7 +1079,6 @@ msgid "Constant $(ARG1) redefined."
msgstr "Канстанта $(ARG1) перавызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1183,7 +1088,6 @@ msgid "Program too large."
msgstr "Праграма занадта вялікая."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
diff --git a/source/be/chart2/source/controller/dialogs.po b/source/be/chart2/source/controller/dialogs.po
index b5a1f973da2..4ffdc0457df 100644
--- a/source/be/chart2/source/controller/dialogs.po
+++ b/source/be/chart2/source/controller/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2014-05-15 05:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:32+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400132584.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491327163.000000\n"
#: Strings.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS\n"
"string.text"
msgid "Moving average trend line with period = %PERIOD"
-msgstr ""
+msgstr "Слізгальная сярэдняя лінія трэнду з перыядам = %PERIOD"
#: Strings.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"STR_ACTION_TOGGLE_GRID_HORZ\n"
"string.text"
msgid "Horizontal grid major/major&minor/off"
-msgstr ""
+msgstr "Гарызантальная сетка галоўная/галоўная+дадатковая/выкл."
#: Strings.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"STR_ACTION_TOGGLE_GRID_VERTICAL\n"
"string.text"
msgid "Vertical grid major/major&minor/off"
-msgstr ""
+msgstr "Вертыкальная сетка галоўная/галоўная+дадатковая/выкл."
#: Strings.src
msgctxt ""
@@ -1010,7 +1010,7 @@ msgctxt ""
"STR_PROPERTY_ROLE_FILLCOLOR\n"
"string.text"
msgid "Fill Color"
-msgstr ""
+msgstr "Колер запаўнення"
#: Strings.src
msgctxt ""
@@ -1018,7 +1018,7 @@ msgctxt ""
"STR_PROPERTY_ROLE_BORDERCOLOR\n"
"string.text"
msgid "Border Color"
-msgstr ""
+msgstr "Колер аблямоўкі"
#: Strings_AdditionalControls.src
msgctxt ""
@@ -1266,7 +1266,7 @@ msgctxt ""
"STR_TYPE_GL3D_BAR\n"
"string.text"
msgid "GL3D Bar"
-msgstr ""
+msgstr "Брусок GL3D"
#: Strings_ChartTypes.src
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"STR_GL3D_BAR\n"
"string.text"
msgid "GL3D Bar Chart"
-msgstr ""
+msgstr "Брусковая дыяграма GL3D"
#: Strings_Scale.src
msgctxt ""
@@ -1362,7 +1362,7 @@ msgctxt ""
"STR_REGRESSION_LINEAR\n"
"string.text"
msgid "Linear"
-msgstr ""
+msgstr "Лінейная"
#: Strings_Statistic.src
msgctxt ""
@@ -1370,7 +1370,7 @@ msgctxt ""
"STR_REGRESSION_LOG\n"
"string.text"
msgid "Logarithmic"
-msgstr ""
+msgstr "Лагарыфмічная"
#: Strings_Statistic.src
msgctxt ""
@@ -1378,7 +1378,7 @@ msgctxt ""
"STR_REGRESSION_EXP\n"
"string.text"
msgid "Exponential"
-msgstr ""
+msgstr "Экспанентная"
#: Strings_Statistic.src
msgctxt ""
@@ -1386,7 +1386,7 @@ msgctxt ""
"STR_REGRESSION_POWER\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Ступенная"
#: Strings_Statistic.src
msgctxt ""
@@ -1394,7 +1394,7 @@ msgctxt ""
"STR_REGRESSION_POLYNOMIAL\n"
"string.text"
msgid "Polynomial"
-msgstr ""
+msgstr "Паліномная"
#: Strings_Statistic.src
msgctxt ""
@@ -1402,7 +1402,7 @@ msgctxt ""
"STR_REGRESSION_MOVING_AVERAGE\n"
"string.text"
msgid "Moving average"
-msgstr ""
+msgstr "Слізгальнае сярэдняе"
#: Strings_Statistic.src
msgctxt ""
@@ -1410,4 +1410,4 @@ msgctxt ""
"STR_REGRESSION_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Сярэдняе"
diff --git a/source/be/chart2/uiconfig/ui.po b/source/be/chart2/uiconfig/ui.po
index 97dab135784..9e550ad2650 100644
--- a/source/be/chart2/uiconfig/ui.po
+++ b/source/be/chart2/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 19:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-12 15:09+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462129630.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492009774.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "3D View"
-msgstr ""
+msgstr "Трохмерны від"
#: chardialog.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Character"
-msgstr ""
+msgstr "Знак"
#: chardialog.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Шрыфт"
#: chardialog.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font Effects"
-msgstr ""
+msgstr "Шрыфтавыя эфекты"
#: chardialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position"
-msgstr ""
+msgstr "Месца"
#: chartdatadialog.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Table"
-msgstr ""
+msgstr "Табліца даных"
#: chartdatadialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Row"
-msgstr ""
+msgstr "Уставіць радок"
#: chartdatadialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Series"
-msgstr ""
+msgstr "Уставіць выбарку"
#: chartdatadialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Text Column"
-msgstr ""
+msgstr "Уставіць тэкставую калонку"
#: chartdatadialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Row"
-msgstr ""
+msgstr "Выдаліць радок"
#: chartdatadialog.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Series"
-msgstr ""
+msgstr "Выдаліць выбарку"
#: chartdatadialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "Пасунуць выбарку ўправа"
#: chartdatadialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Down"
-msgstr ""
+msgstr "Пасунуць радок уніз"
#: charttypedialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Chart Type"
-msgstr ""
+msgstr "Тып дыяграмы"
#: datarangedialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Ranges"
-msgstr ""
+msgstr "Абсягі даных"
#: dlg_DataLabel.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Labels for all Data Series"
-msgstr ""
+msgstr "Меткі даных для ўсіх выбарак"
#: dlg_DataLabel.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show value as _number"
-msgstr ""
+msgstr "Паказаць значэнне як лічбу"
#: dlg_DataLabel.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show value as _percentage"
-msgstr ""
+msgstr "Паказаць значэнне як працэнт"
#: dlg_DataLabel.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _category"
-msgstr ""
+msgstr "Паказаць _катэгорыю"
#: dlg_DataLabel.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _legend key"
-msgstr ""
+msgstr "Паказаць ключ леген_ды"
#: dlg_DataLabel.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto text _wrap"
-msgstr ""
+msgstr "Пераносіць па словах"
#: dlg_DataLabel.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number _format..."
-msgstr ""
+msgstr "Фармат лікаў..."
#: dlg_DataLabel.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Percentage f_ormat..."
-msgstr ""
+msgstr "Фармат працэнта_ў..."
#: dlg_DataLabel.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ABCD"
-msgstr ""
+msgstr "ABCD"
#: dlg_DataLabel.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Separator"
-msgstr ""
+msgstr "Межнік"
#: dlg_DataLabel.ui
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Place_ment"
-msgstr ""
+msgstr "Месца"
#: dlg_DataLabel.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number Format for Percentage Value"
-msgstr ""
+msgstr "Фармат працэнтавых значэнняў"
#: dlg_DataLabel.ui
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text Attributes"
-msgstr ""
+msgstr "Атрыбуты тэксту"
#: dlg_DataLabel.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Degrees"
-msgstr ""
+msgstr "градусаў"
#: dlg_DataLabel.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt direction"
-msgstr ""
+msgstr "Кірунак тэксту"
#: dlg_DataLabel.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rotate Text"
-msgstr ""
+msgstr "Павярнуць тэкст"
#: dlg_DataLabel.ui
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Best fit"
-msgstr ""
+msgstr "Дапасаваць як найлепш"
#: dlg_DataLabel.ui
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Center"
-msgstr ""
+msgstr "У цэнтры"
#: dlg_DataLabel.ui
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Above"
-msgstr ""
+msgstr "Над"
#: dlg_DataLabel.ui
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Top left"
-msgstr ""
+msgstr "Верхні левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Left"
-msgstr ""
+msgstr "Левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Bottom left"
-msgstr ""
+msgstr "Ніжні левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Inside"
-msgstr ""
+msgstr "Усярэдзіне"
#: dlg_DataLabel.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Outside"
-msgstr ""
+msgstr "Звонку"
#: dlg_DataLabel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Space"
-msgstr ""
+msgstr "Прабел"
#: dlg_DataLabel.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Comma"
-msgstr ""
+msgstr "Коска"
#: dlg_DataLabel.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Semicolon"
-msgstr ""
+msgstr "Кропка з коскай"
#: dlg_DataLabel.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "New line"
-msgstr ""
+msgstr "Новы радок"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Legend"
-msgstr ""
+msgstr "Легенда"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_None"
-msgstr ""
+msgstr "_Няма"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_ositive (+)"
-msgstr ""
+msgstr "Дадатны (+)"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select data range"
-msgstr ""
+msgstr "Выберыце абсяг даных"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Negative (-)"
-msgstr ""
+msgstr "Адмоўны (-)"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select data range"
-msgstr ""
+msgstr "Выберыце абсяг даных"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parameters"
-msgstr ""
+msgstr "Параметры"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: insertaxisdlg.ui
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: insertaxisdlg.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: insertaxisdlg.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: insertaxisdlg.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: insertaxisdlg.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: insertaxisdlg.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axi_s"
-msgstr ""
+msgstr "Вось Z"
#: insertaxisdlg.ui
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr ""
+msgstr "Другасныя восі"
#: insertgriddlg.ui
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Grids"
-msgstr ""
+msgstr "Рашоткі"
#: insertgriddlg.ui
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: insertgriddlg.ui
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: insertgriddlg.ui
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: insertgriddlg.ui
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Major Grids"
-msgstr ""
+msgstr "Асноўныя рашоткі"
#: insertgriddlg.ui
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: insertgriddlg.ui
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: insertgriddlg.ui
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axi_s"
-msgstr ""
+msgstr "Вось Z"
#: insertgriddlg.ui
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minor Grids"
-msgstr ""
+msgstr "Дадатковыя рашоткі"
#: inserttitledlg.ui
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: inserttitledlg.ui
msgctxt ""
@@ -923,7 +923,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: inserttitledlg.ui
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: inserttitledlg.ui
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: inserttitledlg.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: inserttitledlg.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: inserttitledlg.ui
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr ""
+msgstr "Другасныя восі"
#: paradialog.ui
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Paragraph"
-msgstr ""
+msgstr "Параграф"
#: paradialog.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indents & Spacing"
-msgstr ""
+msgstr "Водступы і інтэрвалы"
#: paradialog.ui
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alignment"
-msgstr ""
+msgstr "Раўнаванне"
#: paradialog.ui
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Asian Typography"
-msgstr ""
+msgstr "Азіяцкі лад друку"
#: paradialog.ui
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tabs"
-msgstr ""
+msgstr "Табуляцыі"
#: sidebaraxis.ui
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show labels"
-msgstr ""
+msgstr "Паказаць подпісы"
#: sidebaraxis.ui
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reverse direction"
-msgstr ""
+msgstr "Адваротны кірунак"
#: sidebaraxis.ui
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Label position:"
-msgstr ""
+msgstr "Месца по_дпісу:"
#: sidebaraxis.ui
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Near Axis"
-msgstr ""
+msgstr "Каля восі"
#: sidebaraxis.ui
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Near Axis (other side)"
-msgstr ""
+msgstr "Каля восі (з другога боку)"
#: sidebaraxis.ui
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Legend"
-msgstr ""
+msgstr "Паказаць легенду"
#: sidebarelements.ui
msgctxt ""
@@ -1184,7 +1184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Legend"
-msgstr ""
+msgstr "Легенда"
#: sidebarelements.ui
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis"
-msgstr ""
+msgstr "Вось X"
#: sidebarelements.ui
msgctxt ""
@@ -1202,7 +1202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis title"
-msgstr ""
+msgstr "Назва на восі X"
#: sidebarelements.ui
msgctxt ""
@@ -1211,7 +1211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis"
-msgstr ""
+msgstr "Вось Y"
#: sidebarelements.ui
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis title"
-msgstr ""
+msgstr "Назва на восі Y"
#: sidebarelements.ui
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis"
-msgstr ""
+msgstr "Вось Z"
#: sidebarelements.ui
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis title"
-msgstr ""
+msgstr "Назва на восі Z"
#: sidebarelements.ui
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: sidebarelements.ui
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal major"
-msgstr ""
+msgstr "Гарызантальная асн."
#: sidebarelements.ui
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical major"
-msgstr ""
+msgstr "Вертыкальная асн."
#: sidebarelements.ui
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal minor"
-msgstr ""
+msgstr "Гарызантальная дап."
#: sidebarelements.ui
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical minor"
-msgstr ""
+msgstr "Вертыкальная дап."
#: sidebarelements.ui
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Gridlines"
-msgstr ""
+msgstr "Лініі рашоткі"
#: sidebarelements.ui
msgctxt ""
@@ -1337,7 +1337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Загаловак"
#: sidebarelements.ui
msgctxt ""
@@ -1346,7 +1346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr ""
+msgstr "Падзагаловак"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Катэгорыя:"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Constant"
-msgstr ""
+msgstr "Канстанта"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1427,7 +1427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Positive (+):"
-msgstr ""
+msgstr "Дадатна (+)"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Negative (-):"
-msgstr ""
+msgstr "Адмоўна (-)"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.00"
-msgstr ""
+msgstr "0,00"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.00"
-msgstr ""
+msgstr "0,00"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Positive and Negative"
-msgstr ""
+msgstr "Дадатныя і адмоўныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Positive"
-msgstr ""
+msgstr "Дадатныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Negative"
-msgstr ""
+msgstr "Адмоўныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indicator"
-msgstr ""
+msgstr "Індыкатар"
#: sidebarseries.ui
msgctxt ""
@@ -1562,7 +1562,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Near origin"
-msgstr ""
+msgstr "Каля пачатку каардынат"
#: sidebarseries.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show trendline"
-msgstr ""
+msgstr "Паказаць лінію трэнду"
#: sidebarseries.ui
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y error bars"
-msgstr ""
+msgstr "Слупкі памылак Y"
#: sidebarseries.ui
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X error bars"
-msgstr ""
+msgstr "Слупкі памылак X"
#: sidebarseries.ui
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error Bars"
-msgstr ""
+msgstr "Слупкі памылак"
#: sidebarseries.ui
msgctxt ""
@@ -1778,7 +1778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ABCD"
-msgstr ""
+msgstr "ABCD"
#: titlerotationtabpage.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt direction:"
-msgstr ""
+msgstr "Кірунак тэксту:"
#: titlerotationtabpage.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Simple"
-msgstr ""
+msgstr "Проста"
#: tp_3D_SceneAppearance.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Realistic"
-msgstr ""
+msgstr "Рэалістычна"
#: tp_3D_SceneAppearance.ui
msgctxt ""
@@ -1859,16 +1859,17 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Custom"
-msgstr ""
+msgstr "Свой"
#: tp_3D_SceneGeometry.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneGeometry.ui\n"
"CBX_RIGHT_ANGLED_AXES\n"
"label\n"
"string.text"
msgid "_Right-angled axes"
-msgstr ""
+msgstr "Аксанаметрычныя восі"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1877,7 +1878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X rotation"
-msgstr ""
+msgstr "Паварот X"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1886,7 +1887,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y rotation"
-msgstr ""
+msgstr "Паварот Y"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1895,7 +1896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z rotation"
-msgstr ""
+msgstr "Паварот Z"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1904,7 +1905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Perspective"
-msgstr ""
+msgstr "Перспектыва"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1913,7 +1914,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Perspective"
-msgstr ""
+msgstr "Перспектыва"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1922,7 +1923,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 1"
-msgstr ""
+msgstr "Крыніца святла 1"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1931,7 +1932,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 2"
-msgstr ""
+msgstr "Крыніца святла 2"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1940,7 +1941,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 3"
-msgstr ""
+msgstr "Крыніца святла 3"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1949,7 +1950,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 4"
-msgstr ""
+msgstr "Крыніца святла 4"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1958,7 +1959,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 5"
-msgstr ""
+msgstr "Крыніца святла 5"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1967,7 +1968,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 6"
-msgstr ""
+msgstr "Крыніца святла 6"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1976,7 +1977,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 7"
-msgstr ""
+msgstr "Крыніца святла 7"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1985,16 +1986,17 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 8"
-msgstr ""
+msgstr "Крыніца святла 8"
#: tp_3D_SceneIllumination.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneIllumination.ui\n"
"BTN_LIGHTSOURCE_COLOR\n"
"tooltip_text\n"
"string.text"
msgid "Select a color using the color dialog"
-msgstr ""
+msgstr "Выберыце колер у дыялогу выбару колераў"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -2003,16 +2005,17 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Light source"
-msgstr ""
+msgstr "Крыніца святла"
#: tp_3D_SceneIllumination.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneIllumination.ui\n"
"BTN_AMBIENT_COLOR\n"
"tooltip_text\n"
"string.text"
msgid "Select a color using the color dialog"
-msgstr ""
+msgstr "Выбраць колер у дылогу выбару колераў"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -2021,7 +2024,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Ambient light"
-msgstr ""
+msgstr "Навакольнае (ambient) асвятленне"
#: tp_3D_SceneIllumination.ui
msgctxt ""
diff --git a/source/be/cui/source/customize.po b/source/be/cui/source/customize.po
index 6bab27f6157..b1a2d0dd22a 100644
--- a/source/be/cui/source/customize.po
+++ b/source/be/cui/source/customize.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: customize\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-04-17 00:37+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:44+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1460853457.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335089.000000\n"
#: acccfg.src
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"ID_DEFAULT_COMMAND\n"
"menuitem.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Узнавіць прадвызначаную каманду"
#: cfg.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n"
"string.text"
msgid "%PRODUCTNAME %MODULENAME Context Menus"
-msgstr ""
+msgstr "Кантэкстныя меню %PRODUCTNAME %MODULENAME"
#: cfg.src
msgctxt ""
@@ -223,10 +223,9 @@ msgctxt ""
"RID_SVXSTR_TOOLBAR_NAME\n"
"string.text"
msgid "Toolbar Name"
-msgstr ""
+msgstr "Назва стужкі"
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SXVSTR_CONFIRM_DELETE_TOOLBAR\n"
@@ -240,7 +239,7 @@ msgctxt ""
"RID_SVXSTR_CONFIRM_MENU_RESET\n"
"string.text"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
+msgstr "Настаўленні меню для %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?"
#: cfg.src
msgctxt ""
@@ -248,10 +247,9 @@ msgctxt ""
"RID_SVXSTR_CONFIRM_TOOLBAR_RESET\n"
"string.text"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
+msgstr "Настаўленні стужкі %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?"
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXSTR_CONFIRM_RESTORE_DEFAULT\n"
diff --git a/source/be/cui/source/dialogs.po b/source/be/cui/source/dialogs.po
index 0f9c9055a3f..9e10eef7155 100644
--- a/source/be/cui/source/dialogs.po
+++ b/source/be/cui/source/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 07:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:47+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462691496.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335262.000000\n"
#: cuires.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"RID_SVXSTR_ALLFUNCTIONS\n"
"string.text"
msgid "All categories"
-msgstr ""
+msgstr "Усе катэгорыі"
#: cuires.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"RID_SVXSTR_PPI\n"
"string.text"
msgid "(%1 PPI)"
-msgstr ""
+msgstr "(%1 PPI)"
#: cuires.src
msgctxt ""
@@ -119,7 +119,7 @@ msgctxt ""
"RID_SVXSTR_LOADACCELCONFIG\n"
"string.text"
msgid "Load Keyboard Configuration"
-msgstr ""
+msgstr "Прачытаць настаўленні клавіятуры"
#: cuires.src
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"RID_SVXSTR_SAVEACCELCONFIG\n"
"string.text"
msgid "Save Keyboard Configuration"
-msgstr ""
+msgstr "Запісаць настаўленні клавіятуры"
#: cuires.src
msgctxt ""
@@ -367,7 +367,7 @@ msgctxt ""
"RID_SVXSTR_HYPERDLG_HLMAILTP\n"
"string.text"
msgid "Mail"
-msgstr ""
+msgstr "Пошта"
#: hyperdlg.src
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"RID_SVXSTR_ADD_IMAGE\n"
"string.text"
msgid "Add Image"
-msgstr ""
+msgstr "Дадаць відарыс"
#: passwdomdlg.src
msgctxt ""
@@ -479,7 +479,7 @@ msgctxt ""
"RID_SVXSTR_PASSWD_MUST_BE_CONFIRMED\n"
"string.text"
msgid "Password must be confirmed"
-msgstr ""
+msgstr "Трэба пацвердзіць пароль"
#: passwdomdlg.src
msgctxt ""
@@ -487,7 +487,7 @@ msgctxt ""
"RID_SVXSTR_ONE_PASSWORD_MISMATCH\n"
"string.text"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr ""
+msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі."
#: passwdomdlg.src
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"RID_SVXSTR_SAVE_SCREENSHOT_AS\n"
"string.text"
msgid "Save Screenshot As..."
-msgstr ""
+msgstr "Захаваць здымак як..."
#: scriptdlg.src
msgctxt ""
diff --git a/source/be/cui/source/options.po b/source/be/cui/source/options.po
index 62ca7e591e1..f44719228a7 100644
--- a/source/be/cui/source/options.po
+++ b/source/be/cui/source/options.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: options\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 07:13+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:56+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462691605.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335819.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_DRIVER_NAME\n"
"string.text"
msgid "Driver name"
-msgstr ""
+msgstr "Назва драйвера"
#: connpooloptions.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"RID_SVXSTR_POOLED_FLAG\n"
"string.text"
msgid "Pool"
-msgstr ""
+msgstr "Супол"
#: connpooloptions.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"RID_SVXSTR_POOL_TIMEOUT\n"
"string.text"
msgid "Timeout"
-msgstr ""
+msgstr "Таймаут"
#: connpooloptions.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"RID_SVXSTR_YES\n"
"string.text"
msgid "Yes"
-msgstr ""
+msgstr "Так"
#: connpooloptions.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"RID_SVXSTR_NO\n"
"string.text"
msgid "No"
-msgstr ""
+msgstr "Не"
#: dbregister.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_SVXSTR_TYPE\n"
"string.text"
msgid "Registered name"
-msgstr ""
+msgstr "Зарэгістраваная назва"
#: dbregister.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"RID_SVXSTR_PATH\n"
"string.text"
msgid "Database file"
-msgstr ""
+msgstr "Файл базы даных"
#: doclinkdialog.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"STR_MODIFY\n"
"string.text"
msgid "~Replace"
-msgstr ""
+msgstr "Замяніць"
#: optdict.src
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"RID_SVXSTR_HEADER1\n"
"string.text"
msgid "[L]"
-msgstr ""
+msgstr "[L]"
#: optfltr.src
msgctxt ""
@@ -210,7 +210,7 @@ msgctxt ""
"RID_SVXSTR_HEADER2\n"
"string.text"
msgid "[S]"
-msgstr ""
+msgstr "[S]"
#: optfltr.src
msgctxt ""
@@ -218,7 +218,7 @@ msgctxt ""
"RID_SVXSTR_CHG_MATH\n"
"string.text"
msgid "MathType to %PRODUCTNAME Math or reverse"
-msgstr ""
+msgstr "MathType у %PRODUCTNAME Math і адваротна"
#: optfltr.src
msgctxt ""
@@ -226,7 +226,7 @@ msgctxt ""
"RID_SVXSTR_CHG_WRITER\n"
"string.text"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
-msgstr ""
+msgstr "WinWord у %PRODUCTNAME Writer і адваротна"
#: optfltr.src
msgctxt ""
@@ -234,7 +234,7 @@ msgctxt ""
"RID_SVXSTR_CHG_CALC\n"
"string.text"
msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr ""
+msgstr "Excel у %PRODUCTNAME Calc і адваротна"
#: optfltr.src
msgctxt ""
@@ -242,7 +242,7 @@ msgctxt ""
"RID_SVXSTR_CHG_IMPRESS\n"
"string.text"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
-msgstr ""
+msgstr "PowerPoint у %PRODUCTNAME Impress і адваротна"
#: optfltr.src
msgctxt ""
@@ -267,7 +267,6 @@ msgstr ""
"Максімальны дазволены нумар порта гэта 65535."
#: optjava.src
-#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXSTR_JRE_NOT_RECOGNIZED\n"
@@ -280,7 +279,6 @@ msgstr ""
"Выберыце іншы каталог."
#: optjava.src
-#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXSTR_JRE_FAILED_VERSION\n"
@@ -314,7 +312,7 @@ msgctxt ""
"RID_SVXSTR_SPELL\n"
"string.text"
msgid "Spelling"
-msgstr ""
+msgstr "Правапіс"
#: optlingu.src
msgctxt ""
@@ -322,7 +320,7 @@ msgctxt ""
"RID_SVXSTR_HYPH\n"
"string.text"
msgid "Hyphenation"
-msgstr ""
+msgstr "Пераносы"
#: optlingu.src
msgctxt ""
@@ -330,7 +328,7 @@ msgctxt ""
"RID_SVXSTR_THES\n"
"string.text"
msgid "Thesaurus"
-msgstr ""
+msgstr "Тэзаўрус"
#: optlingu.src
msgctxt ""
@@ -338,7 +336,7 @@ msgctxt ""
"RID_SVXSTR_GRAMMAR\n"
"string.text"
msgid "Grammar"
-msgstr ""
+msgstr "Граматыка"
#: optlingu.src
msgctxt ""
@@ -346,7 +344,7 @@ msgctxt ""
"RID_SVXSTR_CAPITAL_WORDS\n"
"string.text"
msgid "Check uppercase words"
-msgstr ""
+msgstr "Правяраць словы ў верхнім рэгістры"
#: optlingu.src
msgctxt ""
@@ -354,7 +352,7 @@ msgctxt ""
"RID_SVXSTR_WORDS_WITH_DIGITS\n"
"string.text"
msgid "Check words with numbers "
-msgstr ""
+msgstr "Правяраць словы з лічбамі "
#: optlingu.src
msgctxt ""
@@ -362,7 +360,7 @@ msgctxt ""
"RID_SVXSTR_SPELL_SPECIAL\n"
"string.text"
msgid "Check special regions"
-msgstr ""
+msgstr "Правяраць спецыяльныя вобласці"
#: optlingu.src
msgctxt ""
@@ -370,7 +368,7 @@ msgctxt ""
"RID_SVXSTR_SPELL_AUTO\n"
"string.text"
msgid "Check spelling as you type"
-msgstr ""
+msgstr "Правяраць правапіс падчас набору"
#: optlingu.src
msgctxt ""
@@ -378,7 +376,7 @@ msgctxt ""
"RID_SVXSTR_GRAMMAR_AUTO\n"
"string.text"
msgid "Check grammar as you type"
-msgstr ""
+msgstr "Аўтаматычна правяраць граматыку"
#: optlingu.src
msgctxt ""
@@ -442,7 +440,7 @@ msgctxt ""
"RID_SVXSTR_KEY_GRAPHICS_PATH\n"
"string.text"
msgid "Images"
-msgstr ""
+msgstr "Відарысы"
#: optpath.src
msgctxt ""
@@ -586,7 +584,7 @@ msgctxt ""
"RID_SVXSTR_KEY_CLASSIFICATION_PATH\n"
"string.text"
msgid "Classification"
-msgstr ""
+msgstr "Класіфікацыя"
#: optpath.src
msgctxt ""
@@ -610,7 +608,7 @@ msgctxt ""
"RID_SVXSTR_SEARCHTERM\n"
"string.text"
msgid "Search term"
-msgstr ""
+msgstr "Пошук тэксту"
#: personalization.src
msgctxt ""
@@ -659,7 +657,7 @@ msgctxt ""
"LibreOffice\n"
"itemlist.text"
msgid "LibreOffice"
-msgstr ""
+msgstr "LibreOffice"
#: personalization.src
msgctxt ""
@@ -668,7 +666,7 @@ msgctxt ""
"Abstract\n"
"itemlist.text"
msgid "Abstract"
-msgstr ""
+msgstr "Абстракцыя"
#: personalization.src
msgctxt ""
@@ -677,7 +675,7 @@ msgctxt ""
"Color\n"
"itemlist.text"
msgid "Color"
-msgstr ""
+msgstr "Колер"
#: personalization.src
msgctxt ""
@@ -686,7 +684,7 @@ msgctxt ""
"Music\n"
"itemlist.text"
msgid "Music"
-msgstr ""
+msgstr "Музыка"
#: personalization.src
msgctxt ""
@@ -695,7 +693,7 @@ msgctxt ""
"Nature\n"
"itemlist.text"
msgid "Nature"
-msgstr ""
+msgstr "Прырода"
#: personalization.src
msgctxt ""
@@ -704,7 +702,7 @@ msgctxt ""
"Solid\n"
"itemlist.text"
msgid "Solid"
-msgstr ""
+msgstr "Суцэльны"
#: treeopt.src
msgctxt ""
@@ -713,7 +711,7 @@ msgctxt ""
"%PRODUCTNAME\n"
"itemlist.text"
msgid "%PRODUCTNAME"
-msgstr ""
+msgstr "%PRODUCTNAME"
#: treeopt.src
msgctxt ""
@@ -722,7 +720,7 @@ msgctxt ""
"User Data\n"
"itemlist.text"
msgid "User Data"
-msgstr ""
+msgstr "Карыстальніцкія дадзеныя"
#: treeopt.src
msgctxt ""
@@ -731,7 +729,7 @@ msgctxt ""
"General\n"
"itemlist.text"
msgid "General"
-msgstr ""
+msgstr "Агульнае"
#: treeopt.src
msgctxt ""
@@ -740,7 +738,7 @@ msgctxt ""
"Memory\n"
"itemlist.text"
msgid "Memory"
-msgstr ""
+msgstr "Памяць"
#: treeopt.src
msgctxt ""
@@ -749,7 +747,7 @@ msgctxt ""
"View\n"
"itemlist.text"
msgid "View"
-msgstr ""
+msgstr "Від"
#: treeopt.src
msgctxt ""
@@ -758,7 +756,7 @@ msgctxt ""
"Print\n"
"itemlist.text"
msgid "Print"
-msgstr ""
+msgstr "Друк"
#: treeopt.src
msgctxt ""
@@ -767,7 +765,7 @@ msgctxt ""
"Paths\n"
"itemlist.text"
msgid "Paths"
-msgstr ""
+msgstr "Шляхі"
#: treeopt.src
msgctxt ""
@@ -776,7 +774,7 @@ msgctxt ""
"Fonts\n"
"itemlist.text"
msgid "Fonts"
-msgstr ""
+msgstr "Шрыфты"
#: treeopt.src
msgctxt ""
@@ -785,7 +783,7 @@ msgctxt ""
"Security\n"
"itemlist.text"
msgid "Security"
-msgstr ""
+msgstr "Бяспека"
#: treeopt.src
msgctxt ""
@@ -794,7 +792,7 @@ msgctxt ""
"Personalization\n"
"itemlist.text"
msgid "Personalization"
-msgstr ""
+msgstr "Персаналізацыя"
#: treeopt.src
msgctxt ""
diff --git a/source/be/cui/uiconfig/ui.po b/source/be/cui/uiconfig/ui.po
index 44321ce991e..5f2b2aade30 100644
--- a/source/be/cui/uiconfig/ui.po
+++ b/source/be/cui/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:46+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 16:59+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794815.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491325153.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
@@ -3237,7 +3237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Colors"
-msgstr ""
+msgstr "Папярэднія колеры"
#: colorpage.ui
msgctxt ""
@@ -4531,7 +4531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr ""
+msgstr "Атрымаць больш слоўнікаў у сеціве..."
#: editmodulesdialog.ui
#, fuzzy
@@ -5558,7 +5558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File type:"
-msgstr ""
+msgstr "Тып ф_айла:"
#: galleryfilespage.ui
msgctxt ""
@@ -6240,7 +6240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined Dictionaries"
-msgstr ""
+msgstr "Слоўнікі карыстальніка"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6258,7 +6258,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show recently used entries first"
-msgstr ""
+msgstr "Паказваць нядаўнія запісы ў пачатку"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6440,7 +6440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open File"
-msgstr ""
+msgstr "Адкрыць файл"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6449,7 +6449,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Open File"
-msgstr ""
+msgstr "Адкрыць файл"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6851,7 +6851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File:"
-msgstr ""
+msgstr "Ф_айл:"
#: hyperlinknewdocpage.ui
msgctxt ""
@@ -10741,7 +10741,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help Improve %PRODUCTNAME"
-msgstr ""
+msgstr "Дапамажыце палепшыць %PRODUCTNAME"
#: opthtmlpage.ui
msgctxt ""
@@ -11264,7 +11264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User-defined dictionaries:"
-msgstr ""
+msgstr "_Слоўнікі карыстальніка:"
#: optlingupage.ui
msgctxt ""
@@ -11292,7 +11292,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit User-defined dictionaries"
-msgstr ""
+msgstr "Рэдагаваць слоўнікі карыстальніка"
#: optlingupage.ui
msgctxt ""
@@ -11320,7 +11320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr ""
+msgstr "Іншыя слоўнікі ў сеціве..."
#: optlingupage.ui
#, fuzzy
@@ -14005,7 +14005,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open file read-only"
-msgstr ""
+msgstr "Адкрыць толькі для чытання"
#: password.ui
msgctxt ""
@@ -15101,7 +15101,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paste the following markup into the help file:"
-msgstr ""
+msgstr "Устаўце наступную разметку ў файл даведкі:"
#: scriptorganizer.ui
msgctxt ""
@@ -15301,7 +15301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When creating PDF _files"
-msgstr "Пры стварэнні файлаў PDF"
+msgstr "Пры стварэнні ф_айлаў PDF"
#: securityoptionsdialog.ui
msgctxt ""
diff --git a/source/be/dbaccess/source/ui/dlg.po b/source/be/dbaccess/source/ui/dlg.po
index 24c82dcaa92..c3037e8c688 100644
--- a/source/be/dbaccess/source/ui/dlg.po
+++ b/source/be/dbaccess/source/ui/dlg.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-08-25 15:52+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 17:10+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440517968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325810.000000\n"
#: AutoControls.src
msgctxt ""
@@ -690,7 +690,6 @@ msgid "Set up a connection to spreadsheets"
msgstr "Наставіць далучэнне да разліковых аркушаў"
#: dbadminsetup.src
-#, fuzzy
msgctxt ""
"dbadminsetup.src\n"
"STR_SPREADSHEET_HELPTEXT\n"
diff --git a/source/be/dbaccess/uiconfig/ui.po b/source/be/dbaccess/uiconfig/ui.po
index d21746c0666..901567fd5d3 100644
--- a/source/be/dbaccess/uiconfig/ui.po
+++ b/source/be/dbaccess/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2015-12-11 14:13+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 16:59+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449843230.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325181.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1013,14 +1013,13 @@ msgid "_Embedded database:"
msgstr ""
#: generalpagewizard.ui
-#, fuzzy
msgctxt ""
"generalpagewizard.ui\n"
"openExistingDatabase\n"
"label\n"
"string.text"
msgid "Open an existing database _file"
-msgstr "Адкрыць"
+msgstr "Адкрыць наяўны ф_айл базы даных"
#: generalpagewizard.ui
msgctxt ""
@@ -1029,7 +1028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Recently used:"
-msgstr ""
+msgstr "_Нядаўна выкарыстаныя:"
#: generalpagewizard.ui
#, fuzzy
diff --git a/source/be/editeng/source/editeng.po b/source/be/editeng/source/editeng.po
index 725499458b6..16b43b977fa 100644
--- a/source/be/editeng/source/editeng.po
+++ b/source/be/editeng/source/editeng.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: editeng\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-08-05 12:37+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 19:39+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1375706220.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491334785.000000\n"
#: editeng.src
msgctxt ""
@@ -89,14 +89,13 @@ msgid "Change Case"
msgstr "Змяніць рэгістр літар"
#: editeng.src
-#, fuzzy
msgctxt ""
"editeng.src\n"
"RID_MENU_SPELL\n"
"MN_IGNORE\n"
"menuitem.text"
msgid "I~gnore All"
-msgstr "Ignore All"
+msgstr "Ігнараваць усе"
#: editeng.src
msgctxt ""
@@ -132,7 +131,7 @@ msgctxt ""
"MN_AUTOCORR\n"
"menuitem.text"
msgid "AutoCorrect ~To"
-msgstr ""
+msgstr "Аўтазам~ена на"
#: editeng.src
msgctxt ""
@@ -141,7 +140,7 @@ msgctxt ""
"MN_AUTO_CORRECT_DLG\n"
"menuitem.text"
msgid "Auto~Correct Options..."
-msgstr ""
+msgstr "Параметры аўтазамены..."
#: editeng.src
msgctxt ""
diff --git a/source/be/editeng/source/misc.po b/source/be/editeng/source/misc.po
index 1b479694117..d7acea00fbb 100644
--- a/source/be/editeng/source/misc.po
+++ b/source/be/editeng/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: misc\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-22 23:41+0200\n"
-"PO-Revision-Date: 2017-03-24 13:25+0000\n"
+"PO-Revision-Date: 2017-04-04 19:40+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490361946.000000\n"
+"X-POOTLE-MTIME: 1491334843.000000\n"
#: lingu.src
msgctxt ""
@@ -33,7 +33,6 @@ msgid "Continue checking at end of document?"
msgstr "Continue checking at end of document?"
#: lingu.src
-#, fuzzy
msgctxt ""
"lingu.src\n"
"RID_SVXSTR_HMERR_THESAURUS\n"
@@ -42,8 +41,8 @@ msgid ""
"No thesaurus is available for the selected language. \n"
"Please check your installation and install the desired language\n"
msgstr ""
-"No thesaurus is available for the selected language. \n"
-"Please check your installation and install the desired language\n"
+"Няма ў наяўнасці тэзаўруса для выбранай мовы.\n"
+"Праверце вашу інсталяцыю і ўстанавіце патрэбны варыянт.\n"
#: lingu.src
msgctxt ""
diff --git a/source/be/extensions/source/propctrlr.po b/source/be/extensions/source/propctrlr.po
index 9c849b9e520..f71a2b86d02 100644
--- a/source/be/extensions/source/propctrlr.po
+++ b/source/be/extensions/source/propctrlr.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: propctrlr\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:17+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:07+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449843459.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490879223.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -2001,7 +2001,7 @@ msgctxt ""
"Help\n"
"itemlist.text"
msgid "Help"
-msgstr ""
+msgstr "Даведка"
#: formres.src
msgctxt ""
diff --git a/source/be/extras/source/autocorr/emoji.po b/source/be/extras/source/autocorr/emoji.po
index 1f9f3edc1a0..51e3e2c6187 100644
--- a/source/be/extras/source/autocorr/emoji.po
+++ b/source/be/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2016-05-08 07:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:57+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1462692932.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325021.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3915,7 +3915,7 @@ msgctxt ""
"CRESCENT_MOON\n"
"LngText.text"
msgid "crescent moon"
-msgstr ""
+msgstr "паўмесяц"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/be/filter/source/config/fragments/filters.po b/source/be/filter/source/config/fragments/filters.po
index 8554cd22686..6522c9d7684 100644
--- a/source/be/filter/source/config/fragments/filters.po
+++ b/source/be/filter/source/config/fragments/filters.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 16:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467649878.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325887.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ClarisWorks/AppleWorks Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш ClarisWorks/AppleWorks"
#: ClarisWorks_Draw.xcu
msgctxt ""
@@ -359,14 +359,13 @@ msgid "Microsoft Excel 97-2003"
msgstr ""
#: MS_Excel_97_Vorlage_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_97_Vorlage_Template.xcu\n"
"MS Excel 97 Vorlage/Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 97-2003 Template"
-msgstr "Шаблон Microsoft Excel 95"
+msgstr "Шаблон Microsoft Excel 97-2003"
#: MS_PowerPoint_97.xcu
#, fuzzy
@@ -389,14 +388,13 @@ msgid "Microsoft PowerPoint 97-2003 AutoPlay"
msgstr "Шаблон Microsoft PowerPoint 97/2000/XP/2003"
#: MS_PowerPoint_97_Vorlage.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97_Vorlage.xcu\n"
"MS PowerPoint 97 Vorlage\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003 Template"
-msgstr "Шаблон Microsoft PowerPoint 97/2000/XP/2003"
+msgstr "Шаблон Microsoft PowerPoint 97-2003"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -436,14 +434,13 @@ msgid "Microsoft Word 2007-2013 XML"
msgstr "Microsoft Word 2003 XML"
#: MS_Word_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Word_2007_XML_Template.xcu\n"
"MS Word 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML Template"
-msgstr "Шаблон Microsoft Word 95"
+msgstr "Шаблон Word 2007-2013 XML"
#: MS_Word_95.xcu
msgctxt ""
@@ -473,14 +470,13 @@ msgid "Microsoft Word 97-2003"
msgstr ""
#: MS_Word_97_Vorlage.xcu
-#, fuzzy
msgctxt ""
"MS_Word_97_Vorlage.xcu\n"
"MS Word 97 Vorlage\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 97-2003 Template"
-msgstr "Шаблон Microsoft Word 95"
+msgstr "Шаблон Microsoft Word 97-2003"
#: MS_Works.xcu
msgctxt ""
@@ -642,7 +638,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template"
-msgstr "Office Open XML Text Template"
+msgstr "Шаблон тэкставага дакумента Office Open XML"
#: PBM___Portable_Bitmap.xcu
msgctxt ""
@@ -1156,7 +1152,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet Template"
-msgstr "ODF Spreadsheet Template"
+msgstr "Шаблон электроннай табліцы ODF"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -1165,7 +1161,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш Gnumeric"
#: calc_HTML_WebQuery.xcu
msgctxt ""
@@ -1205,14 +1201,13 @@ msgid "Microsoft Excel 2007-2013 XML"
msgstr "Microsoft Excel 2003 XML"
#: calc_MS_Excel_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"calc_MS_Excel_2007_XML_Template.xcu\n"
"Calc MS Excel 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML Template"
-msgstr "Шаблон Microsoft Excel 95"
+msgstr "Шаблон Microsoft Excel 2007-2013 XML"
#: calc_OOXML.xcu
msgctxt ""
diff --git a/source/be/filter/source/config/fragments/types.po b/source/be/filter/source/config/fragments/types.po
index e20e5e3096f..0a3b6e08c4b 100644
--- a/source/be/filter/source/config/fragments/types.po
+++ b/source/be/filter/source/config/fragments/types.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 23:17+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 17:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431386229.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325904.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш Gnumeric"
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
@@ -295,14 +295,13 @@ msgid "Microsoft Word 2007-2013 XML"
msgstr "Microsoft Word 2003 XML"
#: writer_MS_Word_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"writer_MS_Word_2007_XML_Template.xcu\n"
"writer_MS_Word_2007_Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML Template"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Шаблон Microsoft Word 2007-2013 XML"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/be/fpicker/uiconfig/ui.po b/source/be/fpicker/uiconfig/ui.po
index b424267cedd..fb3a7325bbf 100644
--- a/source/be/fpicker/uiconfig/ui.po
+++ b/source/be/fpicker/uiconfig/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 07:36+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 15:55+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462692968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490889307.000000\n"
#: explorerfiledialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Remote Files"
-msgstr ""
+msgstr "Адлеглыя файлы"
#: remotefilesdialog.ui
msgctxt ""
diff --git a/source/be/framework/source/classes.po b/source/be/framework/source/classes.po
index 882facfddf1..84c9be7b872 100644
--- a/source/be/framework/source/classes.po
+++ b/source/be/framework/source/classes.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: classes\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 07:36+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:53+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462692969.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491324829.000000\n"
#: resource.src
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"STR_REMOTE_TITLE\n"
"string.text"
msgid " (Remote)"
-msgstr ""
+msgstr " (аддалена)"
#: resource.src
msgctxt ""
diff --git a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 205c3c72ec7..7fcb438d5a6 100644
--- a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: msi_languages\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 13:26+0000\n"
+"PO-Revision-Date: 2017-04-04 16:34+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490362019.000000\n"
+"X-POOTLE-MTIME: 1491323646.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"OOO_CONTROL_127\n"
"LngText.text"
msgid "The Installation Wizard will install [ProductName] on your computer. To continue, click Next."
-msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягваць устаноўку."
+msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягнуць устаноўку."
#: Control.ulf
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office.po b/source/be/officecfg/registry/data/org/openoffice/Office.po
index 9ff911278aa..edfbc4d34f5 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 13:33+0000\n"
+"PO-Revision-Date: 2017-04-04 17:02+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490362383.000000\n"
+"X-POOTLE-MTIME: 1491325357.000000\n"
#: Addons.xcu
msgctxt ""
@@ -207,7 +207,6 @@ msgid "B~usiness Cards"
msgstr "Візітныя карткі"
#: Common.xcu
-#, fuzzy
msgctxt ""
"Common.xcu\n"
"..Common.Menus.New.m14\n"
@@ -1551,7 +1550,6 @@ msgid "Exchange"
msgstr "Абмяняць"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n"
@@ -1999,7 +1997,6 @@ msgid "Slide Overview, %CURRENT_SLIDE_NAME%, %CURRENT_SLIDE_NUMBER% of %SLIDE_CO
msgstr "Мініяцюра слайда, %CURRENT_SLIDE_NAME%, %CURRENT_SLIDE_NUMBER% з %SLIDE_COUNT%"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.Presenter.Views.HelpView\n"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 0e82c9c32a0..a92ad85ce0e 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2016-12-01 12:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:13+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480594260.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491326017.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2868,10 +2868,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet..."
-msgstr ""
+msgstr "Засцерагаць аркуш..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ToolsOptions\n"
@@ -4451,7 +4450,6 @@ msgid "Text Formatting"
msgstr "Фарматаванне тэксту"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -17023,7 +17021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Templates"
-msgstr ""
+msgstr "Шаблоны"
#: GenericCommands.xcu
msgctxt ""
@@ -17032,16 +17030,17 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Manage Templates"
-msgstr ""
+msgstr "Распарадзіцца шаблонамі"
#: GenericCommands.xcu
+#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:NewDoc\n"
"TooltipLabel\n"
"value.text"
msgid "Show Templates Manager"
-msgstr ""
+msgstr "Паказаць загадчык шаблонаў"
#: GenericCommands.xcu
msgctxt ""
@@ -17069,7 +17068,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Remote"
-msgstr ""
+msgstr "Адкрыць аддалена"
#: GenericCommands.xcu
msgctxt ""
@@ -17078,7 +17077,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Open Remote ~File..."
-msgstr ""
+msgstr "Адкрыць адлеглы ф~айл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17087,7 +17086,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open Remote File"
-msgstr ""
+msgstr "Адкрыць адлеглы файл"
#: GenericCommands.xcu
msgctxt ""
@@ -17096,7 +17095,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Remote"
-msgstr ""
+msgstr "Запісаць аддалена"
#: GenericCommands.xcu
msgctxt ""
@@ -17105,7 +17104,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Sa~ve Remote File..."
-msgstr ""
+msgstr "~Запісаць адлеглы файл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17114,7 +17113,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Save Remote File"
-msgstr ""
+msgstr "Запісаць адлеглы файл"
#: GenericCommands.xcu
msgctxt ""
@@ -17123,7 +17122,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Save Remote File..."
-msgstr ""
+msgstr "Запісаць адлеглы файл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17818,7 +17817,6 @@ msgid "Move Down"
msgstr "Пасунуць уніз"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveAsTemplate\n"
@@ -18609,7 +18607,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Open Template..."
-msgstr ""
+msgstr "~Адкрыць шаблон..."
#: GenericCommands.xcu
msgctxt ""
@@ -20322,7 +20320,6 @@ msgid "Presentation Options"
msgstr "Presentation Options"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ScEditOptions\n"
@@ -22736,7 +22733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Tools"
-msgstr "Прылады"
+msgstr "~Прылады"
#: GenericCommands.xcu
msgctxt ""
@@ -23067,7 +23064,6 @@ msgid "E-mail as ~OpenDocument Format..."
msgstr "Адаслаць эл.поштай у фармаце ~OpenDocument..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TemplateManager\n"
@@ -24172,7 +24168,6 @@ msgid "Standard"
msgstr "Стандартна"
#: MathWindowState.xcu
-#, fuzzy
msgctxt ""
"MathWindowState.xcu\n"
"..MathWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -24455,14 +24450,13 @@ msgid "Text Document"
msgstr "Тэкставы дакумент"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:Spreadsheet\n"
"Label\n"
"value.text"
msgid "Spreadsheet Document"
-msgstr "Разліковы аркуш Дакумент"
+msgstr "Разліковы аркуш"
#: ReportCommands.xcu
#, fuzzy
@@ -25379,17 +25373,15 @@ msgid "What's ~This?"
msgstr "Што гэта?"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:HelpIndex\n"
"Label\n"
"value.text"
msgid "%PRODUCTNAME ~Help"
-msgstr "Даведка %PRODUCTNAME"
+msgstr "~Даведка %PRODUCTNAME"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:NewDoc\n"
@@ -25519,14 +25511,13 @@ msgid "~Edit"
msgstr "Правіць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:HelpMenu\n"
"Label\n"
"value.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: StartModuleCommands.xcu
#, fuzzy
@@ -25549,14 +25540,13 @@ msgid "~File"
msgstr "Файл"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:ToolsMenu\n"
"Label\n"
"value.text"
msgid "~Tools"
-msgstr "Прылады"
+msgstr "~Прылады"
#: StartModuleCommands.xcu
#, fuzzy
@@ -30331,7 +30321,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -30826,7 +30815,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -31319,7 +31307,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -31794,7 +31781,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -32248,7 +32234,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -32797,7 +32782,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
diff --git a/source/be/readlicense_oo/docs.po b/source/be/readlicense_oo/docs.po
index 0bf06f036e1..426ce45e80d 100644
--- a/source/be/readlicense_oo/docs.po
+++ b/source/be/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: docs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-03-29 12:21+0000\n"
+"PO-Revision-Date: 2017-03-30 13:09+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490790101.000000\n"
+"X-POOTLE-MTIME: 1490879372.000000\n"
#: readme.xrm
#, fuzzy
@@ -643,7 +643,6 @@ msgid "Only shortcut keys (key combinations) not used by the operating system ca
msgstr "Толькі тыя клавіятурныя скароты (спалучэнні клавіш), што не выкарыстоўваюцца аперацыйнай сістэмай, могуць быць выкарыстаны ў ${PRODUCTNAME}. Калі спалучэнне клавіш у ${PRODUCTNAME} не працуе так, яка апісана ў даведцы ${PRODUCTNAME}, праверце, ці не выкарыстаны ўжо гэтыя скароты аперацыйнай сістэмай. Каб развязаць падобныя канфлікты, вы можаце змяніць спалучэнні, вызначаныя вашай аперацыйнай сістэмай. Як варыянт, вы можаце змяніць амаль кожны скарот у ${PRODUCTNAME}. Каб атрымаць больш інфармацыі па гэтай тэме, звярніцеся да даведкі ${PRODUCTNAME} ці да даведкі аперацыйнай сістэмы."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"mackeys1\n"
diff --git a/source/be/reportdesign/uiconfig/dbreport/ui.po b/source/be/reportdesign/uiconfig/dbreport/ui.po
index a9fa684159a..5c7dd2ba919 100644
--- a/source/be/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/be/reportdesign/uiconfig/dbreport/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 19:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:09+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462129860.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490879382.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help"
-msgstr ""
+msgstr "Даведка"
#: pagedialog.ui
msgctxt ""
diff --git a/source/be/sc/source/ui/src.po b/source/be/sc/source/ui/src.po
index f9fb0150939..beb8203c102 100644
--- a/source/be/sc/source/ui/src.po
+++ b/source/be/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-03-29 12:51+0000\n"
+"PO-Revision-Date: 2017-04-04 17:13+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490791865.000000\n"
+"X-POOTLE-MTIME: 1491326035.000000\n"
#: filter.src
msgctxt ""
@@ -3719,6 +3719,7 @@ msgstr ""
"Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
diff --git a/source/be/sc/uiconfig/scalc/ui.po b/source/be/sc/uiconfig/scalc/ui.po
index 47431af60f3..4bb9b983b78 100644
--- a/source/be/sc/uiconfig/scalc/ui.po
+++ b/source/be/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-29 12:54+0000\n"
+"PO-Revision-Date: 2017-04-04 17:15+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792094.000000\n"
+"X-POOTLE-MTIME: 1491326128.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -437,6 +437,9 @@ msgid ""
"\n"
"Select 'Protect Sheet' from the 'Tools' menu."
msgstr ""
+"Засцярога клеткі дзейнічае толькі пасля ўстанаўлення засцярогі бягучага аркуша\n"
+"\n"
+"Выберыце 'Засцерагчы аркуш' у меню 'Прылады'."
#: cellprotectionpage.ui
msgctxt ""
@@ -1675,7 +1678,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes."
-msgstr ""
+msgstr "Ёсць спрэчкі паміж змяненнямі ў гэтым аркушы супольнага карыстання. Спрэчкі павінны быць развязаныя перад запісам аркуша. Можна замацаваць або свае, або чужыя змяненні."
#: conflictsdialog.ui
msgctxt ""
@@ -4424,7 +4427,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш"
#: functionpanel.ui
msgctxt ""
@@ -6555,7 +6558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш"
#: notebookbar_groups.ui
msgctxt ""
@@ -7033,7 +7036,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Spreadsheet"
-msgstr ""
+msgstr "Новы разліковы аркуш"
#: optdlg.ui
msgctxt ""
@@ -12876,7 +12879,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Helplines _while moving"
-msgstr ""
+msgstr "Лініі-падказкі _пры перамяшчэнні"
#: tpviewpage.ui
msgctxt ""
@@ -13343,7 +13346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Input Help"
-msgstr ""
+msgstr "Даведка па ўводзе"
#: validationdialog.ui
msgctxt ""
@@ -13379,7 +13382,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Input help:"
-msgstr ""
+msgstr "_Даведка па ўводзе:"
#: validationhelptabpage.ui
msgctxt ""
diff --git a/source/be/scp2/source/ooo.po b/source/be/scp2/source/ooo.po
index e3facd549c2..3fe435d2dab 100644
--- a/source/be/scp2/source/ooo.po
+++ b/source/be/scp2/source/ooo.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:09+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:38+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652185.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491323932.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3705,7 +3705,7 @@ msgctxt ""
"STR_NAME_MODULE_DICTIONARIES\n"
"LngText.text"
msgid "Dictionaries"
-msgstr "Dictionaries"
+msgstr "Слоўнікі"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/be/sd/uiconfig/simpress/ui.po b/source/be/sd/uiconfig/simpress/ui.po
index 31ec384f5cb..6b1461af7a9 100644
--- a/source/be/sd/uiconfig/simpress/ui.po
+++ b/source/be/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:55+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1467652447.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491324943.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start with _Template Selection"
-msgstr ""
+msgstr "Пачаць з выбару шаблона"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2344,7 +2344,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable remote control"
-msgstr ""
+msgstr "Уключыць дыстанцыйнае кіраванне"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Impress Remote"
-msgstr ""
+msgstr "Дыстанцыйнае кіраванне Impress"
#: remotedialog.ui
msgctxt ""
diff --git a/source/be/sfx2/source/appl.po b/source/be/sfx2/source/appl.po
index 8f01f2f2d39..087ef423580 100644
--- a/source/be/sfx2/source/appl.po
+++ b/source/be/sfx2/source/appl.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: appl\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-29 13:02+0000\n"
+"PO-Revision-Date: 2017-04-04 17:00+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792521.000000\n"
+"X-POOTLE-MTIME: 1491325213.000000\n"
#: app.src
msgctxt ""
@@ -436,6 +436,7 @@ msgid "Recent Documents"
msgstr "Апошнія дакументы"
#: app.src
+#, fuzzy
msgctxt ""
"app.src\n"
"STR_QUERY_UPDATE_LINKS\n"
diff --git a/source/be/sfx2/source/dialog.po b/source/be/sfx2/source/dialog.po
index 7a9f09d0de3..c5d262500c2 100644
--- a/source/be/sfx2/source/dialog.po
+++ b/source/be/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 18:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457635812.000000\n"
+"X-POOTLE-MTIME: 1478887451.000000\n"
#: dialog.src
msgctxt ""
@@ -728,6 +728,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Іерархія"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/be/sfx2/source/doc.po b/source/be/sfx2/source/doc.po
index 7373cbb2b1b..09626c30430 100644
--- a/source/be/sfx2/source/doc.po
+++ b/source/be/sfx2/source/doc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: doc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-25 12:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 16:06+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,11 +13,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464178289.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490889985.000000\n"
#: doc.src
-#, fuzzy
msgctxt ""
"doc.src\n"
"STR_TEMPLATE_FILTER\n"
@@ -147,7 +146,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Выберыце шаблон"
#: doc.src
msgctxt ""
diff --git a/source/be/sfx2/uiconfig/ui.po b/source/be/sfx2/uiconfig/ui.po
index 33ae43c8c30..b7c6f4e7d9f 100644
--- a/source/be/sfx2/uiconfig/ui.po
+++ b/source/be/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-29 13:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 17:19+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792641.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491326384.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -441,7 +441,6 @@ msgid "Change _Password"
msgstr "Пароль"
#: documentinfopage.ui
-#, fuzzy
msgctxt ""
"documentinfopage.ui\n"
"templateft\n"
@@ -830,7 +829,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -851,7 +850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File:"
-msgstr ""
+msgstr "Ф_айл:"
#: linkeditdialog.ui
#, fuzzy
@@ -900,14 +899,13 @@ msgid "Categories"
msgstr ""
#: loadtemplatedialog.ui
-#, fuzzy
msgctxt ""
"loadtemplatedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Templates"
-msgstr "Шаблон:"
+msgstr "Шаблоны"
#: loadtemplatedialog.ui
msgctxt ""
@@ -1105,14 +1103,13 @@ msgid "_Printer"
msgstr "Прынтэр"
#: optprintpage.ui
-#, fuzzy
msgctxt ""
"optprintpage.ui\n"
"file\n"
"label\n"
"string.text"
msgid "Print to _file"
-msgstr "Друкаваць"
+msgstr "Друкаваць у ф_айл"
#: optprintpage.ui
#, fuzzy
@@ -1522,7 +1519,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Save As Template"
-msgstr ""
+msgstr "Запісаць як шаблон"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1531,7 +1528,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Name"
-msgstr ""
+msgstr "Назва шаблона"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1540,7 +1537,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Category"
-msgstr ""
+msgstr "Катэгорыя шаблона"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1549,7 +1546,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set as default template"
-msgstr ""
+msgstr "_Зрабіць тыповым шаблонам"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1624,14 +1621,13 @@ msgid "Wrap _around"
msgstr ""
#: securityinfopage.ui
-#, fuzzy
msgctxt ""
"securityinfopage.ui\n"
"readonly\n"
"label\n"
"string.text"
msgid "_Open file read-only"
-msgstr "Адкрыць"
+msgstr "_Адкрыць толькі для чытання"
#: securityinfopage.ui
#, fuzzy
@@ -1679,7 +1675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clear Recent Documents"
-msgstr ""
+msgstr "Ачысціць нядаўнія дакументы"
#: startcenter.ui
msgctxt ""
@@ -1688,7 +1684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Writer Templates"
-msgstr ""
+msgstr "Шаблоны Writer"
#: startcenter.ui
msgctxt ""
@@ -1697,7 +1693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calc Templates"
-msgstr ""
+msgstr "Шаблоны Calc"
#: startcenter.ui
msgctxt ""
@@ -1706,7 +1702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Impress Templates"
-msgstr ""
+msgstr "Шаблоны Impress"
#: startcenter.ui
msgctxt ""
@@ -1715,7 +1711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Draw Templates"
-msgstr ""
+msgstr "Шаблоны Draw"
#: startcenter.ui
msgctxt ""
@@ -1724,7 +1720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Templates"
-msgstr ""
+msgstr "Распарадзіцца шаблонамі"
#: startcenter.ui
msgctxt ""
@@ -1733,7 +1729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Open File"
-msgstr ""
+msgstr "_Адкрыць файл"
#: startcenter.ui
msgctxt ""
@@ -1742,7 +1738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remote File_s"
-msgstr ""
+msgstr "Адлеглыя файл_ы"
#: startcenter.ui
msgctxt ""
@@ -1751,27 +1747,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Recent Files"
-msgstr ""
+msgstr "_Нядаўнія файлы"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"templates_all\n"
"label\n"
"string.text"
msgid "T_emplates"
-msgstr "Шаблон:"
+msgstr "_Шаблоны"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"create_label\n"
"label\n"
"string.text"
msgid "Create:"
-msgstr "Пачаты:"
+msgstr "Стварыць:"
#: startcenter.ui
msgctxt ""
@@ -1780,7 +1774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Writer Document"
-msgstr ""
+msgstr "Дакумент _Writer"
#: startcenter.ui
msgctxt ""
@@ -1789,7 +1783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Calc Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш _Calc"
#: startcenter.ui
msgctxt ""
@@ -1834,7 +1828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "He_lp"
-msgstr ""
+msgstr "_Даведка"
#: startcenter.ui
msgctxt ""
@@ -1843,7 +1837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "E_xtensions"
-msgstr ""
+msgstr "_Прыстаўкі"
#: startcenter.ui
msgctxt ""
@@ -1861,7 +1855,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Files List"
-msgstr ""
+msgstr "Спіс нядаўніх файлаў"
#: startcenter.ui
msgctxt ""
@@ -1870,7 +1864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Templates List"
-msgstr ""
+msgstr "Спіс шаблонаў"
#: templatecategorydlg.ui
msgctxt ""
@@ -1909,14 +1903,13 @@ msgid "None"
msgstr ""
#: templatedlg.ui
-#, fuzzy
msgctxt ""
"templatedlg.ui\n"
"TemplateDialog\n"
"title\n"
"string.text"
msgid "Templates"
-msgstr "Шаблон:"
+msgstr "Шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -1970,7 +1963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template List"
-msgstr ""
+msgstr "Спіс шаблонаў"
#: templatedlg.ui
msgctxt ""
@@ -1988,7 +1981,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Аглядаць шаблоны ў сеціве"
#: templatedlg.ui
msgctxt ""
@@ -2015,7 +2008,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Templates"
-msgstr ""
+msgstr "Перамясціць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2033,7 +2026,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Export Templates"
-msgstr ""
+msgstr "Экспартаваць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2051,7 +2044,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Import Templates"
-msgstr ""
+msgstr "Імпартаваць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2078,7 +2071,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Spreadsheets"
-msgstr ""
+msgstr "Разліковыя аркушы"
#: templatedlg.ui
msgctxt ""
diff --git a/source/be/svl/source/misc.po b/source/be/svl/source/misc.po
index 591fc321972..b16f7457455 100644
--- a/source/be/svl/source/misc.po
+++ b/source/be/svl/source/misc.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\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:02+0100\n"
-"PO-Revision-Date: 2013-07-24 22:52+0300\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-03-30 16:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490890298.000000\n"
#: mediatyp.src
msgctxt ""
@@ -438,7 +440,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_TEMPLATE\n"
"string.text"
msgid "%PRODUCTNAME Template"
-msgstr "%PRODUCTNAME Template"
+msgstr "Шаблон %PRODUCTNAME"
#: mediatyp.src
msgctxt ""
diff --git a/source/be/svtools/source/dialogs.po b/source/be/svtools/source/dialogs.po
index a24c571f28d..19c8cdc178f 100644
--- a/source/be/svtools/source/dialogs.po
+++ b/source/be/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 18:03+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440525783.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Фарматаваны тэкст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/be/svtools/source/misc.po b/source/be/svtools/source/misc.po
index 71e6f87044c..3321978a369 100644
--- a/source/be/svtools/source/misc.po
+++ b/source/be/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-29 13:16+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490793388.000000\n"
#: imagemgr.src
@@ -3903,6 +3903,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/be/svx/source/stbctrls.po b/source/be/svx/source/stbctrls.po
index 748ab16f74e..59374420506 100644
--- a/source/be/svx/source/stbctrls.po
+++ b/source/be/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: stbctrls\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:51+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845510.000000\n"
+"X-POOTLE-MTIME: 1478889081.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/be/svx/uiconfig/ui.po b/source/be/svx/uiconfig/ui.po
index 472f6b15d04..9c56bb91928 100644
--- a/source/be/svx/uiconfig/ui.po
+++ b/source/be/svx/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2016-12-01 12:30+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 17:20+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480595422.000000\n"
+"X-POOTLE-MTIME: 1491326446.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -938,7 +938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent"
-msgstr ""
+msgstr "Нядаўняе"
#: colorwindow.ui
msgctxt ""
@@ -5154,16 +5154,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
@@ -5226,7 +5226,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Выключыць усе прыстаўкі карыстальніка"
#: safemodedialog.ui
msgctxt ""
@@ -5244,7 +5244,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extensions"
-msgstr ""
+msgstr "Прыстаўкі"
#: safemodedialog.ui
msgctxt ""
diff --git a/source/be/sw/uiconfig/swriter/ui.po b/source/be/sw/uiconfig/swriter/ui.po
index ea1ecf77ba9..dec38fd4cf0 100644
--- a/source/be/sw/uiconfig/swriter/ui.po
+++ b/source/be/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-29 13:58+0000\n"
+"PO-Revision-Date: 2017-04-04 17:01+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490795910.000000\n"
+"X-POOTLE-MTIME: 1491325309.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -676,14 +676,13 @@ msgid "_Path..."
msgstr "Шлях..."
#: autotext.ui
-#, fuzzy
msgctxt ""
"autotext.ui\n"
"relfile\n"
"label\n"
"string.text"
msgid "_File system"
-msgstr "Файлавая сістэма"
+msgstr "Ф_айлавая сістэма"
#: autotext.ui
msgctxt ""
@@ -2958,7 +2957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: editsectiondialog.ui
msgctxt ""
@@ -7685,7 +7684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "From a _template"
-msgstr ""
+msgstr "Паводл_е шаблона"
#: mailmergedialog.ui
msgctxt ""
@@ -8777,7 +8776,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start from a t_emplate"
-msgstr ""
+msgstr "Пачаць з шаблона"
#: mmselectpage.ui
msgctxt ""
@@ -8786,7 +8785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start fro_m a recently saved starting document"
-msgstr ""
+msgstr "Пачаць з нядаўна запісанага пачатковага дакументу"
#: mmselectpage.ui
#, fuzzy
@@ -13226,7 +13225,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: picturepage.ui
msgctxt ""
@@ -14266,7 +14265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: sectionpage.ui
#, fuzzy
@@ -17484,7 +17483,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File"
-msgstr ""
+msgstr "Ф_айл"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/be/swext/mediawiki/help.po b/source/be/swext/mediawiki/help.po
index bfb1b39d844..2fb93049b74 100644
--- a/source/be/swext/mediawiki/help.po
+++ b/source/be/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: help\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-29 14:02+0000\n"
+"PO-Revision-Date: 2017-04-04 17:08+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796132.000000\n"
+"X-POOTLE-MTIME: 1491325680.000000\n"
#: help.tree
msgctxt ""
@@ -224,7 +224,7 @@ msgctxt ""
"par_id3514206\n"
"help.text"
msgid "Open a Writer document."
-msgstr "Open a Writer document."
+msgstr "Адкрыйце новы дакумент."
#: wiki.xhp
msgctxt ""
diff --git a/source/be/sysui/desktop/share.po b/source/be/sysui/desktop/share.po
index 113e82539d5..e4aa760ba0b 100644
--- a/source/be/sysui/desktop/share.po
+++ b/source/be/sysui/desktop/share.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: share\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
-"PO-Revision-Date: 2015-05-11 23:34+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:08+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1431387253.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325713.000000\n"
#: documents.ulf
msgctxt ""
@@ -389,7 +389,6 @@ msgid "Microsoft Excel Worksheet"
msgstr "Разліковы аркуш Microsoft Excel"
#: launcher_comment.ulf
-#, fuzzy
msgctxt ""
"launcher_comment.ulf\n"
"writer\n"
diff --git a/source/be/uui/source.po b/source/be/uui/source.po
index e5222aa4271..8060cc8580c 100644
--- a/source/be/uui/source.po
+++ b/source/be/uui/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2017-03-29 14:07+0000\n"
+"PO-Revision-Date: 2017-04-04 19:30+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796442.000000\n"
+"X-POOTLE-MTIME: 1491334208.000000\n"
#: alreadyopen.src
-#, fuzzy
msgctxt ""
"alreadyopen.src\n"
"STR_ALREADYOPEN_TITLE\n"
@@ -872,7 +871,7 @@ msgctxt ""
"STR_LOCKFAILED_TITLE\n"
"string.text"
msgid "Document Could Not Be Locked"
-msgstr ""
+msgstr "Немагчыма заблакаваць дакумент"
#: lockfailed.src
msgctxt ""
@@ -888,7 +887,7 @@ msgctxt ""
"STR_LOCKFAILED_DONTSHOWAGAIN\n"
"string.text"
msgid "~Do not show this message again"
-msgstr ""
+msgstr "~Больш не паказваць гэта паведамленне"
#: nameclashdlg.src
msgctxt ""
@@ -916,7 +915,7 @@ msgctxt ""
"STR_SAME_NAME_USED\n"
"string.text"
msgid "Please provide a different file name!"
-msgstr ""
+msgstr "Дайце іншую назву файлу!"
#: openlocked.src
msgctxt ""
@@ -947,13 +946,12 @@ msgstr ""
"\n"
#: openlocked.src
-#, fuzzy
msgctxt ""
"openlocked.src\n"
"STR_OPENLOCKED_OPENREADONLY_BTN\n"
"string.text"
msgid "Open ~Read-Only"
-msgstr "Адкрыць толькі для чытання"
+msgstr "Адкрыць толь~кі для чытання"
#: openlocked.src
msgctxt ""
@@ -977,7 +975,7 @@ msgctxt ""
"STR_ENTER_PASSWORD_TO_OPEN\n"
"string.text"
msgid "Enter password to open file: \n"
-msgstr ""
+msgstr "Упішыце пароль, каб адкрыць файл: \n"
#: passworddlg.src
msgctxt ""
@@ -985,7 +983,7 @@ msgctxt ""
"STR_ENTER_PASSWORD_TO_MODIFY\n"
"string.text"
msgid "Enter password to modify file: \n"
-msgstr ""
+msgstr "Упішыце пароль, каб змяніць файл: \n"
#: passworddlg.src
msgctxt ""
@@ -993,7 +991,7 @@ msgctxt ""
"STR_ENTER_SIMPLE_PASSWORD\n"
"string.text"
msgid "Enter password: "
-msgstr ""
+msgstr "Увядзіце пароль:"
#: passworddlg.src
msgctxt ""
@@ -1001,7 +999,7 @@ msgctxt ""
"STR_CONFIRM_SIMPLE_PASSWORD\n"
"string.text"
msgid "Confirm password: "
-msgstr ""
+msgstr "Яшчэ раз пароль:"
#: passworddlg.src
msgctxt ""
@@ -1009,7 +1007,7 @@ msgctxt ""
"STR_TITLE_CREATE_PASSWORD\n"
"string.text"
msgid "Set Password"
-msgstr ""
+msgstr "Задаць пароль"
#: passworddlg.src
msgctxt ""
@@ -1017,7 +1015,7 @@ msgctxt ""
"STR_TITLE_ENTER_PASSWORD\n"
"string.text"
msgid "Enter Password"
-msgstr ""
+msgstr "Увядзіце пароль"
#: passworddlg.src
msgctxt ""
@@ -1025,7 +1023,7 @@ msgctxt ""
"STR_PASSWORD_MISMATCH\n"
"string.text"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr ""
+msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі."
#: passworderrs.src
msgctxt ""
@@ -1068,7 +1066,6 @@ msgid "The password confirmation does not match."
msgstr "Не супадаюць пароль і ягоны паўтор."
#: trylater.src
-#, fuzzy
msgctxt ""
"trylater.src\n"
"STR_TRYLATER_TITLE\n"
@@ -1098,7 +1095,6 @@ msgstr ""
"\n"
#: trylater.src
-#, fuzzy
msgctxt ""
"trylater.src\n"
"STR_TRYLATER_RETRYSAVING_BTN\n"
diff --git a/source/be/uui/uiconfig/ui.po b/source/be/uui/uiconfig/ui.po
index 5496353610c..286a31f767c 100644
--- a/source/be/uui/uiconfig/ui.po
+++ b/source/be/uui/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-25 12:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:36+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464178486.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491334609.000000\n"
#: authfallback.ui
msgctxt ""
@@ -62,14 +62,13 @@ msgid "_Use system credentials"
msgstr ""
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"remember\n"
"label\n"
"string.text"
msgid "_Remember password"
-msgstr "Паўтарыце ўвод пароля:"
+msgstr "Памятаць пароль"
#: logindialog.ui
msgctxt ""
@@ -78,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ccount:"
-msgstr ""
+msgstr "Уліковы запі_с:"
#: logindialog.ui
msgctxt ""
@@ -87,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pass_word:"
-msgstr ""
+msgstr "Пароль:"
#: logindialog.ui
msgctxt ""
@@ -96,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name:"
-msgstr ""
+msgstr "Імя карыстальніка:"
#: logindialog.ui
msgctxt ""
@@ -105,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Path:"
-msgstr ""
+msgstr "_Шлях:"
#: logindialog.ui
msgctxt ""
@@ -114,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "Агляд..."
#: logindialog.ui
msgctxt ""
@@ -176,7 +175,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME - Security Warning"
-msgstr ""
+msgstr "%PRODUCTNAME - папярэджанне пра бяспеку"
#: macrowarnmedium.ui
msgctxt ""
@@ -185,7 +184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Enable Macros"
-msgstr ""
+msgstr "Дазволіць макрасы"
#: macrowarnmedium.ui
msgctxt ""
@@ -194,7 +193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Disable Macros"
-msgstr ""
+msgstr "Не дазваляць макрасы"
#: macrowarnmedium.ui
msgctxt ""
@@ -203,7 +202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The document contains document macros signed by:"
-msgstr ""
+msgstr "Дакумент утрымлівае макрасы, падпісаныя:"
#: macrowarnmedium.ui
msgctxt ""
@@ -212,7 +211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The document contains document macros."
-msgstr ""
+msgstr "Дакумент утрымлівае макрасы."
#: macrowarnmedium.ui
msgctxt ""
@@ -221,7 +220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View Signatures…"
-msgstr ""
+msgstr "Паказаць подпісы..."
#: macrowarnmedium.ui
msgctxt ""
@@ -239,7 +238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Always trust macros from this source"
-msgstr ""
+msgstr "Заўсёды давяраць макрасам з гэтай крыніцы"
#: masterpassworddlg.ui
msgctxt ""
@@ -266,7 +265,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Set Password"
-msgstr ""
+msgstr "Задаць пароль"
#: setmasterpassworddlg.ui
msgctxt ""
@@ -320,7 +319,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "File Exists"
-msgstr ""
+msgstr "Файл існуе"
#: simplenameclash.ui
msgctxt ""
@@ -329,7 +328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace"
-msgstr ""
+msgstr "Замяніць"
#: simplenameclash.ui
msgctxt ""
@@ -338,7 +337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename"
-msgstr ""
+msgstr "Перайменаваць"
#: sslwarndialog.ui
msgctxt ""
@@ -347,7 +346,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Security Warning: "
-msgstr ""
+msgstr "Папярэджанне бяспекі: "
#: sslwarndialog.ui
msgctxt ""
@@ -356,7 +355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Continue"
-msgstr ""
+msgstr "Працягнуць"
#: sslwarndialog.ui
msgctxt ""
@@ -365,7 +364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cancel Connection"
-msgstr ""
+msgstr "Разарваць злучэнне"
#: sslwarndialog.ui
msgctxt ""
@@ -374,7 +373,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View Certificate"
-msgstr ""
+msgstr "Паказаць сертыфікат"
#: unknownauthdialog.ui
msgctxt ""
@@ -383,7 +382,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Website Certified by an Unknown Authority"
-msgstr ""
+msgstr "Пляцоўка сертыфікавана невядомым кіраўніцтвам (CA)"
#: unknownauthdialog.ui
msgctxt ""
@@ -392,7 +391,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accept this certificate temporarily for this session"
-msgstr ""
+msgstr "Прыняць сертыфікат на час гэтага сеансу"
#: unknownauthdialog.ui
msgctxt ""
@@ -401,7 +400,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Do not accept this certificate and do not connect to this Web site"
-msgstr ""
+msgstr "Не прымаць гэты сертыфікат і не далучацца да гэтай пляцоўкі Сеціва"
#: unknownauthdialog.ui
msgctxt ""
@@ -410,4 +409,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Examine Certificate…"
-msgstr ""
+msgstr "Праверыць сертыфікат…"
diff --git a/source/be/vcl/source/src.po b/source/be/vcl/source/src.po
index 0882b81a653..973bdd29547 100644
--- a/source/be/vcl/source/src.po
+++ b/source/be/vcl/source/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 19:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462130184.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878864.000000\n"
#: app.src
msgctxt ""
@@ -154,7 +154,7 @@ msgctxt ""
"SV_BUTTONTEXT_HELP\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: btntext.src
#, fuzzy
diff --git a/source/be/wizards/source/euro.po b/source/be/wizards/source/euro.po
index 34eccf5e3b0..9ea778243e2 100644
--- a/source/be/wizards/source/euro.po
+++ b/source/be/wizards/source/euro.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: euro\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-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-11 23:34+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431387292.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878868.000000\n"
#: euro.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STEP_ZERO + 1\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: euro.src
msgctxt ""
diff --git a/source/be/wizards/source/formwizard.po b/source/be/wizards/source/formwizard.po
index b75b4425873..471bd1b87cc 100644
--- a/source/be/wizards/source/formwizard.po
+++ b/source/be/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: formwizard\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2017-03-29 14:09+0000\n"
+"PO-Revision-Date: 2017-03-30 16:13+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796581.000000\n"
+"X-POOTLE-MTIME: 1490890386.000000\n"
#: dbwizres.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_COMMON_START + 15\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: dbwizres.src
msgctxt ""
@@ -263,13 +263,12 @@ msgid "No connection to the database could be established."
msgstr "Не ўдалося наладзіць далучэння да базы даных."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_COMMON_START + 20\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: dbwizres.src
msgctxt ""
@@ -5258,13 +5257,12 @@ msgid "Make ~manual changes to this agenda template"
msgstr "Зрабіць адвольныя змены ў гэтым шаблоне парадку дня"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +3\n"
"string.text"
msgid "Template name:"
-msgstr "Назва шаблону:"
+msgstr "Назва шаблона:"
#: dbwizres.src
#, fuzzy
@@ -5325,7 +5323,6 @@ msgid "Please select the names you wish to include in your agenda template"
msgstr "Вызначце імёны, якія хочаце ўлучыць у ваш шаблон парадку дня"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +11\n"
diff --git a/source/be/wizards/source/importwizard.po b/source/be/wizards/source/importwizard.po
index 85930498bfd..2dbd4b64e40 100644
--- a/source/be/wizards/source/importwizard.po
+++ b/source/be/wizards/source/importwizard.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: importwizard\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-10 10:39+0200\n"
-"PO-Revision-Date: 2013-07-24 22:52+0300\n"
-"Last-Translator: \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-22 23:40+0200\n"
+"PO-Revision-Date: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878885.000000\n"
#: importwi.src
msgctxt ""
@@ -21,7 +22,7 @@ msgctxt ""
"sHelpButton\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: importwi.src
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 4612b809830..62f6827a123 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-28 12:51+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:33+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1488286315.000000\n"
+"X-POOTLE-MTIME: 1492079635.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "© 2000–2015 сътрудниците на LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "© 2000–2017 сътрудниците на LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 94c05e6a365..f970a09409b 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-13 08:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
@@ -5678,7 +5678,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5686,7 +5686,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 07cb3b6cfd4..212977e16ed 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-12-02 11:16+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bg/sfx2/source/dialog.po b/source/bg/sfx2/source/dialog.po
index 7c2fd45ef52..07ad53d1c8c 100644
--- a/source/bg/sfx2/source/dialog.po
+++ b/source/bg/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-22 22:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485122780.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Йерархично"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bg/sfx2/uiconfig/ui.po b/source/bg/sfx2/uiconfig/ui.po
index b53b5267072..7209622b471 100644
--- a/source/bg/sfx2/uiconfig/ui.po
+++ b/source/bg/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-23 01:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485133237.000000\n"
+"X-POOTLE-MTIME: 1492079672.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Всички споменати запазени и регистрирани марки са собственост на съответните страни.\n"
"\n"
-"© 2000–2016 разработчиците на LibreOffice. Всички права запазени.\n"
+"© 2000–2017 разработчиците на LibreOffice. Всички права запазени.\n"
"\n"
"Продуктът е създаден от %OOOVENDOR на базата на OpenOffice.org, © 2000–2011 Oracle и/или партньорите ѝ. %OOOVENDOR благодари на всички членове на общността, за подробности вижте http://www.libreoffice.org/ ."
diff --git a/source/bg/svtools/source/dialogs.po b/source/bg/svtools/source/dialogs.po
index 0a5df96d4ad..ce38d0ab434 100644
--- a/source/bg/svtools/source/dialogs.po
+++ b/source/bg/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-09-12 00:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442017767.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492079685.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Форматиран текст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Форматиран текст [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bg/svtools/source/misc.po b/source/bg/svtools/source/misc.po
index a5735c1fa04..1f4d8b5a728 100644
--- a/source/bg/svtools/source/misc.po
+++ b/source/bg/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-19 23:33+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484868789.000000\n"
+"X-POOTLE-MTIME: 1492079691.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Унгарски (унгарски руни)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Английски (Малайзия)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bg/svx/source/dialog.po b/source/bg/svx/source/dialog.po
index 687017480d0..ab992dec25a 100644
--- a/source/bg/svx/source/dialog.po
+++ b/source/bg/svx/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-16 15:13+0000\n"
+"PO-Revision-Date: 2017-04-13 10:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487257986.000000\n"
+"X-POOTLE-MTIME: 1492080220.000000\n"
#: SafeMode.src
msgctxt ""
@@ -1413,7 +1413,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN\n"
"string.text"
msgid "Pattern"
-msgstr ""
+msgstr "Шарка"
#: sdstring.src
msgctxt ""
@@ -1421,7 +1421,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN_UNTITLED\n"
"string.text"
msgid "Untitled Pattern"
-msgstr ""
+msgstr "Шарка без име"
#: sdstring.src
msgctxt ""
@@ -2717,7 +2717,7 @@ msgctxt ""
"RID_SVXSTR_HATCH0\n"
"string.text"
msgid "Black 45 Degrees Wide"
-msgstr ""
+msgstr "Черна, 45 градуса, рядка"
#: sdstring.src
msgctxt ""
@@ -2725,7 +2725,7 @@ msgctxt ""
"RID_SVXSTR_HATCH1\n"
"string.text"
msgid "Black 45 Degrees"
-msgstr ""
+msgstr "Черна, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2733,7 +2733,7 @@ msgctxt ""
"RID_SVXSTR_HATCH2\n"
"string.text"
msgid "Black -45 Degrees"
-msgstr ""
+msgstr "Черна, -45 градуса"
#: sdstring.src
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"RID_SVXSTR_HATCH3\n"
"string.text"
msgid "Black 90 Degrees"
-msgstr ""
+msgstr "Черна, 90 градуса"
#: sdstring.src
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"RID_SVXSTR_HATCH4\n"
"string.text"
msgid "Red Crossed 45 Degrees"
-msgstr ""
+msgstr "Червена, кръстосана, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"RID_SVXSTR_HATCH5\n"
"string.text"
msgid "Red Crossed 0 Degrees"
-msgstr ""
+msgstr "Червена, кръстосана, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -2765,7 +2765,7 @@ msgctxt ""
"RID_SVXSTR_HATCH6\n"
"string.text"
msgid "Blue Crossed 45 Degrees"
-msgstr ""
+msgstr "Синя, кръстосана, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2773,7 +2773,7 @@ msgctxt ""
"RID_SVXSTR_HATCH7\n"
"string.text"
msgid "Blue Crossed 0 Degrees"
-msgstr ""
+msgstr "Синя, кръстосана, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -2781,7 +2781,7 @@ msgctxt ""
"RID_SVXSTR_HATCH8\n"
"string.text"
msgid "Blue Triple 90 Degrees"
-msgstr ""
+msgstr "Синя, тройна, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2789,7 +2789,7 @@ msgctxt ""
"RID_SVXSTR_HATCH9\n"
"string.text"
msgid "Black 0 Degrees"
-msgstr ""
+msgstr "Черна, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"Extra Small (1/16\")\n"
"itemlist.text"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Съвсем малко (1/16\")"
#: spacing.src
msgctxt ""
@@ -3635,7 +3635,7 @@ msgctxt ""
"Small (1/8\")\n"
"itemlist.text"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Малко (1/8\")"
#: spacing.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Средно малко (1/4\")"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Средно (3/8\")"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Средно голямо (1/2\")"
#: spacing.src
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"Large (3/4\")\n"
"itemlist.text"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Голямо (3/4\")"
#: spacing.src
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Extra Large (1\")\n"
"itemlist.text"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Много голямо (1\")"
#: srchdlg.src
msgctxt ""
diff --git a/source/bg/svx/source/stbctrls.po b/source/bg/svx/source/stbctrls.po
index 97b3776864f..d04723a7308 100644
--- a/source/bg/svx/source/stbctrls.po
+++ b/source/bg/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-16 15:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487258083.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Побиране на кадъра в текущия прозорец."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bg/svx/uiconfig/ui.po b/source/bg/svx/uiconfig/ui.po
index 3f977290ddf..0191103beb3 100644
--- a/source/bg/svx/uiconfig/ui.po
+++ b/source/bg/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 01:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485133562.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bn-IN/cui/uiconfig/ui.po b/source/bn-IN/cui/uiconfig/ui.po
index 454a0758dfd..a692cbc4846 100644
--- a/source/bn-IN/cui/uiconfig/ui.po
+++ b/source/bn-IN/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:49+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn_IN\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794955.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593260.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME একটি আধুনিক ও সহজে ব্যবহারযোগ্য ওপেন-সোর্স প্রডাক্টিভিটি স্যুট যার সাহায্যে ওয়ার্ড প্রসেসর, স্প্রেড-শিট, উপস্থাপনা ইত্যাদি প্রস্তুত করা যাবে।"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "কপিরাইট © 2000 - 2014 LibreOffice অবদানকারী।"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 64a04abafc9..2c0a2c79ec5 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-25 08:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "ফাংশন"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 877b47be32c..0dfb3c2e10f 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bn-IN/sfx2/source/dialog.po b/source/bn-IN/sfx2/source/dialog.po
index c7c47ed4fae..007e011dee5 100644
--- a/source/bn-IN/sfx2/source/dialog.po
+++ b/source/bn-IN/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467654347.000000\n"
+"X-POOTLE-MTIME: 1478950830.000000\n"
#: dialog.src
msgctxt ""
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bn-IN/sfx2/uiconfig/ui.po b/source/bn-IN/sfx2/uiconfig/ui.po
index e8a13f73c78..54442666614 100644
--- a/source/bn-IN/sfx2/uiconfig/ui.po
+++ b/source/bn-IN/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn_IN\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467654386.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595791.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -784,7 +784,6 @@ msgid "_Show License"
msgstr "লাইসেন্স প্রদর্শন (_S)"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -797,19 +796,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Mozilla পাবলিক লাইসেন্স, v. 2.0 -এর অংশ হিসাবে %PRODUCTNAME উপলব্ধ করানো হয়েছে। MPL -এর একটি অনুলিপি http://mozilla.org/MPL/2.0/ -এ পেতে যেতে পারবেন।\n"
-"\n"
-"তৃতীয় পক্ষ কোড অতিরিক্ত কপিরাইট বিজ্ঞপ্তি এবং লাইসেন্স শর্তাদি LICENSE.html ফাইলে উল্লিখিত সফ্টওয়্যারের অংশে প্রযোজ্য; সঠিক বিস্তারিতটি ইংরাজিতে দেখতে, লাইসেন্স দেখান বাছুন।\n"
-"\n"
-"এখানে উল্লিখিত সমস্ত ট্রেডমার্ক এবং নিবন্ধিত ট্রেডমার্ক তাদের সংশ্লিষ্ট মালিকদের।\n"
-"\n"
-"কপিরাইট © 2000, 2014 LibreOffice কন্ট্রিবিউটর। সকল অধিকার সংরক্ষিত।\n"
-"\n"
-"এই প্রোডাক্টটি তৈরি করেছে %OOOVENDOR, OpenOffice.org -এর উপরে ভিত্তি করে, যা 2000, 2011 Oracle এবং/অথবা তার অধীনস্তের কপিরাইট। %OOOVENDOR সকল কমিউনিটি সদস্যদের স্বীকৃতি দেয়, বিস্তারিত জানতে দয়া করে http://www.libreoffice.org/ দেখুন।"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/bn-IN/svtools/source/dialogs.po b/source/bn-IN/svtools/source/dialogs.po
index 0a1f5bc63c7..7a1c8024eb3 100644
--- a/source/bn-IN/svtools/source/dialogs.po
+++ b/source/bn-IN/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:05+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
"X-POOTLE-MTIME: 1440529551.000000\n"
@@ -340,6 +340,14 @@ msgstr "বিন্যাসিত লেখা [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bn-IN/svtools/source/misc.po b/source/bn-IN/svtools/source/misc.po
index 9d95683f8d3..4ed8961960c 100644
--- a/source/bn-IN/svtools/source/misc.po
+++ b/source/bn-IN/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467654601.000000\n"
+"X-POOTLE-MTIME: 1478951589.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bn-IN/svx/source/stbctrls.po b/source/bn-IN/svx/source/stbctrls.po
index 956c9cc22c9..fed491cf9cc 100644
--- a/source/bn-IN/svx/source/stbctrls.po
+++ b/source/bn-IN/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467654755.000000\n"
+"X-POOTLE-MTIME: 1478952573.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "স্লাইড বর্তমান উইন্ডোতে ধর
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bn-IN/svx/uiconfig/ui.po b/source/bn-IN/svx/uiconfig/ui.po
index e19c0d68a53..b5490b6409d 100644
--- a/source/bn-IN/svx/uiconfig/ui.po
+++ b/source/bn-IN/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5093,16 +5093,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bn/cui/uiconfig/ui.po b/source/bn/cui/uiconfig/ui.po
index edaefe908fb..d4167d3e981 100644
--- a/source/bn/cui/uiconfig/ui.po
+++ b/source/bn/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794562.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593092.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 350ddccabb3..82504f60468 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "ফাংশন"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 6f13f3f6058..f04523a7b23 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bn/sfx2/source/dialog.po b/source/bn/sfx2/source/dialog.po
index 5b64f9b5712..1163f375ef7 100644
--- a/source/bn/sfx2/source/dialog.po
+++ b/source/bn/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:19+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 08:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467652744.000000\n"
+"X-POOTLE-MTIME: 1478939685.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/bn/sfx2/uiconfig/ui.po b/source/bn/sfx2/uiconfig/ui.po
index 34c4931e33a..e16bfefd454 100644
--- a/source/bn/sfx2/uiconfig/ui.po
+++ b/source/bn/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652994.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594677.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/bn/svtools/source/dialogs.po b/source/bn/svtools/source/dialogs.po
index 4a6a44f79c1..2cd06b4c3e3 100644
--- a/source/bn/svtools/source/dialogs.po
+++ b/source/bn/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 17:57+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
"X-POOTLE-MTIME: 1440525439.000000\n"
@@ -340,6 +340,14 @@ msgstr "বিন্যাসিত লেখা [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bn/svtools/source/misc.po b/source/bn/svtools/source/misc.po
index 06f04dadf56..c76d74af36c 100644
--- a/source/bn/svtools/source/misc.po
+++ b/source/bn/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 08:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467653269.000000\n"
+"X-POOTLE-MTIME: 1478940569.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3899,6 +3899,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bn/svx/source/stbctrls.po b/source/bn/svx/source/stbctrls.po
index 999d110acaa..1a749042b09 100644
--- a/source/bn/svx/source/stbctrls.po
+++ b/source/bn/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:32+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467653523.000000\n"
+"X-POOTLE-MTIME: 1478941801.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bn/svx/uiconfig/ui.po b/source/bn/svx/uiconfig/ui.po
index 2be094d561c..b724ffa93fe 100644
--- a/source/bn/svx/uiconfig/ui.po
+++ b/source/bn/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bo/cui/uiconfig/ui.po b/source/bo/cui/uiconfig/ui.po
index aff91e72684..8eedac73a1c 100644
--- a/source/bo/cui/uiconfig/ui.po
+++ b/source/bo/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:41+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794487.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593048.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index 84a88b25dc9..51960614e0d 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5727,7 +5727,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 5d662ae57be..5ee51748ebe 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bo/sfx2/source/dialog.po b/source/bo/sfx2/source/dialog.po
index 5d7b455fb24..e4a07ae8dd6 100644
--- a/source/bo/sfx2/source/dialog.po
+++ b/source/bo/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656203.000000\n"
+"X-POOTLE-MTIME: 1478941881.000000\n"
#: dialog.src
msgctxt ""
@@ -731,6 +731,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "རིམ་པ་སྒྲིག་སྟངས།"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/bo/sfx2/uiconfig/ui.po b/source/bo/sfx2/uiconfig/ui.po
index c1285f6b506..855faa70d6b 100644
--- a/source/bo/sfx2/uiconfig/ui.po
+++ b/source/bo/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656303.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594689.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/bo/svtools/source/dialogs.po b/source/bo/svtools/source/dialogs.po
index 224720a9193..38a2f3a394e 100644
--- a/source/bo/svtools/source/dialogs.po
+++ b/source/bo/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 17:38+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440524313.000000\n"
#: addresstemplate.src
@@ -346,6 +346,14 @@ msgstr "བཅད་སྒྲིག་ཟིན་པའི་ཡི་གེ་
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bo/svtools/source/misc.po b/source/bo/svtools/source/misc.po
index 6abd564dfdf..3657b6c169b 100644
--- a/source/bo/svtools/source/misc.po
+++ b/source/bo/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:24+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656671.000000\n"
+"X-POOTLE-MTIME: 1478942651.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bo/svx/source/stbctrls.po b/source/bo/svx/source/stbctrls.po
index 5db69ef45c1..2c69143b1c6 100644
--- a/source/bo/svx/source/stbctrls.po
+++ b/source/bo/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656884.000000\n"
+"X-POOTLE-MTIME: 1478943934.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bo/svx/uiconfig/ui.po b/source/bo/svx/uiconfig/ui.po
index 29898c09477..9815966e1ef 100644
--- a/source/bo/svx/uiconfig/ui.po
+++ b/source/bo/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/br/cui/uiconfig/ui.po b/source/br/cui/uiconfig/ui.po
index 3d09a510079..8e62d711f7b 100644
--- a/source/br/cui/uiconfig/ui.po
+++ b/source/br/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-22 09:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-18 08:24+0000\n"
"Last-Translator: Tornoz <tornoz@laposte.net>\n"
"Language-Team: none\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490176227.000000\n"
+"X-POOTLE-MTIME: 1492503871.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Perzhiaded LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 Perzhiaded LibreOffice."
#: aboutdialog.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Barrennigoù"
#: areatabpage.ui
msgctxt ""
@@ -6161,7 +6161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Barrennigoù"
#: hatchpage.ui
msgctxt ""
@@ -7980,7 +7980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Stil"
#: menuassignpage.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons & Text"
-msgstr ""
+msgstr "Arlunioù ha testenn"
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons"
-msgstr ""
+msgstr "Arlunioù"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Testenn"
#: menuassignpage.ui
msgctxt ""
@@ -8061,7 +8061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Adderaouekaat"
#: menuassignpage.ui
msgctxt ""
@@ -8079,7 +8079,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove"
-msgstr ""
+msgstr "Lemel kuit"
#: menuassignpage.ui
msgctxt ""
@@ -8088,7 +8088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Command"
-msgstr ""
+msgstr "Ouzhpennañ un arc'had"
#: menuassignpage.ui
msgctxt ""
@@ -8097,7 +8097,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Ouzhpennañ un dispartier"
#: menuassignpage.ui
msgctxt ""
@@ -8106,7 +8106,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Submenu"
-msgstr ""
+msgstr "Ouzhpennañ un islañser"
#: menuassignpage.ui
msgctxt ""
@@ -8466,7 +8466,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Sifroù en anver:"
#: numberingformatpage.ui
msgctxt ""
@@ -9267,7 +9267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Taolennata da:"
#: numberingpositionpage.ui
msgctxt ""
@@ -10036,7 +10036,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Arabic (1, 2, 3…)"
-msgstr ""
+msgstr "Arabeg (1, 2,3…)"
#: optctlpage.ui
msgctxt ""
@@ -10045,7 +10045,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
-msgstr ""
+msgstr "Arabeg ar sav-heol (٣ ,٢ ,١…)"
#: optctlpage.ui
msgctxt ""
@@ -11026,7 +11026,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit Available language modules"
-msgstr ""
+msgstr "Embann ar molladoù yezh hegerz"
#: optlingupage.ui
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit User-defined dictionaries"
-msgstr ""
+msgstr "Embann geriadurioù an arveriad"
#: optlingupage.ui
msgctxt ""
diff --git a/source/br/sfx2/source/dialog.po b/source/br/sfx2/source/dialog.po
index b57b2ae3141..7915724bece 100644
--- a/source/br/sfx2/source/dialog.po
+++ b/source/br/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657119.000000\n"
+"X-POOTLE-MTIME: 1478955676.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Urzhaz"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/br/sfx2/uiconfig/ui.po b/source/br/sfx2/uiconfig/ui.po
index d4bbadfd0ef..5fecf977689 100644
--- a/source/br/sfx2/uiconfig/ui.po
+++ b/source/br/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-17 14:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468765209.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480598574.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Da hegerz eo bet lakaet %PRODUCTNAME dre dermenoù al Lañvaz foran Hollek e live izeloc'h GNU, handelv 2.0. Kavet e vez un eilad eus al lañvaz mod MLP e http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Menegoù diwar-benn gwirioù ar voneg savet gant trede strolladoù ha diwar-benn termenoù al lañvaz a c'hell bezañ arloet da lodennoù ar meziant a vez displeget er restr LICENSE.html ; dibabit Diskouez al Lañvaz evit gwelout ar munudoù e saozneg.\n"
-"\n"
-"An holl verkoù kenwerzhel hag ar merkoù marilhet zo d'o ferc'hennerion dezho.\n"
-"\n"
-"Copyright © 2000, 2016 perzhiaded LibreOffice. Pep gwir miret strizh.\n"
-"\n"
-"Krouet eo bet ar meziant-mañ gant %OOOVENDOR, diazezet war OpenOffice.org, a zo gant Copyright Oracle 2000, 2011 hag he stalioù mibion. %OOOVENDOR a drugareka izili holl ar gumuniezh, lennit http://www.libreoffice.org/ evit gouzout hiroc'h."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/br/svtools/source/dialogs.po b/source/br/svtools/source/dialogs.po
index 2bd574f6196..b4ddcf2581b 100644
--- a/source/br/svtools/source/dialogs.po
+++ b/source/br/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-10-16 17:10+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1445015459.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testenn mentrezhet [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/br/svtools/source/misc.po b/source/br/svtools/source/misc.po
index f9e0ed62420..9852ba7e668 100644
--- a/source/br/svtools/source/misc.po
+++ b/source/br/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:41+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657685.000000\n"
+"X-POOTLE-MTIME: 1478956584.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/br/svx/source/stbctrls.po b/source/br/svx/source/stbctrls.po
index 7c216091a4b..d13ed265c8e 100644
--- a/source/br/svx/source/stbctrls.po
+++ b/source/br/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657917.000000\n"
+"X-POOTLE-MTIME: 1478958031.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Lakaat an dreyonenn da genglotañ gant ar prenestr oberiant."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/br/svx/uiconfig/ui.po b/source/br/svx/uiconfig/ui.po
index e516145f8e1..8b528756d9d 100644
--- a/source/br/svx/uiconfig/ui.po
+++ b/source/br/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/brx/cui/uiconfig/ui.po b/source/brx/cui/uiconfig/ui.po
index a918b1e5b47..6ec78420854 100644
--- a/source/brx/cui/uiconfig/ui.po
+++ b/source/brx/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:58+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476795493.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594567.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/brx/sfx2/source/dialog.po b/source/brx/sfx2/source/dialog.po
index b2a5d206a08..2f40bde7019 100644
--- a/source/brx/sfx2/source/dialog.po
+++ b/source/brx/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 10:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656314.000000\n"
+"X-POOTLE-MTIME: 1478947789.000000\n"
#: dialog.src
msgctxt ""
@@ -720,6 +720,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "हायरार्चिकेल"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/brx/sfx2/uiconfig/ui.po b/source/brx/sfx2/uiconfig/ui.po
index 67c78ef5abb..82ea94f8a13 100644
--- a/source/brx/sfx2/uiconfig/ui.po
+++ b/source/brx/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656429.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596308.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/brx/svtools/source/dialogs.po b/source/brx/svtools/source/dialogs.po
index 01a32085fc3..79526ed8f9c 100644
--- a/source/brx/svtools/source/dialogs.po
+++ b/source/brx/svtools/source/dialogs.po
@@ -3,16 +3,16 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 18:17+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440526649.000000\n"
#: addresstemplate.src
@@ -338,6 +338,14 @@ msgstr "दाथाय दानाय फराय बिजाब (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/brx/svtools/source/misc.po b/source/brx/svtools/source/misc.po
index 7ca8d61c36c..98fb146ef41 100644
--- a/source/brx/svtools/source/misc.po
+++ b/source/brx/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 09:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462698260.000000\n"
+"X-POOTLE-MTIME: 1478948583.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3913,6 +3913,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/brx/svx/source/stbctrls.po b/source/brx/svx/source/stbctrls.po
index 1fce09d429f..16a846d2609 100644
--- a/source/brx/svx/source/stbctrls.po
+++ b/source/brx/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656942.000000\n"
+"X-POOTLE-MTIME: 1478949660.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/brx/svx/uiconfig/ui.po b/source/brx/svx/uiconfig/ui.po
index 1c96249eadb..f801e5f9dc9 100644
--- a/source/brx/svx/uiconfig/ui.po
+++ b/source/brx/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bs/cui/uiconfig/ui.po b/source/bs/cui/uiconfig/ui.po
index 982bc5514b8..06d1824f633 100644
--- a/source/bs/cui/uiconfig/ui.po
+++ b/source/bs/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476795775.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594815.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME je moderan, jednostavan za korištenje, paket produktivnosti otvorenog izvornog koda za obradu teksta, radnih listova, prezentacija i više."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Autorsko pravo © 2000 - 2014 LibreOffice doprinosioci."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index 372a766b176..711c6f74acd 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5699,22 +5699,20 @@ msgid "Functions"
msgstr "Funkcije"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 6c7c41f5963..cf93fced323 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bs/sfx2/source/dialog.po b/source/bs/sfx2/source/dialog.po
index 8e207280ace..ec2b8186ee0 100644
--- a/source/bs/sfx2/source/dialog.po
+++ b/source/bs/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:21+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 22:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656518.000000\n"
+"X-POOTLE-MTIME: 1478989781.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hijerarhijski"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bs/sfx2/uiconfig/ui.po b/source/bs/sfx2/uiconfig/ui.po
index eb53c665daf..7598caafdb8 100644
--- a/source/bs/sfx2/uiconfig/ui.po
+++ b/source/bs/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656710.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597431.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -791,7 +791,6 @@ msgid "_Show License"
msgstr "_Prikaži licencu"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -804,19 +803,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME je dostupan u skladu sa uslovima Mozilla Public License, v. 2.0. Kopija MPL licence može se naći na http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Treća dio Koda Dodatne napomene o autorskim pravima i uslove licenciranja primjenjene na dijelove Softvera su utvrđene u LICENSE.html datoteke, odaberite Pregled Licence za vidjeti tačne informacije na engleskom jeziku.\n"
-"\n"
-"Svi zaštitni znakovi i registrirani zaštitni znakovi navedeni u ovom dokumentu su vlasništvo njihovih autora.\n"
-"\n"
-"Copyright © 2000, 2013 LibreOffice saradnika i / ili njihovih podružnica. Sva prava pridržana.\n"
-"\n"
-"Ovaj proizvod je stvoren %OOOVENDOR, na osnovu OpenOffice.org, koji je Copyright 2000, 2011 Oracle i / ili njenih podružnica. %OOOVENDOR potvrđuje sve članove zajednice, pogledajte http://www.libreoffice.org/ za više detalja."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/bs/svtools/source/dialogs.po b/source/bs/svtools/source/dialogs.po
index 36d065a730d..2ceafb410b6 100644
--- a/source/bs/svtools/source/dialogs.po
+++ b/source/bs/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 20:42+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440535321.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formatirani tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bs/svtools/source/misc.po b/source/bs/svtools/source/misc.po
index 39d883ed4d0..98c41bf0d39 100644
--- a/source/bs/svtools/source/misc.po
+++ b/source/bs/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 22:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657091.000000\n"
+"X-POOTLE-MTIME: 1478990803.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bs/svx/source/stbctrls.po b/source/bs/svx/source/stbctrls.po
index b84725163b7..c364eecef8e 100644
--- a/source/bs/svx/source/stbctrls.po
+++ b/source/bs/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:34+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657298.000000\n"
+"X-POOTLE-MTIME: 1478992290.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bs/svx/uiconfig/ui.po b/source/bs/svx/uiconfig/ui.po
index a7c8beee4eb..0caca6c7dfe 100644
--- a/source/bs/svx/uiconfig/ui.po
+++ b/source/bs/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5105,16 +5105,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ca-valencia/cui/uiconfig/ui.po b/source/ca-valencia/cui/uiconfig/ui.po
index f01c3f3234f..6f496bec6aa 100644
--- a/source/ca-valencia/cui/uiconfig/ui.po
+++ b/source/ca-valencia/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ca-valencia\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476795996.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597250.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 – 2016 col·laboradors del LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index 2f158496032..02f944070db 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5720,22 +5720,20 @@ msgid "Functions"
msgstr "Funcions"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 13d7263910c..5c0058c532d 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 20:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ca-valencia/sfx2/source/dialog.po b/source/ca-valencia/sfx2/source/dialog.po
index d072a157add..d583e03902d 100644
--- a/source/ca-valencia/sfx2/source/dialog.po
+++ b/source/ca-valencia/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-13 02:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656831.000000\n"
+"X-POOTLE-MTIME: 1479004359.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Jeràrquic"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ca-valencia/sfx2/uiconfig/ui.po b/source/ca-valencia/sfx2/uiconfig/ui.po
index d4ae42b1b31..1fccc6a0340 100644
--- a/source/ca-valencia/sfx2/uiconfig/ui.po
+++ b/source/ca-valencia/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 14:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ca-valencia\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657092.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601071.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,19 +795,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"El %PRODUCTNAME és disponible sota els termes de la Llicència Pública de Mozilla, versió 2.0. Podeu obtindre una còpia de la llicència MPL en http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Les notes de copyright i termes de llicència adicionals aplicables al codi de tercers són disponibles en el fitxer LICENSE.html; premeu Mostra la llicència per a consultar els detalls exactes en anglés.\n"
-"\n"
-"Totes ls marques comercials i registrades mencionades ací són propietat dels seus respectius propietaris.\n"
-"\n"
-"Copyright © 2000 – 2016 dels col·laboradors del LibreOffice. Tots els drets reservats.\n"
-"\n"
-"Este producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb copyright 2000 i 2011 d'Oracle o dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtindre més detalls."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ca-valencia/svtools/source/dialogs.po b/source/ca-valencia/svtools/source/dialogs.po
index 5cb0adc7d33..c6ec52bd3ae 100644
--- a/source/ca-valencia/svtools/source/dialogs.po
+++ b/source/ca-valencia/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-04-29 07:17+0000\n"
"Last-Translator: Pau Iranzo <paugnu@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1461914269.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Text amb format (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ca-valencia/svtools/source/misc.po b/source/ca-valencia/svtools/source/misc.po
index f544dc9c4ac..22f3a3785b7 100644
--- a/source/ca-valencia/svtools/source/misc.po
+++ b/source/ca-valencia/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:37+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-13 02:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657474.000000\n"
+"X-POOTLE-MTIME: 1479005303.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3888,6 +3888,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ca-valencia/svx/source/stbctrls.po b/source/ca-valencia/svx/source/stbctrls.po
index e02288959d6..e06b4af5ee0 100644
--- a/source/ca-valencia/svx/source/stbctrls.po
+++ b/source/ca-valencia/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:41+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-13 03:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657718.000000\n"
+"X-POOTLE-MTIME: 1479006535.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Ajusta la dispositiva a la finestra actual."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ca-valencia/svx/uiconfig/ui.po b/source/ca-valencia/svx/uiconfig/ui.po
index 9cbbfb16c5c..51e7eb5c8e6 100644
--- a/source/ca-valencia/svx/uiconfig/ui.po
+++ b/source/ca-valencia/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 14:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5073,16 +5073,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ca/cui/uiconfig/ui.po b/source/ca/cui/uiconfig/ui.po
index 7a692e800cd..592f150918b 100644
--- a/source/ca/cui/uiconfig/ui.po
+++ b/source/ca/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-17 12:39+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:00+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484656794.000000\n"
+"X-POOTLE-MTIME: 1491991214.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 – 2016 col·laboradors del LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 – 2017 col·laboradors del LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 2da60f9d44c..ff39882559f 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-19 19:43+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1487533380.000000\n"
@@ -5686,22 +5686,20 @@ msgid "Functions"
msgstr "Funcions"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index a42ca7efada..75241aa05bc 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-11-16 12:26+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ca/sd/source/core.po b/source/ca/sd/source/core.po
index b1681d3e556..a88ba1a5129 100644
--- a/source/ca/sd/source/core.po
+++ b/source/ca/sd/source/core.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:29+0000\n"
+"PO-Revision-Date: 2017-04-12 10:01+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656965.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491991292.000000\n"
#: glob.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_MASTERSLIDE_NAME\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Diapositiva mestra"
#: glob.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_MASTERPAGE_NAME\n"
"string.text"
msgid "Master Page"
-msgstr ""
+msgstr "Pàgina mestra"
#: glob.src
msgctxt ""
@@ -677,7 +677,7 @@ msgctxt ""
"STR_SHRINK_FONT_SIZE\n"
"string.text"
msgid "Shrink font size"
-msgstr ""
+msgstr "Redueix la mida de lletra"
#: glob.src
msgctxt ""
@@ -685,4 +685,4 @@ msgctxt ""
"STR_GROW_FONT_SIZE\n"
"string.text"
msgid "Grow font size"
-msgstr ""
+msgstr "Augmenta la mida de lletra"
diff --git a/source/ca/sd/source/ui/app.po b/source/ca/sd/source/ui/app.po
index e5568024c02..6c2eea920f5 100644
--- a/source/ca/sd/source/ui/app.po
+++ b/source/ca/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-09-15 20:45+0000\n"
+"PO-Revision-Date: 2017-04-12 10:02+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1473972309.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491991333.000000\n"
#: popup.src
msgctxt ""
@@ -155,7 +155,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Tots els estils"
#: res_bmp.src
msgctxt ""
@@ -164,7 +164,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estils amagats"
#: res_bmp.src
msgctxt ""
@@ -173,7 +173,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estils aplicats"
#: res_bmp.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estils personalitzats"
#: res_bmp.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Tots els estils"
#: res_bmp.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estils amagats"
#: sdstring.src
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"STR_PRESENTATIONS_STYLE_FAMILY\n"
"string.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Estils de presentació"
#: strings.src
msgctxt ""
@@ -2450,7 +2450,7 @@ msgctxt ""
"STR_CUSTOMANIMATIONPANE\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animació"
#: strings.src
msgctxt ""
@@ -2602,7 +2602,7 @@ msgctxt ""
"STR_OBJECTS_TREE\n"
"string.text"
msgid "Page Tree"
-msgstr ""
+msgstr "Arbre de la pàgina"
#: toolbox.src
msgctxt ""
diff --git a/source/ca/sfx2/source/dialog.po b/source/ca/sfx2/source/dialog.po
index 069403cb9ca..33b17cc712e 100644
--- a/source/ca/sfx2/source/dialog.po
+++ b/source/ca/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-09 09:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:02+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483952790.000000\n"
+"X-POOTLE-MTIME: 1491991370.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Jeràrquic"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Mode format d'emplenament"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Estil nou a partir de la selecció"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Actualitza l'estil"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ca/sfx2/uiconfig/ui.po b/source/ca/sfx2/uiconfig/ui.po
index 9bd60a6c70a..7281930f4e6 100644
--- a/source/ca/sfx2/uiconfig/ui.po
+++ b/source/ca/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-09 12:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:04+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483964702.000000\n"
+"X-POOTLE-MTIME: 1491991444.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Totes ls marques comercials i registrades mencionades aquí són propietat dels seus respectius propietaris.\n"
"\n"
-"Copyright © 2000 – 2016 dels col·laboradors del LibreOffice. Tots els drets reservats.\n"
+"Copyright © 2000 – 2017 dels col·laboradors del LibreOffice. Tots els drets reservats.\n"
"\n"
"Aquest producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb copyright 2000 i 2011 d'Oracle o dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtenir més detalls."
diff --git a/source/ca/svtools/source/dialogs.po b/source/ca/svtools/source/dialogs.po
index 27f5a8e1123..131895d4e40 100644
--- a/source/ca/svtools/source/dialogs.po
+++ b/source/ca/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-05-23 08:40+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:00+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1463992847.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491991256.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Text amb format (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Text amb format [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ca/svtools/source/misc.po b/source/ca/svtools/source/misc.po
index e5716955caa..c11230ab178 100644
--- a/source/ca/svtools/source/misc.po
+++ b/source/ca/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-09 11:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:01+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483961425.000000\n"
+"X-POOTLE-MTIME: 1491991265.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "hongarès (alfabet rúnic)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "anglès (Malàisia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ca/svx/source/dialog.po b/source/ca/svx/source/dialog.po
index a3bf7795aff..82ebd262411 100644
--- a/source/ca/svx/source/dialog.po
+++ b/source/ca/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-23 08:18+0000\n"
+"PO-Revision-Date: 2017-04-05 10:41+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487837909.000000\n"
+"X-POOTLE-MTIME: 1491388865.000000\n"
#: SafeMode.src
msgctxt ""
@@ -2717,7 +2717,7 @@ msgctxt ""
"RID_SVXSTR_HATCH0\n"
"string.text"
msgid "Black 45 Degrees Wide"
-msgstr ""
+msgstr "Negre 45 graus ample"
#: sdstring.src
msgctxt ""
@@ -2725,7 +2725,7 @@ msgctxt ""
"RID_SVXSTR_HATCH1\n"
"string.text"
msgid "Black 45 Degrees"
-msgstr ""
+msgstr "Negre 45 graus"
#: sdstring.src
msgctxt ""
@@ -2733,7 +2733,7 @@ msgctxt ""
"RID_SVXSTR_HATCH2\n"
"string.text"
msgid "Black -45 Degrees"
-msgstr ""
+msgstr "Negre -45 graus"
#: sdstring.src
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"RID_SVXSTR_HATCH3\n"
"string.text"
msgid "Black 90 Degrees"
-msgstr ""
+msgstr "Negre 90 graus"
#: sdstring.src
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"RID_SVXSTR_HATCH4\n"
"string.text"
msgid "Red Crossed 45 Degrees"
-msgstr ""
+msgstr "Vermell encreuat 45 graus"
#: sdstring.src
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"RID_SVXSTR_HATCH5\n"
"string.text"
msgid "Red Crossed 0 Degrees"
-msgstr ""
+msgstr "Vermell encreuat 0 graus"
#: sdstring.src
msgctxt ""
@@ -2765,7 +2765,7 @@ msgctxt ""
"RID_SVXSTR_HATCH6\n"
"string.text"
msgid "Blue Crossed 45 Degrees"
-msgstr ""
+msgstr "Blau encreuat 45 graus"
#: sdstring.src
msgctxt ""
@@ -2773,7 +2773,7 @@ msgctxt ""
"RID_SVXSTR_HATCH7\n"
"string.text"
msgid "Blue Crossed 0 Degrees"
-msgstr ""
+msgstr "Blau encreuat 0 graus"
#: sdstring.src
msgctxt ""
@@ -2781,7 +2781,7 @@ msgctxt ""
"RID_SVXSTR_HATCH8\n"
"string.text"
msgid "Blue Triple 90 Degrees"
-msgstr ""
+msgstr "Blau triple 90 graus"
#: sdstring.src
msgctxt ""
@@ -2789,7 +2789,7 @@ msgctxt ""
"RID_SVXSTR_HATCH9\n"
"string.text"
msgid "Black 0 Degrees"
-msgstr ""
+msgstr "Negre 0 graus"
#: sdstring.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Mitjà petit (1/4\")"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Mitjà (3/8\")"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Mitjà gran (1/2\")"
#: spacing.src
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n"
"string.text"
msgid "Mongolian Supplement"
-msgstr ""
+msgstr "Suplement mongol"
#: ucsubset.src
msgctxt ""
diff --git a/source/ca/svx/source/stbctrls.po b/source/ca/svx/source/stbctrls.po
index 5b0ad75cf77..8d13f27821c 100644
--- a/source/ca/svx/source/stbctrls.po
+++ b/source/ca/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 08:18+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487837938.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Ajusta la dispositiva a la finestra actual."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ca/svx/uiconfig/ui.po b/source/ca/svx/uiconfig/ui.po
index b2833a64570..f684d79ed41 100644
--- a/source/ca/svx/uiconfig/ui.po
+++ b/source/ca/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-02-27 08:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-05 10:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488185238.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491388688.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -2972,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Cerca l'_anterior"
#: findreplacedialog.ui
msgctxt ""
@@ -2981,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Ne_xt"
-msgstr ""
+msgstr "Cerca el _següent"
#: findreplacedialog.ui
msgctxt ""
@@ -5075,20 +5075,20 @@ msgstr "_Continua en mode segur"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Surt"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Aplica els canvis i reinicia"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/cs/cui/uiconfig/ui.po b/source/cs/cui/uiconfig/ui.po
index e773cd0dc38..09ef050f9be 100644
--- a/source/cs/cui/uiconfig/ui.po
+++ b/source/cs/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-07 12:46+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483793160.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 přispěvatelé do LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/scalc/01.po b/source/cs/helpcontent2/source/text/scalc/01.po
index b2d50f41a8b..2247b5bf4f2 100644
--- a/source/cs/helpcontent2/source/text/scalc/01.po
+++ b/source/cs/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-09-16 17:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: NONE\n"
@@ -5678,7 +5678,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5686,7 +5686,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index 1a20eb511b5..9a612ba6f3a 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-09-16 17:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: NONE\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/cs/sfx2/source/dialog.po b/source/cs/sfx2/source/dialog.po
index 1e19af9e7f8..83202d70f86 100644
--- a/source/cs/sfx2/source/dialog.po
+++ b/source/cs/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-30 08:30+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483086620.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchicky"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/cs/sfx2/uiconfig/ui.po b/source/cs/sfx2/uiconfig/ui.po
index 61b2fda110a..8b976f09782 100644
--- a/source/cs/sfx2/uiconfig/ui.po
+++ b/source/cs/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-30 08:43+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483087402.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME je k dispozici za podmínek licence Mozilla Public License, v. 2.0, jejíž kopii naleznete na stránce http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Doplňkové údaje o autorských právech a licenčních podmínkách třetích stran vztahujících se na části tohoto programu naleznete v souboru LICENSE.html. Pokud se chcete seznámit s detaily, zvolte možnost Zobrazit licenci (informace pouze v angličtině).\n"
-"\n"
-"Všechny ochranné známky a registrované ochranné známky, které jsou zde zmíněny, jsou majetkem jejich vlastníků.\n"
-"\n"
-"Copyright © 2000–2016 přispěvatelé do LibreOffice. Všechna práva vyhrazena.\n"
-"\n"
-"Tento produkt vytvořila %OOOVENDOR na základě OpenOffice.org, který je Copyright 2000, 2011 Oracle a/nebo jeho pobočky. %OOOVENDOR děkuje všem členům komunity, podrobnosti naleznete na stránce http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/cs/svtools/source/dialogs.po b/source/cs/svtools/source/dialogs.po
index bf34e782aa4..7e33a188c0b 100644
--- a/source/cs/svtools/source/dialogs.po
+++ b/source/cs/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-04 22:01+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1457128879.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formátovaný text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/cs/svtools/source/misc.po b/source/cs/svtools/source/misc.po
index 271865f5b3e..2bf70b9621b 100644
--- a/source/cs/svtools/source/misc.po
+++ b/source/cs/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-17 10:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1479380203.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Maďarština (staromaďarské písmo)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/cs/svx/source/stbctrls.po b/source/cs/svx/source/stbctrls.po
index 93e67eea2b9..d454dd421f3 100644
--- a/source/cs/svx/source/stbctrls.po
+++ b/source/cs/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-07 09:20+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483780838.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Přizpůsobit snímek aktuálnímu oknu."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/cs/svx/uiconfig/ui.po b/source/cs/svx/uiconfig/ui.po
index 85163d89a16..6e49b6d192a 100644
--- a/source/cs/svx/uiconfig/ui.po
+++ b/source/cs/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 11:03+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483873385.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Pokračovat v nouzovém režimu"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "U_končit"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Použít změny a _restartovat"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/cy/cui/uiconfig/ui.po b/source/cy/cui/uiconfig/ui.po
index 0a75eafd4d8..ef04781d97d 100644
--- a/source/cy/cui/uiconfig/ui.po
+++ b/source/cy/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-19 10:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-07 08:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484822543.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491553222.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Hawlfraint © 2000 - 2016 cyfranwyr LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -9305,7 +9305,9 @@ msgctxt ""
msgid ""
"Minimum space between\n"
"numbering and text:"
-msgstr "Lleiafswm bwlch rhwng/nrhifo a thestun:"
+msgstr ""
+"Lleiafswm bylchu rhwng\n"
+"rhifo a'r testun:"
#: numberingpositionpage.ui
msgctxt ""
diff --git a/source/cy/sfx2/source/dialog.po b/source/cy/sfx2/source/dialog.po
index de746051d50..594af3ba087 100644
--- a/source/cy/sfx2/source/dialog.po
+++ b/source/cy/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-30 11:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483096840.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchaidd"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/cy/sfx2/uiconfig/ui.po b/source/cy/sfx2/uiconfig/ui.po
index 1694dff8e5d..ed5a4dfbd88 100644
--- a/source/cy/sfx2/uiconfig/ui.po
+++ b/source/cy/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 10:51+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484823107.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Mae %PRODUCTNAME ar gael yn unol ag amodau'r Mozilla Public License, v. 2.0. Mae copi o drwydded MPL ar gael yn http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Mae hysbysiadau hawlfraint at Third Party Code Additional ac amodau trwyddedu darnau perthnasol y Feddalwedd ar gael yn y ffeil LICENSE.html file; dewiswch Dangos y Drwydded i weld y manylion yn Saesneg.\n"
-"\n"
-"Eiddo eu perchnogion yw'r holl nodau masnach a nodau masnach cofrestredig nodir yma.\n"
-"\n"
-"Hawlfraint © 2000, 2016 cyfranwyr LibreOffice a'u cysylltiadau. Diogelir pob hawl.\n"
-"\n"
-"Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gweler http://www.libreoffice.org/ am wybodaeth bellach."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/cy/svtools/source/dialogs.po b/source/cy/svtools/source/dialogs.po
index 5b0d7d12392..4a760a3fec8 100644
--- a/source/cy/svtools/source/dialogs.po
+++ b/source/cy/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 10:52+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484823172.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testun fformatiwyd [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/cy/svtools/source/misc.po b/source/cy/svtools/source/misc.po
index 838ce6f1800..669511e538f 100644
--- a/source/cy/svtools/source/misc.po
+++ b/source/cy/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 10:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484823180.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hwngareg (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/cy/svx/source/stbctrls.po b/source/cy/svx/source/stbctrls.po
index 31684c7ccc3..37ec5326a3a 100644
--- a/source/cy/svx/source/stbctrls.po
+++ b/source/cy/svx/source/stbctrls.po
@@ -3,17 +3,17 @@ 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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 15:41+0000\n"
-"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
+"Last-Translator: Aled Powell <aled@aledpowell.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480606911.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Addasu'r sleid i'r ffenestr gyfredol."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/cy/svx/uiconfig/ui.po b/source/cy/svx/uiconfig/ui.po
index f1d4f72d012..b5b5eeea161 100644
--- a/source/cy/svx/uiconfig/ui.po
+++ b/source/cy/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 11:04+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484823848.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Parhau yn y Modd Diogel"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Gadael"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Gosod Newidiadau ac Ail-gychwyn"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/da/cui/uiconfig/ui.po b/source/da/cui/uiconfig/ui.po
index 227465f145e..2fc5d96ef84 100644
--- a/source/da/cui/uiconfig/ui.po
+++ b/source/da/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 20:08+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480622883.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice bidragydere."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index 333683c0819..59081635c6d 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-30 20:16+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483128993.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index e6edc55f56f..7d9d3eab198 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-01-10 18:32+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484073163.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Vælg</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/da/sfx2/source/dialog.po b/source/da/sfx2/source/dialog.po
index ef30f2e2307..3279d7fa5b2 100644
--- a/source/da/sfx2/source/dialog.po
+++ b/source/da/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-12 20:01+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkisk"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/da/sfx2/uiconfig/ui.po b/source/da/sfx2/uiconfig/ui.po
index 8f2cecd330d..9d317eb1d4c 100644
--- a/source/da/sfx2/uiconfig/ui.po
+++ b/source/da/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-12 20:04+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: none\n"
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME er gjort tilgængelig under betingelserne i Mozilla Public License, v. 2.0. En kopi af MPL-licensen fås på http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Beskeder om ophavsret på kode fra tredjepart og licensbetingelser, der anvendes på dele af softwaren, fremgår af filen LICENSE.html; vælg Vis licens for at se de præcise detaljer på engelsk.\n"
-"\n"
-"Alle varemærker og registrerede varemærker som nævnes heri, tilhører de respektive ejere.\n"
-"\n"
-"Ophavsret © 2000, 2016 LibreOffice-bidragydere. Alle rettigheder forbeholdes.\n"
-"\n"
-"Dette produkt blev skab af %OOOVENDOR, baseret på OpenOffice.org, der er underlagt ophavsret 2000, 2011 Oracle og/eller dets partnere. %OOOVENDOR vedkender sig alle medlemmer af fællesskabet, se venligst http://www.libreoffice.org/ for flere detaljer."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/da/svtools/source/dialogs.po b/source/da/svtools/source/dialogs.po
index 7aa56b14844..4149b7a4f9a 100644
--- a/source/da/svtools/source/dialogs.po
+++ b/source/da/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-06 21:29+0000\n"
"Last-Translator: Jeppe Bundsgaard <jeppe@bundsgaard.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1452115748.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formateret tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/da/svtools/source/misc.po b/source/da/svtools/source/misc.po
index 3237e28e349..b87208f3f07 100644
--- a/source/da/svtools/source/misc.po
+++ b/source/da/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-12 20:05+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungarsk (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/da/svx/source/stbctrls.po b/source/da/svx/source/stbctrls.po
index b72aba32de9..7c2f566de7c 100644
--- a/source/da/svx/source/stbctrls.po
+++ b/source/da/svx/source/stbctrls.po
@@ -3,17 +3,17 @@ 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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-27 16:26+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"Last-Translator: Leif Lodahl <leiflodahl@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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480263982.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Tilpas dias til det aktuelle vindue."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/da/svx/uiconfig/ui.po b/source/da/svx/uiconfig/ui.po
index fa24ffa56e5..35d8cbe74a7 100644
--- a/source/da/svx/uiconfig/ui.po
+++ b/source/da/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-15 20:35+0000\n"
"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489610128.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Fortsæt i sikker tilstand"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Afslut"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Anvend ændringerne og genstart"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/de/cui/uiconfig/ui.po b/source/de/cui/uiconfig/ui.po
index fea5f22c4f2..2026634da5a 100644
--- a/source/de/cui/uiconfig/ui.po
+++ b/source/de/cui/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-23 05:18+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:34+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: none\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490246312.000000\n"
+"X-POOTLE-MTIME: 1491993240.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice Beitragende."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 LibreOffice-Beitragende."
#: aboutdialog.ui
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply spacing between Asian, Latin and complex text"
-msgstr "Abstand zwischen asiatischem, lateinischem und komplexem Text verwenden"
+msgstr "Abstand zwischen asiatischem, lateinischem und komplexem Text anwenden"
#: asiantypography.ui
msgctxt ""
diff --git a/source/de/filter/uiconfig/ui.po b/source/de/filter/uiconfig/ui.po
index 342cc83125f..a22861f4241 100644
--- a/source/de/filter/uiconfig/ui.po
+++ b/source/de/filter/uiconfig/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-20 06:16+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-02 12:57+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479622596.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491137838.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -864,7 +864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use this certificate to digitally sign PDF documents:"
-msgstr "Dies Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:"
+msgstr "Dieses Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:"
#: pdfsignpage.ui
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 679bdbec4bd..83a0b4c91e4 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 20:27+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-15 14:03+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490387279.000000\n"
+"X-POOTLE-MTIME: 1492265017.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -1687,7 +1687,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
-msgstr "Eine <emph>Funktion</emph> (Function) ist im wesentlichen eine Prozedur, die einen Wert zurückgibt. Sie können Funktionen auf der rechten Seite von Variablendeklarationen oder an anderen Stellen einsetzen, an denen normalerweise Werte verwendet würden, beispielsweise:"
+msgstr "Eine <emph>Funktion</emph> ist im wesentlichen eine Prozedur, die einen Wert zurückgibt. Sie können Funktionen auf der rechten Seite von Variablendeklarationen oder an anderen Stellen einsetzen, an denen normalerweise Werte verwendet würden, beispielsweise:"
#: 01010210.xhp
msgctxt ""
@@ -2200,7 +2200,7 @@ msgctxt ""
"par_id3145632\n"
"help.text"
msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
-msgstr "Boolesche Variablen können nur zwei verschiedene Werte aufnehmen: WAHR (TRUE) oder FALSCH (FALSE). Boolesche Variablen werden zur Speicherung von Binärwerten (wie beispielsweise dem Ergebnis einer Vergleichsoperation) verwendet und intern durch einen 2-Byte-Integerwert dargestellt. Alle Werte, die Sie einer booleschen Variablen zuweisen, werden in \"TRUE\" konvertiert, sofern sie nicht genau \"0\" sind."
+msgstr "Boolesche Variablen können nur zwei verschiedene Werte aufnehmen: WAHR (TRUE) oder FALSCH (FALSE). Boolesche Variablen werden zur Speicherung von Binärwerten, wie beispielsweise dem Ergebnis einer Vergleichsoperation, verwendet und intern durch einen 2-Byte-Integerwert dargestellt. Alle Werte, die Sie einer booleschen Variablen zuweisen, werden zu \"True\" konvertiert, sofern sie nicht genau \"0\" sind."
#: 01020100.xhp
msgctxt ""
@@ -2993,7 +2993,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
-msgstr "Der Basic-Editor hält alle Standard-Bearbeitungsfunktionen bereit, die Sie auch von einem Textdokument her kennen. Er kennt im Menü <emph>Bearbeiten</emph> die Funktionen Ausschneiden, Löschen und Einfügen, die Auswahlmöglichkeiten mit der Umschalttaste sowie alle Cursor-Positionierungsfunktionen (beispielsweise wortweise springen mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Pfeiltaste)."
+msgstr "Der Basic-Editor hält alle Standard-Bearbeitungsfunktionen bereit, die Sie auch von einem Textdokument her kennen. Er kennt die Funktionen im Menü <emph>Bearbeiten</emph> (Ausschneiden, Löschen, Einfügen), die Auswahlmöglichkeiten mit der Umschalttaste sowie alle Cursor-Positionierungsfunktionen (beispielsweise wortweise springen mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline> und den Pfeiltasten)."
#: 01030200.xhp
msgctxt ""
@@ -5843,7 +5843,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog.</ahelp> On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
-msgstr "<ahelp hid=\".\">Geben Sie die Reihenfolge an, in der die Steuerelemente den Fokus erhalten, wenn die Tabulatortaste im Dialog gedrückt wird.</ahelp> Beim Aufruf des Dialogs erhält zunächst das Steuerelement mit der niedrigsten Reihenfolgenposition (d. h. 0) den Fokus. Durch Betätigen der <emph>Tabulatortaste</emph> wird der Fokus dann nacheinander, entsprechend ihrer festgelegten Reihenfolgenposition, auf die anderen Steuerelemente gesetzt."
+msgstr "<ahelp hid=\".\">Geben Sie die Reihenfolge an, in der die Steuerelemente den Fokus erhalten, wenn die Tabulatortaste im Dialog gedrückt wird.</ahelp> Beim Aufruf des Dialogs erhält zunächst das Steuerelement mit der niedrigsten Reihenfolgenposition (0) den Fokus. Durch Betätigen der <emph>Tabulatortaste</emph> wird der Fokus dann nacheinander, entsprechend ihrer festgelegten Reihenfolgenposition, auf die anderen Steuerelemente gesetzt."
#: 01170101.xhp
msgctxt ""
@@ -10796,7 +10796,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
-msgstr "Wenn Sie nur Verzeichnisse ermitteln möchten, nehmen Sie den Attributparameter zu Hilfe. Das gleiche gilt, wenn Sie den Namen eines Volumes (beispielsweise eine Festplattenpartition) ermitteln möchten"
+msgstr "Wenn Sie nur Verzeichnisse ermitteln möchten, nehmen Sie den Attributparameter zu Hilfe. Das gleiche gilt, wenn Sie den Namen eines Volumes ermitteln möchten (beispielsweise eine Festplattenpartition)"
#: 03020404.xhp
msgctxt ""
@@ -13278,7 +13278,7 @@ msgctxt ""
"par_idN1055F\n"
"help.text"
msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Interv, Anz, Datum)"
+msgstr "DateAdd (Interv, Anzahl, Datum)"
#: 03030110.xhp
msgctxt ""
@@ -23503,7 +23503,7 @@ msgctxt ""
"par_id3125864\n"
"help.text"
msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
-msgstr "Beim Konvertieren eines Zeichenkettenausdrucks müssen Datum und Uhrzeit im Format MM.TT.JJJJ HH.MM.SS eingegeben werden (entsprechend den Funktionskonventionen von <emph>DateValue</emph> und <emph>TimeValue</emph>). In numerischen Ausdrücken stellt der Wert links vom Dezimalpunkt das Datum dar, beginnend mit dem 31. Dezember 1899. Der Wert rechts vom Dezimalpunkt stellt die Uhrzeit dar."
+msgstr "Beim Konvertieren eines Zeichenkettenausdrucks müssen Datum und Uhrzeit im Format TT.MM.JJJJ HH.MM.SS eingegeben werden (entsprechend den Funktionskonventionen von <emph>DateValue</emph> und <emph>TimeValue</emph>); die Uhrzeit kann auch weggelassen werden. In numerischen Ausdrücken stellt der Wert links vom Dezimalzeichen das Datum dar, beginnend mit dem 31. Dezember 1899. Der Wert rechts vom Dezimalzeichen stellt die Uhrzeit dar."
#: 03100300.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/00.po b/source/de/helpcontent2/source/text/scalc/00.po
index 7e5cb546fbb..6e38db93278 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-24 20:34+0000\n"
+"PO-Revision-Date: 2017-04-01 08:01+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490387654.000000\n"
+"X-POOTLE-MTIME: 1491033669.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
-msgstr "<variable id=\"autoeingabe\">Menü <emph>Extras - Zellinhalte - AutoEingabe</emph></variable>"
+msgstr "<variable id=\"autoeingabe\">Wählen Sie <emph>Extras - AutoEingabe</emph></variable>"
#: 00000407.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 19d1e4a172a..7721372e4f9 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-24 20:58+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 14:05+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490389093.000000\n"
+"X-POOTLE-MTIME: 1492265101.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -16847,7 +16847,7 @@ msgctxt ""
"par_id3149798\n"
"help.text"
msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
-msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als Platz sparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie z.B. MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen."
+msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als Platz sparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie beispielsweise MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen."
#: 04060107.xhp
msgctxt ""
@@ -16863,7 +16863,7 @@ msgctxt ""
"par_id3152876\n"
"help.text"
msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
-msgstr "Außerdem besteht die Möglichkeit, \"normale\" Formeln zu erstellen, deren Bezugsbereiche (z.B. Parameter) auf eine Matrixformel verweist. Das Ergebnis wird am Schnittpunkt zwischen dem Bezugsbereich und den Zeilen oder Spalten ermittelt, in welchen sich die Formel befindet. Wenn es keinen Schnittpunkt gibt oder der Bereich am Schnittpunkt mehrere Zeilen oder Spalten abdeckt, so wird der Fehler #WERT! ausgegeben. Das folgende Beispiel verdeutlicht dieses Prinzip:"
+msgstr "Außerdem besteht die Möglichkeit, \"normale\" Formeln zu erstellen, deren Bezugsbereiche, wie beispielsweise Parameter, auf eine Matrixformel verweist. Das Ergebnis wird am Schnittpunkt zwischen dem Bezugsbereich und den Zeilen oder Spalten ermittelt, in welchen sich die Formel befindet. Wenn es keinen Schnittpunkt gibt oder der Bereich am Schnittpunkt mehrere Zeilen oder Spalten abdeckt, so wird der Fehler #WERT! ausgegeben. Das folgende Beispiel verdeutlicht dieses Prinzip:"
#: 04060107.xhp
msgctxt ""
@@ -17551,7 +17551,7 @@ msgctxt ""
"par_id3150949\n"
"help.text"
msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
-msgstr "Ziehen Sie in der Tabelle einen quadratischen Bereich auf, z. B. von A1 bis E5."
+msgstr "Ziehen Sie in der Tabelle einen quadratischen Bereich auf, beispielsweise von A1 bis E5."
#: 04060107.xhp
msgctxt ""
@@ -18335,7 +18335,7 @@ msgctxt ""
"par_id0811200804502261\n"
"help.text"
msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Return rather than just Return)."
-msgstr "RGP ergibt eine Tabelle (Matrix) mit Statistikwerten wie unten und muss als Matrixformel eingegeben werden (z.B. mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+Eingabetaste anstatt einfach Eingabetaste)."
+msgstr "RGP ergibt eine Tabelle (Matrix) mit Statistikwerten wie unten und muss als Matrixformel eingegeben werden (beispielsweise mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+Eingabetaste anstatt einfach Eingabetaste)."
#: 04060107.xhp
msgctxt ""
@@ -20001,7 +20001,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
-msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Ergibt für die angegebene Zeilen- und Spaltennummer eine Zelladresse (Bezug auf die Zelle) in Textform.</ahelp> Sie können auch bestimmen, ob die Adresse als absolute (z.B. $A$1) oder relative Adresse (z.B. A1) oder als Mischform (z.B. A$1 oder $A1) interpretiert wird. Außerdem können Sie den Namen der Tabelle angeben."
+msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Ergibt für die angegebene Zeilen- und Spaltennummer eine Zelladresse (Bezug auf die Zelle) in Textform.</ahelp> Sie können auch bestimmen, ob die Adresse als absolute (beispielsweise $A$1) oder relative Adresse (beispielsweise A1) oder als Mischform (beispielsweise A$1 oder $A1) interpretiert wird. Außerdem können Sie den Namen der Tabelle angeben."
#: 04060109.xhp
msgctxt ""
@@ -20491,7 +20491,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
-msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Ergibt die Nummer eines in einer anderen Zelle aufgetretenen <link href=\"text/scalc/05/02140000.xhp\" name=\"Fehlercodes\">Fehlercodes</link>.</ahelp> Sie können dann z.B. mithilfe dieser Nummer einen eigenen Fehlertext ausgeben lassen."
+msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Ergibt die Nummer eines in einer anderen Zelle aufgetretenen <link href=\"text/scalc/05/02140000.xhp\" name=\"Fehlercodes\">Fehlercodes</link>.</ahelp> Sie können dann beispielsweise mithilfe dieser Nummer einen eigenen Fehlertext ausgeben lassen."
#: 04060109.xhp
msgctxt ""
@@ -21673,7 +21673,7 @@ msgctxt ""
"134\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Weist der Formelzelle eine Formatvorlage zu.</ahelp> Nach einstellbarer Zeit wird optional eine andere Vorlage zugewiesen. Diese Funktion ergibt immer den Wert 0, so dass Sie die Funktion per Addition zu einer anderen Funktion hinzufügen können, ohne deren Wert zu verändern. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, z.B. =...+VORLAGE(WENN(AKTUELL()>3;\"rot\";\"grün\")) färbt die Zelle mit der Vorlage \"rot\", wenn der Wert größer 3 ist, sonst mit der Vorlage \"grün\". Beide Zellformate \"rot\" und \"grün\" müssen vorher definiert sein."
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Weist der Formelzelle eine Formatvorlage zu.</ahelp> Nach einstellbarer Zeit wird optional eine andere Vorlage zugewiesen. Diese Funktion ergibt immer den Wert 0, so dass Sie die Funktion per Addition zu einer anderen Funktion hinzufügen können, ohne deren Wert zu verändern. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, beispielsweise =...+VORLAGE(WENN(AKTUELL()>3;\"rot\";\"grün\")) färbt die Zelle mit der Vorlage \"rot\", wenn der Wert größer 3 ist, sonst mit der Vorlage \"grün\". Beide Zellformate \"rot\" und \"grün\" müssen vorher definiert sein."
#: 04060109.xhp
msgctxt ""
@@ -22243,7 +22243,7 @@ msgctxt ""
"par_id2958769\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "<item type=\"input\">=HYPERLINK(\"Datei:///C:/writer.odt#Specification\";\"Gehe zu Writer-Lesenzeichen\")</item> zeigt den Text \"Gehe zu Writer-Lesezeichen\" an, lädt das angegebene Textdokument und springt zum Lesezeichen \"Spezifikation\"."
+msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Spezifikation\";\"Gehe zu Writer-Lesenzeichen\")</item> zeigt den Text \"Gehe zu Writer-Lesezeichen\" an, lädt das angegebene Textdokument und springt zum Lesezeichen \"Spezifikation\"."
#: 04060109.xhp
msgctxt ""
@@ -26905,7 +26905,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
-msgstr "Output: Nimmt den Namen bzw. die Art des Parameters auf, z. B. das Wort \"Zahl\" oder \"Zeichenkette\" oder \"Datum\" o. ä. In $[officename] Calc implementiert als char[256]."
+msgstr "Output: Nimmt den Namen oder die Art des Parameters auf, beispielsweise das Wort \"Zahl\" oder \"Zeichenkette\" oder \"Datum\" o. ä. In $[officename] Calc implementiert als char[256]."
#: 04060112.xhp
msgctxt ""
@@ -26923,7 +26923,7 @@ msgctxt ""
"72\n"
"help.text"
msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
-msgstr "Output: Nimmt die Beschreibung des Parameters auf, z. B. \"Wert, zu dem das Universum berechnet werden soll\". In $[officename] Calc implementiert als char[256]."
+msgstr "Output: Nimmt die Beschreibung des Parameters auf, beispielsweise \"Wert, zu dem das Universum berechnet werden soll\". In $[officename] Calc implementiert als char[256]."
#: 04060112.xhp
msgctxt ""
@@ -35684,7 +35684,7 @@ msgctxt ""
"211\n"
"help.text"
msgid "DOLLARFR(DecimalDollar; Fraction)"
-msgstr "NOTIERUNGSBRU(Dollardezimalzahl; Bruch)"
+msgstr "NOTIERUNGBRU(Dollardezimalzahl; Bruch)"
#: 04060119.xhp
msgctxt ""
@@ -35720,7 +35720,7 @@ msgctxt ""
"215\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
-msgstr "<item type=\"input\">=NOTIERUNGSBRU(1,125;16)</item> wandelt in Sechzehntel um. Das Ergebnis ist 1,02 für 1 plus 2/16."
+msgstr "<item type=\"input\">=NOTIERUNGBRU(1,125;16)</item> wandelt in Sechzehntel um. Das Ergebnis ist 1,02 für 1 plus 2/16."
#: 04060119.xhp
msgctxt ""
@@ -35729,7 +35729,7 @@ msgctxt ""
"216\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
-msgstr "<item type=\"input\">=NOTIERUNGSBRU(1,125;8)</item> wandelt in Achtel um. Das Ergebnis ist 1,1 für 1 plus 1/8."
+msgstr "<item type=\"input\">=NOTIERUNGBRU(1,125;8)</item> wandelt in Achtel um. Das Ergebnis ist 1,1 für 1 plus 1/8."
#: 04060119.xhp
msgctxt ""
@@ -35773,7 +35773,7 @@ msgctxt ""
"202\n"
"help.text"
msgid "DOLLARDE(FractionalDollar; Fraction)"
-msgstr "NOTIERUNGSDEZ(Dollarbruchzahl; Bruch)"
+msgstr "NOTIERUNGDEZ(Dollarbruchzahl; Bruch)"
#: 04060119.xhp
msgctxt ""
@@ -35809,7 +35809,7 @@ msgctxt ""
"206\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
-msgstr "<item type=\"input\">=NOTIERUNGSDEZ(1,02;16)</item> steht für 1 und 2/16. Dies ergibt 1,125."
+msgstr "<item type=\"input\">=NOTIERUNGDEZ(1,02;16)</item> steht für 1 und 2/16. Dies ergibt 1,125."
#: 04060119.xhp
msgctxt ""
@@ -35818,7 +35818,7 @@ msgctxt ""
"207\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
-msgstr "<item type=\"input\">=NOTIERUNGSDEZ(1,1;8)</item> steht für 1 und 1/8. Dies ergibt 1,125."
+msgstr "<item type=\"input\">=NOTIERUNGDEZ(1,1;8)</item> steht für 1 und 1/8. Dies ergibt 1,125."
#: 04060119.xhp
msgctxt ""
@@ -37459,7 +37459,7 @@ msgctxt ""
"par_id3165000\n"
"help.text"
msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. If regular expressions are enabled in calculation options you may also enter a search text in the form of a regular expression, e.g. b.* for all cells that begin with b. If wildcards are enabled in calculation options you may enter a search text with wildcards, e.g. b* for all cells that begin with b. You may also indicate a cell address that contains the search criterion. If you search for literal text, enclose the text in double quotes."
-msgstr "<emph>Bedingungen</emph> legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenfolge fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, z.B. b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie z.B. b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenfolgen suchen, müssen Sie diese in doppelte Anführungszeichen einschließen."
+msgstr "<emph>Bedingungen</emph> legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenfolge fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, beispielsweise b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie beispielsweise b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenfolgen suchen, müssen Sie diese in doppelte Anführungszeichen einschließen."
#: 04060181.xhp
msgctxt ""
@@ -43179,7 +43179,7 @@ msgctxt ""
"par_id9282509\n"
"help.text"
msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, z. B. MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler."
+msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, beispielsweise MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler."
#: 04060184.xhp
msgctxt ""
@@ -43435,7 +43435,7 @@ msgctxt ""
"par_id2301400\n"
"help.text"
msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, z. B. MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler."
+msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, beispielsweise MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler."
#: 04060184.xhp
msgctxt ""
@@ -52189,7 +52189,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
-msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Wählen Sie eine oder mehrere Spalten, die auf jeder Seite gedruckt werden sollen. In das rechte Textfeld geben Sie den Spaltenbezug ein, z.B. \"A\", \"AB\" oder \"$C:$E\".</ahelp> Im Listenfeld wird dann <emph>-benutzerdefiniert-</emph> angezeigt. Mit <emph>-keine-</emph> können Sie eine definierte Wiederholungsspalte entfernen."
+msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Wählen Sie eine oder mehrere Spalten, die auf jeder Seite gedruckt werden sollen. In das rechte Textfeld geben Sie den Spaltenbezug ein, beispielsweise \"A\", \"AB\" oder \"$C:$E\".</ahelp> Im Listenfeld wird dann <emph>-benutzerdefiniert-</emph> angezeigt. Mit <emph>-keine-</emph> können Sie eine definierte Wiederholungsspalte entfernen."
#: 05080300.xhp
msgctxt ""
@@ -53407,7 +53407,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
-msgstr "Diese Funktion arbeitet ebenenweise. Wenn z. B. die Spur von einer Formel zu ihren Vorgängern schon angezeigt wird, werden mit einem erneuten Aufruf die Spuren zu deren Vorgängern erzeugt."
+msgstr "Diese Funktion arbeitet ebenenweise. Wenn beispielsweise die Spur von einer Formel zu ihren Vorgängern schon angezeigt wird, werden mit einem erneuten Aufruf die Spuren zu deren Vorgängern erzeugt."
#: 06030200.xhp
msgctxt ""
@@ -60516,7 +60516,7 @@ msgctxt ""
"par_id2209201514174378\n"
"help.text"
msgid "<emph>Function</emph> – obligatory argument. A function index or a reference to a cell with value from 1 to 19, in accordance with the following table."
-msgstr "<emph>Funktion</emph> (erforderlich). Ein Funktionsindex oder ein Zellbezug mit Werten zwischen 1 und 19, übereinstimmend mit folgender Tabelle."
+msgstr "<emph>Funktion</emph> – erforderliches Argument. Ein Funktionsindex oder ein Zellbezug mit Werten zwischen 1 und 19, übereinstimmend mit folgender Tabelle."
#: func_aggregate.xhp
msgctxt ""
@@ -61476,7 +61476,7 @@ msgctxt ""
"par_id316794795433\n"
"help.text"
msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIFS function. For example, the above function can be rewritten as follows:"
-msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion MITTELWERTWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:"
+msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion MITTELWERTWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:"
#: func_averageifs.xhp
msgctxt ""
@@ -61796,7 +61796,7 @@ msgctxt ""
"par_id3245551524846\n"
"help.text"
msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the COUNTIFS function. For example, the above function can be rewritten as follows:"
-msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion ZÄHLENWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:"
+msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion ZÄHLENWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:"
#: func_countifs.xhp
msgctxt ""
@@ -63084,7 +63084,7 @@ msgctxt ""
"par_id12475201719494\n"
"help.text"
msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned."
-msgstr "Die Funktion ISTFEHLER ergibt WAHR oder FALSCH, abhängig davon, ob ein Fehler vorliegt oder nicht. Wenn ein Fehler vorliegt, leitet die Funktion WENN zum zweiten Argument weiter, wenn kein Fehler vorliegt, ergibt sie das Ergebnis der Division. Das zweite Argument überprüft den Index, der den Fehlertyp darstellt, und ergibt, wenn dieser gleich 2 ist, den Text \"Der Divisor darf nicht Null sein\" oder andernfalls 0. Somit wird durch Text auf die Division durch Null hingewiesen, das Ergebnis der Division, wenn diese möglich ist, ausgegeben oder Null zurückgegeben, wenn z.B. ein anderer Fehlertyp vorliegt."
+msgstr "Die Funktion ISTFEHLER ergibt WAHR oder FALSCH, abhängig davon, ob ein Fehler vorliegt oder nicht. Wenn ein Fehler vorliegt, leitet die Funktion WENN zum zweiten Argument weiter, wenn kein Fehler vorliegt, ergibt sie das Ergebnis der Division. Das zweite Argument überprüft den Index, der den Fehlertyp darstellt, und ergibt, wenn dieser gleich 2 ist, den Text \"Der Divisor darf nicht Null sein\" oder andernfalls 0. Somit wird durch Text auf die Division durch Null hingewiesen, das Ergebnis der Division, wenn diese möglich ist, ausgegeben oder Null zurückgegeben, wenn beispielsweise ein anderer Fehlertyp vorliegt."
#: func_error_type.xhp
msgctxt ""
@@ -63364,7 +63364,7 @@ msgctxt ""
"par_id0403201618595126\n"
"help.text"
msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
-msgstr "Z.B. wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)."
+msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -63484,7 +63484,7 @@ msgctxt ""
"par_id0403201618595126\n"
"help.text"
msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
-msgstr "Z.B. wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)."
+msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -65542,7 +65542,7 @@ msgctxt ""
"par_id242131304315587\n"
"help.text"
msgid "Calculates the skewness of a distribution using the population, i.e. the possible outcomes, of a random variable. The sequence shall contain three numbers at least."
-msgstr "Berechnet die Schiefe einer Verteilung aus der Population, z.B. die möglichen Ergebnisse einer Zufallsvariablen. Die Reihe sollte mindestens drei Zahlen enthalten."
+msgstr "Berechnet die Schiefe einer Verteilung aus der Population, beispielsweise die möglichen Ergebnisse einer Zufallsvariablen. Die Reihe sollte mindestens drei Zahlen enthalten."
#: func_skewp.xhp
msgctxt ""
@@ -65614,7 +65614,7 @@ msgctxt ""
"par_id659756597565975\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"sumifs_des\">Returns the sum of the values of cells in a range that meets multiple criteria in multiple ranges.</variable></ahelp>"
-msgstr "<ahelp hid=\".\"><variable id=\"sumifs_des\">Ergibt die Summe der Werte der Zellen in einem Bereich, die mehreren Bedingungen in mehreren Bereichen entsprechen.</variable></ahelp>"
+msgstr "<ahelp hid=\".\"><variable id=\"sumifs_des\">Ergibt die Summe der Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen erfüllen.</variable></ahelp>"
#: func_sumifs.xhp
msgctxt ""
@@ -65798,7 +65798,7 @@ msgctxt ""
"par_id50762995519951\n"
"help.text"
msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the SUMIFS function. For example, the above function can be rewritten as follows:"
-msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion SUMMEWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:"
+msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion SUMMEWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:"
#: func_sumifs.xhp
msgctxt ""
@@ -68790,7 +68790,7 @@ msgctxt ""
"par_id1002140\n"
"help.text"
msgid "Exponential smoothing is a filtering technique that when applied to a data set, produces smoothed results. It is employed in many domains such as stock market, economics and in sampled measurements."
-msgstr "Exponentielle Glättung ist eine Filtertechnik, welche, angewandt auf einen Datensatz, geglättete Ergebnisse erzielt. Es wird auf vielen Gebieten verwendet, wie z.B. an der Börse oder in der Wirtschaft."
+msgstr "Exponentielle Glättung ist eine Filtertechnik, welche, angewandt auf einen Datensatz, geglättete Ergebnisse erzielt. Es wird auf vielen Gebieten verwendet, wie beispielsweise an der Börse oder in der Wirtschaft."
#: statistics.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/02.po b/source/de/helpcontent2/source/text/scalc/02.po
index db97a29f381..258fa50ba24 100644
--- a/source/de/helpcontent2/source/text/scalc/02.po
+++ b/source/de/helpcontent2/source/text/scalc/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-05-19 18:28+0000\n"
+"PO-Revision-Date: 2017-04-14 12:47+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1463682539.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492174026.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -360,7 +360,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
-msgstr "Um zu einer bestimmten Zelle zu springen oder einen Zellbereich auszuwählen, geben Sie den Zellbereich oder den entsprechenden Bezug in dieses Feld ein, z. B. F1 oder A1:C4."
+msgstr "Um zu einer bestimmten Zelle zu springen oder einen Zellbereich auszuwählen, geben Sie den Zellbereich oder den entsprechenden Bezug in dieses Feld ein, beispielsweise F1 oder A1:C4."
#: 06030000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/04.po b/source/de/helpcontent2/source/text/scalc/04.po
index 45463b42bd8..86894e63b32 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 20:58+0000\n"
+"PO-Revision-Date: 2017-04-14 12:47+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490389119.000000\n"
+"X-POOTLE-MTIME: 1492174068.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
-msgstr "Ordnet die relativen oder absoluten Bezüge (z. B. A1, $A$1, $A1, A$1) im Eingabefeld um."
+msgstr "Ordnet die relativen oder absoluten Bezüge (beispielsweise A1, $A$1, $A1, A$1) im Eingabefeld um."
#: 01020000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/05.po b/source/de/helpcontent2/source/text/scalc/05.po
index d3e805ea09d..e1a5c9bd5d2 100644
--- a/source/de/helpcontent2/source/text/scalc/05.po
+++ b/source/de/helpcontent2/source/text/scalc/05.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 21:00+0000\n"
+"PO-Revision-Date: 2017-04-14 12:54+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490389204.000000\n"
+"X-POOTLE-MTIME: 1492174483.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -233,7 +233,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
-msgstr "Der Funktionsparameter ist nicht gültig; z. B. Text anstelle einer Zahl oder ein Domänenbezug anstelle eines Zellbezugs."
+msgstr "Der Funktionsparameter ist nicht gültig; beispielsweise Text anstelle einer Zahl oder ein Domänenbezug anstelle eines Zellbezugs."
#: 02140000.xhp
msgctxt ""
@@ -287,7 +287,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
-msgstr "Der Operator fehlt; z. B. \"=2(3+4) * \", wo der Operator zwischen \"2\" und \"(\" fehlt."
+msgstr "Der Operator fehlt; beispielsweise \"=2(3+4) * \", wo der Operator zwischen \"2\" und \"(\" fehlt."
#: 02140000.xhp
msgctxt ""
@@ -314,7 +314,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
-msgstr "Eine Variable fehlt; z. B. \"=1+*2\", wo zwei Operatoren nebeneinander stehen."
+msgstr "Eine Variable fehlt; beispielsweise \"=1+*2\", wo zwei Operatoren nebeneinander stehen."
#: 02140000.xhp
msgctxt ""
@@ -341,7 +341,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "Function requires more variables than are provided, for example, AND() and OR()."
-msgstr "Die Funktion erfordert mehr Variablen; z. B. UND() und ODER()."
+msgstr "Die Funktion erfordert mehr Variablen; beispielsweise UND() und ODER()."
#: 02140000.xhp
msgctxt ""
@@ -476,7 +476,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
-msgstr "Unbekannter Code; es wurde z. B. ein Dokument mit einer neueren Funktion in eine ältere Version eingeladen, die nicht über diese Funktion verfügt."
+msgstr "Unbekannter Code; es wurde beispielsweise ein Dokument mit einer neueren Funktion in eine ältere Version eingeladen, die nicht über diese Funktion verfügt."
#: 02140000.xhp
msgctxt ""
@@ -692,7 +692,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
-msgstr "Ein Bezeichner konnte nicht aufgelöst werden; z.B. kein gültiger Bezug, kein gültiger Domänenname, keine Spalten-/Zeilenbeschriftung, kein Makro, falscher Dezimalseparator oder Add-in nicht gefunden."
+msgstr "Ein Bezeichner konnte nicht aufgelöst werden; beispielsweise kein gültiger Bezug, kein gültiger Domänenname, keine Spalten-/Zeilenbeschriftung, kein Makro, falscher Dezimalseparator oder AddIn nicht gefunden."
#: 02140000.xhp
msgctxt ""
@@ -746,7 +746,7 @@ msgctxt ""
"86\n"
"help.text"
msgid "<emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
-msgstr "<emph>Interpreter: </emph> Bezüge, z. B. zwischen zwei Zellen, sind zu stark verschachtelt."
+msgstr "<emph>Interpreter: </emph> Bezüge, beispielsweise zwischen zwei Zellen, sind zu stark verschachtelt."
#: 02140000.xhp
msgctxt ""
@@ -1203,7 +1203,7 @@ msgctxt ""
"par_id4217047\n"
"help.text"
msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
-msgstr "Beachten Sie, dass sich MS Excel anders verhält, und immer eine Zahl als Bezug zu einer leeren Zelle oder einer Formel, die eine leere Zelle zurückgibt, ergibt. Beispielsweise:"
+msgstr "Beachten Sie, dass sich MS Excel anders verhält und immer eine Zahl als Bezug zu einer leeren Zelle oder einer Formel, die eine leere Zelle zurückgibt, ergibt. Beispielsweise:"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index 6af52242905..cf7a78819eb 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-24 21:11+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-15 14:07+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490389908.000000\n"
+"X-POOTLE-MTIME: 1492265262.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
-msgstr "Zum Ein- und Ausschalten der AutoEingabe setzen oder entfernen Sie das Häkchen vor dem Befehl <link href=\"text/scalc/01/06130000.xhp\" name=\"Extras - Zellinhalte - AutoEingabe\"><emph>Extras - Zellinhalte - AutoEingabe</emph></link>."
+msgstr "Zum Ein- und Ausschalten der AutoEingabe setzen oder entfernen Sie das Häkchen vor dem Befehl <link href=\"text/scalc/01/06130000.xhp\" name=\"Extras - AutoEingabe\"><emph>Extras - AutoEingabe</emph></link>."
#: auto_off.xhp
msgctxt ""
@@ -235,7 +235,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Extras - Zellinhalte - AutoEingabe\">Extras - Zellinhalte - AutoEingabe</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Extras - AutoEingabe\">Extras - AutoEingabe</link>"
#: auto_off.xhp
msgctxt ""
@@ -1460,7 +1460,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
-msgstr "Möchten Sie Zeitdifferenzen berechnen, z.B. wie viel Zeit zwischen den Uhrzeiten 23:30 und 01:10 in derselben Nacht liegt, verwenden Sie am besten folgende Formel:"
+msgstr "Möchten Sie Zeitdifferenzen berechnen, beispielsweise wie viel Zeit zwischen den Uhrzeiten 23:30 und 01:10 in derselben Nacht liegt, verwenden Sie am besten folgende Formel:"
#: calc_timevalues.xhp
msgctxt ""
@@ -2484,7 +2484,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
-msgstr "Die Funktion VORLAGE() kann einer bestehenden Formel in einer Zelle hinzugefügt werden. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, z. B. versieht =...+VORLAGE(WENN(AKTUELL()>3;\"Rot\";\"Grün\")) die Zelle mit der Zellvorlage \"Rot\", wenn der Wert größer 3 ist, anderenfalls mit der Zellvorlage mit dem Namen \"Grün\"."
+msgstr "Die Funktion VORLAGE() kann einer bestehenden Formel in einer Zelle hinzugefügt werden. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, beispielsweise versieht =...+VORLAGE(WENN(AKTUELL()>3;\"Rot\";\"Grün\")) die Zelle mit der Zellvorlage \"Rot\", wenn der Wert größer 3 ist, anderenfalls mit der Zellvorlage mit dem Namen \"Grün\"."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2988,7 +2988,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
-msgstr "Die Definition des Zahlenformats für Zellen besteht aus zwei Teilen. Das Format für positive Zahlen und die Zahl Null wird durch den Teil vor dem Semikolon bestimmt, das Format für negative Zahlen durch den Teil dahinter. Unter <item type=\"menuitem\">Format-Code</item> können Sie den Code (ROT) ändern. Geben Sie z.B. anstelle von \"ROT\" die Farbe <item type=\"literal\">GELB</item> ein. Wenn der neue Code durch Klicken auf das Symbol <item type=\"menuitem\">Hinzufügen</item> in die Liste übernommen wird, ist der Eintrag gültig."
+msgstr "Die Definition des Zahlenformats für Zellen besteht aus zwei Teilen. Das Format für positive Zahlen und die Zahl Null wird durch den Teil vor dem Semikolon bestimmt, das Format für negative Zahlen durch den Teil dahinter. Unter <item type=\"menuitem\">Format-Code</item> können Sie den Code (ROT) ändern. Geben Sie beispielsweise anstelle von \"ROT\" die Farbe <item type=\"literal\">GELB</item> ein. Wenn der neue Code durch Klicken auf das Symbol <item type=\"menuitem\">Hinzufügen</item> in die Liste übernommen wird, ist der Eintrag gültig."
#: consolidate.xhp
msgctxt ""
@@ -3232,7 +3232,7 @@ msgctxt ""
"par_idN10880\n"
"help.text"
msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character."
-msgstr "Comma Separated Values (CSV) ist ein Textdateiformat, mit dem Sie Daten aus einem Datenbank- oder Tabellendokument anwendungsübergreifend austauschen können. Jede Zeile in einer Text CSV-Datei steht für einen Datensatz in einer Datenbank oder einer Zeile in einem Tabellendokument. Jedes Feld in einem Datenbankeintrag bzw. jede Zelle in einer Tabellenzeile wird in der Regel durch ein Komma getrennt. Sie können jedoch auch andere Zeichen als Feldtrennzeichen verwenden, z.B. das Tabulator-Zeichen."
+msgstr "Comma Separated Values (CSV) ist ein Textdateiformat, mit dem Sie Daten aus einem Datenbank- oder Tabellendokument anwendungsübergreifend austauschen können. Jede Zeile in einer Text CSV-Datei steht für einen Datensatz in einer Datenbank oder einer Zeile in einem Tabellendokument. Jedes Feld in einem Datenbankeintrag bzw. jede Zelle in einer Tabellenzeile wird in der Regel durch ein Komma getrennt. Sie können jedoch auch andere Zeichen als Feldtrennzeichen verwenden, beispielsweise das Tabulator-Zeichen."
#: csv_files.xhp
msgctxt ""
@@ -3565,7 +3565,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
-msgstr "Wenn Sie die Formeln als Formeln exportieren möchten, z.B. in der Form =SUMME(A1:B5), gehen Sie wie folgt vor:"
+msgstr "Wenn Sie die Formeln als Formeln exportieren möchten, beispielsweise in der Form =SUMME(A1:B5), gehen Sie wie folgt vor:"
#: csv_formula.xhp
msgctxt ""
@@ -5101,7 +5101,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
-msgstr "Wenn Sie nun Werte, Texte oder Formeln in der aktiven Tabelle eingeben, werden diese auch auf der gleichen Position in den anderen, ausgewählten Tabellen erscheinen. Z.B. werden Daten, die in die Zelle A1 eingegeben werden, automatisch in die Zellen A1 aller ausgewählten Tabellen übernommen."
+msgstr "Wenn Sie nun Werte, Texte oder Formeln in der aktiven Tabelle eingeben, werden diese auch auf der gleichen Position in den anderen, ausgewählten Tabellen erscheinen. Beispielsweise werden Daten, die in die Zelle A1 eingegeben werden, automatisch in die Zellen A1 aller ausgewählten Tabellen übernommen."
#: filters.xhp
msgctxt ""
@@ -5700,7 +5700,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Click OK."
-msgstr "Klicken Sie auf <emph>OK</emph>."
+msgstr "Klicken Sie auf OK."
#: format_value_userdef.xhp
msgctxt ""
@@ -6781,7 +6781,7 @@ msgctxt ""
"par_id3153158\n"
"help.text"
msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
-msgstr "Gehen Sie wie folgt vor, wenn Sie einer Zahlenspalte in Textformat ein numerisches Format zuweisen möchten (z. B. den Text \"000123\" in die Zahl \"123\" umwandeln):"
+msgstr "Gehen Sie wie folgt vor, wenn Sie einer Zahlenspalte in Textformat ein numerisches Format zuweisen möchten (beispielsweise den Text \"000123\" in die Zahl \"123\" umwandeln):"
#: integer_leading_zero.xhp
msgctxt ""
@@ -7568,7 +7568,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
-msgstr "Der Matrixbereich wird automatisch vor Änderungen wie beispielsweise dem Löschen von Zeilen oder Spalten geschützt. Die Formatierung, z. B. der Zellenhintergrund, kann jedoch weiterhin bearbeitet werden."
+msgstr "Der Matrixbereich wird automatisch vor Änderungen wie dem Löschen von Zeilen oder Spalten geschützt. Die Formatierung, beispielsweise der Zellenhintergrund, kann jedoch weiterhin bearbeitet werden."
#: move_dragdrop.xhp
msgctxt ""
@@ -7912,7 +7912,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
-msgstr "Sie erzeugen Artikel mit einem Verkaufspreis von je 10 €. Die Produktionskosten pro Stück belaufen sich auf 2 €, hinzu kommen FixkKosten von 10.000 € pro Jahr. Wie hoch ist Ihr Jahresgewinn bei einer bestimmten Anzahl verkaufter Artikel?"
+msgstr "Sie produzieren Spielzeug mit einem Verkaufspreis von je 10 €. Die Produktionskosten pro Stück belaufen sich auf 2 €, hinzu kommen Fixkosten von 10.000 € pro Jahr. Wie hoch ist Ihr Jahresgewinn bei einer bestimmten Anzahl verkaufter Artikel?"
#: multioperation.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 6a6fa9b1f00..cbce143f504 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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-17 19:41+0000\n"
+"PO-Revision-Date: 2017-04-01 08:44+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489779718.000000\n"
+"X-POOTLE-MTIME: 1491036252.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -216,7 +216,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
-msgstr "In die Eingabefelder können Werte in verschiedenen Maßeinheiten eingegeben werden. Die Standardeinheit ist hier Zentimeter. Möchten Sie einen Abstand von genau 1 Zoll erzielen, so geben Sie 1'' ein. Je nach Kontext stehen weitere Einheiten wie z. B. 12 pt für einen Abstand von 12 Point zur Verfügung. Wenn der Wert in der neuen Einheit nicht realistisch ist, wird automatisch ein vordefinierter Höchst- oder Mindestwert eingesetzt."
+msgstr "In die Eingabefelder können Werte in verschiedenen Maßeinheiten eingegeben werden. Die Standardeinheit ist hier Zentimeter. Möchten Sie einen Abstand von genau 1 Zoll erzielen, so geben Sie 1'' ein. Je nach Kontext stehen weitere Einheiten wie beispielsweise 12 pt für einen Abstand von 12 Punkten zur Verfügung. Wenn der Wert in der neuen Einheit nicht realistisch ist, wird automatisch ein vordefinierter Höchst- oder Mindestwert eingesetzt."
#: 00000001.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 9dbd58c4419..5aeead41f32 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-27 03:45+0000\n"
-"Last-Translator: Gilward_Kukel <gilward.kukel@gmail.com>\n"
+"PO-Revision-Date: 2017-04-16 14:56+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490586319.000000\n"
+"X-POOTLE-MTIME: 1492354595.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -6692,7 +6692,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Um alle Zellen einer Tabelle auszuwählen, klicken Sie auf die Schaltfläche an der Schnittstelle zwischen Spalten- und Zeilenkopf in der linken oberen Ecke der Tabelle.</caseinline> <defaultinline/> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Um alle Zellen einer Tabelle auszuwählen, klicken Sie auf die Schaltfläche an der Schnittstelle zwischen Spalten- und Zeilenkopf in der linken oberen Ecke der Tabelle.</caseinline><defaultinline/></switchinline>"
#: 02090000.xhp
msgctxt ""
@@ -11818,7 +11818,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Format - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo </emph>button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bei Änderungen, die mit <emph>Format - AutoKorrektur - Anwenden und Änderungen bearbeiten</emph> vorgenommen wurden, ist der Befehl <emph>Rückgängig</emph> als Schaltfläche in diesem Dialog enthalten.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Macht den letzten Annahme- oder Verwerfungsbefehl rückgängig.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bei Änderungen, die mit <emph>Extras - AutoKorrektur - Anwenden und Änderungen bearbeiten</emph> vorgenommen wurden, ist der Befehl <emph>Rückgängig</emph> als Schaltfläche in diesem Dialog enthalten.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Macht den letzten Annahme- oder Verwerfungsbefehl rückgängig.</ahelp></caseinline></switchinline>"
#: 02230401.xhp
msgctxt ""
@@ -15321,7 +15321,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>format codes; numbers</bookmark_value> <bookmark_value>conditions; in number formats</bookmark_value> <bookmark_value>number formats; codes</bookmark_value> <bookmark_value>currency formats</bookmark_value> <bookmark_value>formats;of currencies/date/time</bookmark_value> <bookmark_value>numbers; date, time and currency formats</bookmark_value> <bookmark_value>Euro; currency formats</bookmark_value> <bookmark_value>date formats</bookmark_value> <bookmark_value>times, formats</bookmark_value> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value>"
-msgstr "<bookmark_value>Formatcodes;Zahlen</bookmark_value> <bookmark_value>Bedingungen;in Zahlenformaten</bookmark_value> <bookmark_value>Zahlenformate;Codes</bookmark_value> <bookmark_value>Währungsformate</bookmark_value> <bookmark_value>Formats;Währungen/Daten/Zeiten</bookmark_value> <bookmark_value>Zahlen;Datums-/Zeit-/Währungsformate</bookmark_value> <bookmark_value>Euro;Währungsformate</bookmark_value> <bookmark_value>Datem;Formate</bookmark_value> <bookmark_value>Zeiten:Formate</bookmark_value> <bookmark_value>Prozente;Formate</bookmark_value> <bookmark_value>Wissenschaftliche Schreibweise;Formate</bookmark_value> <bookmark_value>Technische Schreibweise;Formate</bookmark_value> <bookmark_value>Brüche;Formate</bookmark_value>"
+msgstr "<bookmark_value>Formatcodes;Zahlen</bookmark_value> <bookmark_value>Bedingungen;in Zahlenformaten</bookmark_value> <bookmark_value>Zahlenformate;Codes</bookmark_value> <bookmark_value>Währungsformate</bookmark_value> <bookmark_value>Formate;Währungen/Daten/Zeiten</bookmark_value> <bookmark_value>Zahlen;Datums-/Zeit-/Währungsformate</bookmark_value> <bookmark_value>Euro;Währungsformate</bookmark_value> <bookmark_value>Datum;Formate</bookmark_value> <bookmark_value>Zeiten;Formate</bookmark_value> <bookmark_value>Prozente;Formate</bookmark_value> <bookmark_value>Wissenschaftliche Schreibweise;Formate</bookmark_value> <bookmark_value>Technische Schreibweise;Formate</bookmark_value> <bookmark_value>Brüche;Formate</bookmark_value>"
#: 05020301.xhp
msgctxt ""
@@ -33721,7 +33721,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "Zum Ein- oder Ausschalten der AutoKorrektur-Funktion wählen Sie in $[officename] Calc <emph>Extras - Zellinhalte - AutoEingabe</emph> und in $[officename] Writer <emph>Format - AutoKorrektur - Während der Eingabe</emph>. Wenn Sie die AutoKorrektur-Einstellungen auf ein gesamtes Textdokument anwenden möchten, wählen Sie <emph>Format - AutoKorrektur - Anwenden</emph>."
+msgstr "Zum Ein- oder Ausschalten der AutoKorrektur-Funktion wählen Sie in $[officename] Calc <emph>Extras - AutoEingabe</emph> und in $[officename] Writer <emph>Extras - AutoKorrektur - Während der Eingabe</emph>. Wenn Sie die AutoKorrektur-Einstellungen auf ein gesamtes Textdokument anwenden möchten, wählen Sie <emph>Extras - AutoKorrektur - Anwenden</emph>."
#: 06040000.xhp
msgctxt ""
@@ -33772,7 +33772,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "In Textdokumenten können Sie wählen, ob die AutoKorrektur während der Eingabe [E] oder nur bei der Nachbearbeitung [N] eines Texts mit <emph>Format - AutoKorrektur - Anwenden</emph> angewendet wird."
+msgstr "In Textdokumenten können Sie wählen, ob die AutoKorrektur während der Eingabe [E] oder nur bei der Nachbearbeitung [N] eines Texts mit <emph>Extras - AutoKorrektur - Anwenden</emph> angewendet wird."
#: 06040100.xhp
msgctxt ""
@@ -34850,7 +34850,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/applylocalizedpage/startsingle\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/applylocalizedpage/startsingle\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Format - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/applylocalizedpage/startsingle\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -34868,7 +34868,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/applylocalizedpage/enddouble\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/applylocalizedpage/enddouble\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Format - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/applylocalizedpage/enddouble\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -36476,7 +36476,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space between numbering and text</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Mindestabstand zwischen Nummer und Text</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Mindestabstand zwischen Nummerierung und Text</caseinline></switchinline>"
#: 06050600.xhp
msgctxt ""
@@ -43656,7 +43656,7 @@ msgctxt ""
"par_idN10734\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiermt legen Sie eine JPEG-Komprimierung für Grafiken fest. Bei einer hohen Qualitätsstufe bleiben nahezu alle Pixel erhalten. Bei einer niedrigen Qualitätsstufe gehen einige Pixel verloren und es werden Artefakte eingeführt, doch die Dateigröße wird verringert.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiermit legen Sie eine JPEG-Komprimierung für Grafiken fest. Bei einer hohen Qualitätsstufe bleiben nahezu alle Pixel erhalten. Bei einer niedrigen Qualitätsstufe gehen einige Pixel verloren und es werden Artefakte eingeführt, doch die Dateigröße wird verringert.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index a3e316a38cd..881ec55d22b 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-18 05:31+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-04 15:37+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489815079.000000\n"
+"X-POOTLE-MTIME: 1491320252.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -18676,7 +18676,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Fontwork dialog from which you can insert styled text not possible through standard font formatting into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Öffnet den Dialog Fontwork, über dem Sie formatierten Text in Ihr Dokument einfügen können, der so nicht mittels Standardschriftformatierung möglich ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Öffnet den Dialog Fontwork, über den Sie formatierten Text in Ihr Dokument einfügen können, der so nicht mittels Standardschriftformatierung möglich ist.</ahelp>"
#: fontwork.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/autopi.po b/source/de/helpcontent2/source/text/shared/autopi.po
index 275f1dfebf7..f6dfaa9b2c1 100644
--- a/source/de/helpcontent2/source/text/shared/autopi.po
+++ b/source/de/helpcontent2/source/text/shared/autopi.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-24 20:02+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-16 15:03+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490385738.000000\n"
+"X-POOTLE-MTIME: 1492354980.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -4978,7 +4978,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "You have saved the files that have been created during the Export process in the c:\\Inet\\wwwroot\\presentation\\ directory. In this directory, the Export creates an HTML file that can be named, for example, as \"secret.htm\". You entered this name in the Save dialog (see above). The presenter can now browse to the HTML Export files by entering the http://myserver.com/presentation/secret.htm URL in any HTTP Browser having JavaScript support. The presenter is now able to modify the page using some form controls."
-msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die z.B. den Dateinamen geheim.htm erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern."
+msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die z.B. den Dateinamen \"geheim.htm\" erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML-Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern."
#: 01110200.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index 6d6c9b4a85a..3ae56655b1b 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-24 20:03+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-16 15:22+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490385812.000000\n"
+"X-POOTLE-MTIME: 1492356131.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -672,7 +672,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "If you do not want $[officename] to automatically recognize URLs as you are typing, there are several ways of turning off this feature."
-msgstr "Wenn Sie die automatische Erkennung von URLs beim Schreiben nicht wünschen, haben Sie mehrere Möglichkeiten, dieses Merkmal abzustellen:"
+msgstr "Wenn Sie die automatische URL-Erkennung beim Schreiben in $[officename] nicht wünschen, haben Sie mehrere Möglichkeiten, diese Funktion abzustellen."
#: autocorr_url.xhp
msgctxt ""
@@ -1935,7 +1935,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "To edit a chart title that you have inserted into a $[officename] document:"
-msgstr "Titel in einem Diagramm bearbeiten"
+msgstr "Um einen Diagrammtitel zu bearbeiten, den Sie in ein $[officename]-Dokument eingefügt haben:"
#: chart_title.xhp
msgctxt ""
@@ -5952,7 +5952,7 @@ msgctxt ""
"par_idN1066D\n"
"help.text"
msgid "Save and sign the document"
-msgstr "Speichern und signieren des Dokuments"
+msgstr "Speichern und Signieren des Dokuments"
#: digital_signatures.xhp
msgctxt ""
@@ -9998,7 +9998,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "An absolute path such as \"C:\\homepage\\graphics\\picture.gif\" would no longer function on the provider server. Neither a server nor the computer of a reader needs to have a C hard drive: operating systems such as Unix or MacOS do not recognize drive letters, and even if the folder homepage\\graphics existed, your picture would not be available. It is better to use relative addressing for file links."
-msgstr "Ein absoluter Pfad wie z.B. \"C:\\Homepage\\Bilder\\Bild.gif\" würde auf diesem Server nicht mehr funktionieren. Das Laufwerk C muss dabei weder auf dem Server noch auf den Rechnern der Leser Ihrer Homepage existieren. Selbst wenn es dort ein Verzeichnis Homepage\\Bilder gäbe, so wäre Ihr Bild dort nicht vorhanden. Für Links zu Dateien ist also die relative Adressierung vorzuziehen."
+msgstr "Ein absoluter Pfad wie \"C:\\Homepage\\Bilder\\Bild.gif\" würde auf dem Server des Providers nicht mehr funktionieren. Weder der Server noch der Rechner eines Lesers brauchen ein Laufwerk C: Betriebssysteme wie Unix oder MacOS haben keine Laufwerksbuchstaben, und selbst wenn es dort ein Verzeichnis Homepage\\Bilder gäbe, so wäre Ihr Bild dort nicht verfügbar. Für Verweise auf Dateien ist also die relative Adressierung vorzuziehen."
#: hyperlink_rel_abs.xhp
msgctxt ""
@@ -13233,7 +13233,7 @@ msgctxt ""
"par_idN107CC\n"
"help.text"
msgid "If you start a new line in a Writer text document by typing three or more hyphen characters and press the Enter key, the characters are removed and the previous paragraph gets a line as a bottom border."
-msgstr "Wenn Sie eine neue Zeile in einem Writer-Textdokument mit der Eingabe von drei aufeinander folgenden Minuszeichen oder Unterstrichen beginnen und dann die <item type=\"keycode\">Eingabetaste</item> drücken, werden die eingegebenen Zeichen entfernt und der vorangehende Absatz erhält als untere Umrandung eine Linie."
+msgstr "Wenn Sie eine neue Zeile in einem Writer-Textdokument mit der Eingabe von drei aufeinander folgenden Minuszeichen oder Unterstrichen beginnen und dann die Eingabetaste drücken, werden die eingegebenen Zeichen entfernt und der vorangehende Absatz erhält als untere Umrandung eine Linie."
#: line_intext.xhp
msgctxt ""
@@ -13370,7 +13370,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Klicken Sie auf OK."
+msgstr "Klicken Sie auf <emph>OK</emph> um den Dialog zu schließen."
#: linestyle_define.xhp
msgctxt ""
@@ -15601,7 +15601,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
-msgstr "Klicken Sie auf OK."
+msgstr "Klicken Sie auf <emph>OK</emph> um den Dialog zu schließen."
#: pageformat_max.xhp
msgctxt ""
@@ -16335,7 +16335,7 @@ msgctxt ""
"par_idN106EC\n"
"help.text"
msgid "Select any combination of the four options, then click <emph>OK</emph>."
-msgstr "Wählen Sie eine beliebige Kombination der vier Optionen aus und klicken Sie auf OK."
+msgstr "Wählen Sie eine beliebige Kombination der vier Optionen aus und klicken Sie auf <emph>OK</emph>."
#: print_faster.xhp
msgctxt ""
@@ -17109,7 +17109,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "If you move to a marked change with the mouse pointer, you will see a reference to the type of change, the author, date and time of day for the change in the Help Tip. If the Extended Tips are also enabled, you will also see any available comments on this change."
-msgstr "Führen Sie den Mauszeiger auf eine markierte Änderung, sehen Sie in der Tipphilfe einen Hinweis auf Art, Autor, Datum und Uhrzeit der Änderung. Wenn zusätzlich die Aktive Hilfe eingeschaltet ist (im Menü <emph>Hilfe</emph>), dann sehen Sie auch einen eventuellen Kommentar zu dieser Änderung."
+msgstr "Wenn Sie den Mauszeiger zu einer markierten Änderung bewegen, sehen Sie in der Tipphilfe einen Hinweis auf Art, Autor, Datum und Uhrzeit der Änderung. Wenn zusätzlich die <emph>Direkthilfe</emph> im Menü <emph>Hilfe</emph> eingeschaltet ist, sehen Sie auch eventuell vorhandene Kommentare zu dieser Änderung."
#: redlining_enter.xhp
msgctxt ""
@@ -17269,7 +17269,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Choose <emph>Protect Changes</emph>. This opens the <link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\"><emph>Password</emph></link> dialog."
-msgstr "Wählen Sie <emph>Vor Änderungen schützen...</emph>. Es öffnet sich der Dialog <link href=\"text/shared/01/password_dlg.xhp\" name=\"Kennwort\">Kennwort</link>."
+msgstr "Wählen Sie <emph>Vor Änderungen schützen...</emph>. Es öffnet sich der Dialog <link href=\"text/shared/01/password_dlg.xhp\" name=\"Kennwort\"><emph>Kennwort</emph></link>."
#: redlining_protect.xhp
msgctxt ""
@@ -18180,7 +18180,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents."
-msgstr "Wenn Sie über das Menü<emph> Datei</emph> - <emph>Neu</emph> ein neues Dokument öffnen, erhalten Sie jeweils ein leeres Dokument angezeigt, welches auf einer $[officename]-Standardvorlage beruht, also z. B. ein leeres Text- oder Tabellendokument. Sie können dieses Dokument bearbeiten und verändern oder durch ein bereits existierendes Dokument ersetzen, so dass Sie beim Öffnen eines neues Dokuments direkt Ihr ganz persönliches Dokument erhalten."
+msgstr "Wenn Sie über das Menü <emph>Datei - Neu</emph> ein neues Dokument erstellen, erhalten Sie ein leeres Dokument angezeigt, welches auf einer $[officename]-Vorlage beruht. Sie können diese Vorlage bearbeiten, verändern oder sie ersetzen, so dass das neue Dokument Ihre angepassten Stile oder anderen Inhalt enthält."
#: standard_template.xhp
msgctxt ""
@@ -19263,7 +19263,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Selection"
-msgstr "<emph>Auswahl</emph>"
+msgstr "Auswahl"
#: tabs.xhp
msgctxt ""
@@ -19837,7 +19837,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<link href=\"http://www.libreoffice.org/about-us/credits/\">See lists of code and Wiki contributors</link> on the LibreOffice website."
-msgstr "Schauen Sie sich die <link href=\"http://de.libreoffice.org/about-us/credits/\">Liste der zum Code und Wiki Beitragenden</link> auf der LibreOffice-Webseite an."
+msgstr "Schauen Sie sich die <link href=\"http://de.libreoffice.org/about-us/credits/\">Liste der zum Code und zum Wiki Beitragenden</link> auf der LibreOffice-Webseite an."
#: viewing_file_properties.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 8605b524fbe..3a69cafa93d 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-24 20:07+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-16 04:25+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490386051.000000\n"
+"X-POOTLE-MTIME: 1492316709.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1195,7 +1195,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Description"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Beschreibung"
#: 01010300.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Auswählen\">Auswählen...</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Übernehmen</link>"
#: 01010501.xhp
msgctxt ""
@@ -10080,7 +10080,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the <emph>Status</emph> Bar."
-msgstr "Schalten Sie die Iterationen ein, und die Formeln werden korrekt berechnet. Sind die Iterationen abgeschaltet, erhalten Sie eine Fehlermeldung, deren Text in der Statusleiste lautet: \"Zirkuläre Referenz\"."
+msgstr "Schalten Sie die Iterationen ein, um die Formeln korrekt zu berechnen, da sonst eine Fehlermeldung 'Zirkuläre Referenz' in der <emph>Statusleiste</emph> erscheint."
#: 01060500.xhp
msgctxt ""
@@ -14545,7 +14545,7 @@ msgctxt ""
"par_id2507201516150454\n"
"help.text"
msgid "When a variable is a UNO interface or structure, a list box appears when pressing the dot after a variable's name (like <item type=\"literal\">aVar.</item> [list box appears] ). Its methods and variables are listed in the list box, displayed just below. You can navigate between the suggested methods and variables with the arrow keys. To insert the selected entry, press the <item type=\"keycode\">Enter</item> key or double click on it with the mouse. To cancel the list box, press the <item type=\"keycode\">Esc</item> key."
-msgstr "Wenn eine Variable eine UNO-Schnittstelle oder -Struktur ist, erscheint bei Eingabe des Punktes nach einem Variablennamen ein Kästchen (z.B. bei <item type=\"literal\">aVar.</item> erscheint ein Kästchen). Dessen Methoden und Variablen sind dann in dem Kästchen aufgelistet, das knapp unterhalb angezeigt wird. Sie können mit den Pfeiltasten zwischen den vorgeschlagenen Methoden und Variablen wechseln. Um den markierten Eintrag einzufügen, drücken Sie die <item type=\"keycode\">Eingabetaste</item> oder klicken Sie doppelt mit der linken Maustaste auf diesen. Um das Kästchen auszublenden, drücken Sie die Taste <item type=\"keycode\">Esc</item>."
+msgstr "Wenn eine Variable eine UNO-Schnittstelle oder -Struktur ist, erscheint bei Eingabe des Punktes nach einem Variablennamen ein Kästchen (beispielsweise bei <item type=\"literal\">aVar.</item>). Dessen Methoden und Variablen sind dann in dem Kästchen aufgelistet, das knapp unterhalb angezeigt wird. Sie können mit den Pfeiltasten zwischen den vorgeschlagenen Methoden und Variablen wechseln. Um den markierten Eintrag einzufügen, drücken Sie die <item type=\"keycode\">Eingabetaste</item> oder klicken Sie doppelt mit der linken Maustaste auf diesen. Um das Kästchen auszublenden, drücken Sie die Taste <item type=\"keycode\">Esc</item>."
#: BasicIDE.xhp
msgctxt ""
@@ -14553,7 +14553,7 @@ msgctxt ""
"par_id2507201516150494\n"
"help.text"
msgid "When typing the method's name, and pressing the <item type=\"keycode\">Tab</item> key once, it will complete the selected entry, pressing the Tab key again will cycle through the matches with the longest prefix. For example, when <item type=\"literal\">aVar.aMeth</item> is typed, it will cycle through <item type=\"literal\">aMeth1, aMethod2, aMethod3</item> entries, and other entries are not hidden."
-msgstr "Wenn Sie den Namen einer Methode eingeben und dann einmal die Taste <item type=\"keycode\">Tabulator</item> drücken, wird der ausgewählte Eintrag vervollständigt, durch wiederholtes Drücken der Taste Tabulator wird zyklisch zwischen den Treffern gewechselt. Wenn Sie z.B. <item type=\"literal\">aVar.aMeth</item> eingegeben haben, wird zwischen den Einträgen <item type=\"literal\">aMeth1, aMethod2, aMethod3</item> gewechselt, während die anderen Einträge jeweils sichtbar bleiben."
+msgstr "Wenn Sie den Namen einer Methode eingeben und dann einmal die Taste <item type=\"keycode\">Tabulator</item> drücken, wird der ausgewählte Eintrag vervollständigt, durch wiederholtes Drücken der Taste Tabulator wird zyklisch zwischen den Treffern gewechselt. Wenn Sie beispielsweise <item type=\"literal\">aVar.aMeth</item> eingegeben haben, wird zwischen den Einträgen <item type=\"literal\">aMeth1, aMethod2, aMethod3</item> gewechselt, während die anderen Einträge jeweils sichtbar bleiben."
#: BasicIDE.xhp
msgctxt ""
@@ -15569,7 +15569,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "<ahelp hid=\".\">A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors.</ahelp>"
-msgstr "<ahelp hid=\".\">Ein Makro kann zum automatischen Starten eingerichtet werden, und es kann potentiell schädliche Aktionen wie z. B. das Löschen oder Umbenennen von Dateien ausführen. Diese Einstellung wird nicht empfohlen, wenn Sie Dokumente von anderen Autoren öffnen.</ahelp>"
+msgstr "<ahelp hid=\".\">Ein Makro kann zum automatischen Starten eingerichtet werden, und es kann potentiell schädliche Aktionen wie beispielsweise das Löschen oder Umbenennen von Dateien ausführen. Diese Einstellung wird nicht empfohlen, wenn Sie Dokumente von anderen Autoren öffnen.</ahelp>"
#: macrosecurity_ts.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress.po b/source/de/helpcontent2/source/text/simpress.po
index b4745c25cee..95119eb3881 100644
--- a/source/de/helpcontent2/source/text/simpress.po
+++ b/source/de/helpcontent2/source/text/simpress.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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2017-03-10 05:45+0000\n"
+"PO-Revision-Date: 2017-04-16 04:27+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489124710.000000\n"
+"X-POOTLE-MTIME: 1492316834.000000\n"
#: main0000.xhp
msgctxt ""
@@ -322,7 +322,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files.</ahelp>"
-msgstr "<ahelp hid=\".\">In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie z.B. Grafiken, Objekte, Symbole und andere Dateien.</ahelp>"
+msgstr "<ahelp hid=\".\">In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie beispielsweise Grafiken, Objekte, Symbole und andere Dateien.</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -1655,7 +1655,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Several views or pages are available when you design a slide show. For example, the Slide Sorter displays an overview of your slides in thumbnail form, while the Handout page contains both the slide and the text you want to distribute to the audience."
-msgstr "Beim Erstellen einer Präsentation stehen Ihnen mehrere Ansichten zur Verfügung. Die Foliensortierungsansicht zeigt Ihnen z.B. die Folien im Überblick, während die Handzettelansicht Ihnen zusätzlich zur Folie begleitenden Text für die Zuschauer anzeigt."
+msgstr "Beim Erstellen einer Präsentation stehen Ihnen mehrere Ansichten zur Verfügung. Die Foliensortierungsansicht zeigt Ihnen beispielsweise die Folien im Überblick, während die Handzettelansicht Ihnen zusätzlich zur Folie begleitenden Text für die Zuschauer anzeigt."
#: main0503.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index c05de113049..6d3bb0427e7 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-10 20:22+0000\n"
+"PO-Revision-Date: 2017-04-16 04:31+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489177350.000000\n"
+"X-POOTLE-MTIME: 1492317064.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Sets page orientation, page margins, background and other layout options."
-msgstr "Hier können Sie die Formatierung der Seiten bestimmen. Sie können diverse Vorgaben z. B. über das verwendete Papierformat, die Nummerierung, sowie die Randbreite treffen. In der Vorgabe haben neue Seiten ein für den Bildschirm passendes Format ohne Ränder."
+msgstr "Hier können Sie die Formatierung der Seiten bestimmen. Sie können diverse Vorgaben beispielsweise für das verwendete Papierformat, die Nummerierung sowie die Randbreite treffen. In der Vorgabe haben neue Seiten ein für den Bildschirm passendes Format ohne Ränder."
#: 01180001.xhp
msgctxt ""
@@ -7882,7 +7882,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:convert_to_contour\">Converts the selected object to a polygon, or a group of polygons.</ahelp> If the conversion creates a group of polygons (for example, when you convert a text object), then press F3 to enter the group before you can select an individual polygon."
-msgstr "<ahelp hid=\".uno:convert_to_contour\">Konvertiert das ausgewählte Objekt in ein Polygon oder eine Polygongruppe.</ahelp> Wenn bei der Konvertierung eine Polygongruppe entsteht (z. B. bei der Konvertierung eines Textobjekts) und Sie ein einzelnes Polygon auswählen möchten, dann drücken Sie zum Betreten der Gruppe die Taste F3."
+msgstr "<ahelp hid=\".uno:convert_to_contour\">Konvertiert das ausgewählte Objekt in ein Polygon oder eine Polygongruppe.</ahelp> Wenn bei der Konvertierung eine Polygongruppe entsteht (beispielsweise bei der Konvertierung eines Textobjekts) und Sie ein einzelnes Polygon auswählen möchten, dann drücken Sie zum Betreten der Gruppe die Taste F3."
#: 13050700.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/04.po b/source/de/helpcontent2/source/text/simpress/04.po
index bd96afab1db..53cb55a3919 100644
--- a/source/de/helpcontent2/source/text/simpress/04.po
+++ b/source/de/helpcontent2/source/text/simpress/04.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: 2016-01-08 13:42+0100\n"
-"PO-Revision-Date: 2017-03-15 05:10+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-09 09:58+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489554628.000000\n"
+"X-POOTLE-MTIME: 1491731914.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -75,7 +75,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
@@ -316,7 +316,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
@@ -557,7 +557,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
@@ -818,7 +818,7 @@ msgctxt ""
"88\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
@@ -1421,7 +1421,7 @@ msgctxt ""
"88\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
@@ -1740,7 +1740,7 @@ msgctxt ""
"par_idN110AA\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "<emph>Tastenkombination</emph>"
+msgstr "Tastenkombinationen"
#: 01020000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/guide.po b/source/de/helpcontent2/source/text/simpress/guide.po
index 7f4d21888d4..31bfb322980 100644
--- a/source/de/helpcontent2/source/text/simpress/guide.po
+++ b/source/de/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-17 20:25+0000\n"
+"PO-Revision-Date: 2017-04-16 04:40+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489782300.000000\n"
+"X-POOTLE-MTIME: 1492317659.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -215,7 +215,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "To edit the properties of the 3D object, use the <emph>Line and Filling</emph> toolbar and the <emph>3D Settings</emph> toolbar."
-msgstr "Zum Ändern der Eigenschaften des 3D-Objekts verwenden Sie die Symbolleisten \"Linie und Füllung\" und \"3D-Einstellungen\"."
+msgstr "Zum Ändern der Eigenschaften des 3D-Objekts verwenden Sie die Symbolleisten <emph>Linie und Füllung</emph> und <emph>3D-Einstellungen</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -498,7 +498,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "Select <emph>GIF - Graphics Interchange Format (.gif)</emph> in the <emph>File type </emph>list."
-msgstr "Wählen Sie als Dateityp \"GIF - Graphics Interchange Format (.gif)\" im Feld <emph>Dateityp</emph>."
+msgstr "Wählen Sie <emph>GIF - Graphics Interchange Format (.gif)</emph> in der Liste <emph>Dateityp</emph> aus."
#: animated_gif_save.xhp
msgctxt ""
@@ -2123,7 +2123,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "$[officename] Impress <emph>AutoLayouts</emph> use placeholders for slide titles, text, and objects. To select a placeholder, press <item type=\"keycode\">Ctrl+Enter</item>. To move to the next placeholder, press <item type=\"keycode\">Ctrl+Enter</item> again."
-msgstr "Die $[officename] Impress <emph>Auto-Layouts</emph> verwenden Platzhalter für Folientitel, Text und Objekte. Mit den Tasten Strg+Eingabetaste wählen Sie einen Platzhalter oder wechseln Sie von einem Platzhalter zum nächsten."
+msgstr "Die $[officename] Impress <emph>Auto-Layouts</emph> verwenden Platzhalter für Folientitel, Text und Objekte. Mit der Tastenkombination <item type=\"keycode\">Strg+Eingabetaste</item> wählen Sie einen Platzhalter aus. Um zum nächsten Platzhalter zu wechseln, drücken Sie die Tastenkombination <item type=\"keycode\">Strg+Eingabetaste</item> erneut."
#: keyboard.xhp
msgctxt ""
@@ -5292,7 +5292,7 @@ msgctxt ""
"par_id8270210\n"
"help.text"
msgid "Select some cell contents and right-click to open the context menu. Choose commands to change the cell's contents, like font size and line spacing."
-msgstr "Wählen Sie einige Zellinhalte aus und rechtsklicken Sie, um das Kontextmenü aufzurufen. Wählen Sie jetzt eine Funktion zum Ändern der Zellinhalte, z. B. Ändern der Zeichengröße oder des Zeilenabstands."
+msgstr "Wählen Sie einige Zellinhalte aus und rechtsklicken Sie, um das Kontextmenü aufzurufen. Wählen Sie jetzt eine Funktion zum Ändern der Zellinhalte, wie Ändern der Zeichengröße oder des Zeilenabstands."
#: table_insert.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath.po b/source/de/helpcontent2/source/text/smath.po
index 9ed067fc14b..175cf4edcf9 100644
--- a/source/de/helpcontent2/source/text/smath.po
+++ b/source/de/helpcontent2/source/text/smath.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-10 20:27+0000\n"
+"PO-Revision-Date: 2017-04-16 04:48+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489177651.000000\n"
+"X-POOTLE-MTIME: 1492318108.000000\n"
#: main0000.xhp
msgctxt ""
@@ -154,7 +154,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "Mit dem Assistenten gestalten Sie interaktiv Dokumente wie z.B. Geschäftsbriefe, Faxe usw., in die Sie Ihre gespeicherten Formeln einfügen können."
+msgstr "Mit dem Assistenten gestalten Sie interaktiv Dokumente wie Geschäftsbriefe und Faxe, in die Sie Ihre gespeicherten Formeln einfügen können."
#: main0101.xhp
msgctxt ""
@@ -225,7 +225,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "The commands in this menu are used to edit formulas. In addition to basic commands, (for example, copying contents) there are functions specific to $[officename] Math such as searching for placeholders or errors."
-msgstr "Hier stehen die Befehle zum Bearbeiten von Formeln. Neben allgemeinen Befehlen, z.B. um Inhalte zu kopieren, finden Sie speziell für $[officename] Math konzipierte wie das Suchen von Platzhaltern oder die Unterstützung bei der Fehlersuche."
+msgstr "Hier stehen die Befehle zum Bearbeiten von Formeln. Neben allgemeinen Befehlen (beispielsweise Inhalte kopieren) finden Sie spezielle Funktionen für $[officename] Math, wie das Suchen von Platzhaltern oder die Unterstützung bei der Fehlersuche."
#: main0103.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "You can create your own symbols and import characters from other fonts. You can add new symbols to the basic catalog of $[officename] Math symbols, or create your own special catalogs. Numerous special characters are also available."
-msgstr "Sie können eigene Symbole erstellen und Zeichen aus fremden Zeichensätzen übernehmen. Dem Grundkatalog von $[officename] Math an verfügbaren Zeichen können Sie beliebig viele neue hinzufügen und auch eigene, spezielle Kataloge zusammenstellen. Zahlreiche Sonderzeichen (z.B. halbe geschweifte Klammern) stehen Ihnen zur Verfügung."
+msgstr "Sie können eigene Symbole erstellen und Zeichen aus fremden Zeichensätzen übernehmen. Dem Grundkatalog von $[officename] Math an verfügbaren Zeichen können Sie beliebig viele neue hinzufügen und auch eigene, spezielle Kataloge zusammenstellen. Zahlreiche Sonderzeichen (beispielsweise halbe geschweifte Klammern) stehen Ihnen zur Verfügung."
#: main0503.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/01.po b/source/de/helpcontent2/source/text/smath/01.po
index c77f4d7f848..768e39a1bff 100644
--- a/source/de/helpcontent2/source/text/smath/01.po
+++ b/source/de/helpcontent2/source/text/smath/01.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-10 20:44+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-16 15:30+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489178650.000000\n"
+"X-POOTLE-MTIME: 1492356642.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -883,7 +883,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "You can also insert user-defined unary operators by typing <emph>uoper</emph> in the <emph>Commands</emph> window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command <emph>uoper %theta x</emph> produces a small Greek letter theta (a component of the <emph>$[officename] Math</emph> character set). You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "Mit <emph>uoper</emph> können Sie selbstdefinierte unäre Operatoren im Fenster <emph>Kommandos</emph> einfügen, gefolgt von der Syntax eines Zeichens. Dies ist u.a. nützlich, um Sonderzeichen in eine Formel einzubauen. Z.B. erzeugt <emph>uoper %theta x</emph> ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von <emph>$[officename] Math</emph> ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü <emph>Extras - Symbole - Katalog...</emph> definieren."
+msgstr "Mit <emph>uoper</emph> können Sie selbstdefinierte unäre Operatoren im Fenster <emph>Kommandos</emph> einfügen, gefolgt von der Syntax eines Zeichens. Dies ist unter anderem nützlich, um Sonderzeichen in eine Formel einzubauen. Beispielsweise erzeugt <emph>uoper %theta x</emph> ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von <emph>$[officename] Math</emph> ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü <emph>Extras - Symbole - Katalog...</emph> definieren."
#: 03090100.xhp
msgctxt ""
@@ -892,7 +892,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "You can also insert user-defined binary commands by typing <emph>boper</emph> into the <emph>Commands</emph> window. For example, the command <emph>y boper %theta x</emph> produces the small Greek letter theta preceded by a <emph>y</emph> and followed by an <emph>x</emph>. You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "Mit <emph>boper</emph> können sie selbstdefinierte binäre Operatoren im Fenster <emph>Kommandos</emph> einfügen. Z.B. erzeugt <emph>x boper %theta y</emph> ein kleines griechisches Theta mit einem vorangestellten <emph>x</emph> und gefolgt von einem <emph>y</emph>. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü <emph>Extras - Symbole - Katalog...</emph> definieren."
+msgstr "Mit <emph>boper</emph> können sie selbstdefinierte binäre Operatoren im Fenster <emph>Kommandos</emph> einfügen. Beispielsweise erzeugt <emph>x boper %theta y</emph> ein kleines griechisches Theta mit einem vorangestellten <emph>x</emph> und gefolgt von einem <emph>y</emph>. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü <emph>Extras - Symbole - Katalog...</emph> definieren."
#: 03090100.xhp
msgctxt ""
@@ -955,7 +955,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Type <emph>sub</emph> or <emph>sup</emph> in the Commands window to add indexes and powers to the characters in your formula; for example, a sub 2."
-msgstr "Geben Sie <emph>sub</emph> oder <emph>sup</emph> direkt in das Fenster <emph>Kommandos</emph> ein, um Indizes und Potenzen an die Zeichen Ihrer Formel anzufügen; z.B. <emph>a sub 2</emph>."
+msgstr "Geben Sie <emph>sub</emph> oder <emph>sup</emph> direkt in das Fenster Kommandos ein, um Indizes und Potenzen an die Zeichen Ihrer Formel anzufügen; beispielsweise a sub 2."
#: 03090100.xhp
msgctxt ""
@@ -964,7 +964,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "If you want to use a colon ':' as division sign, choose <emph>Tools - Symbols</emph> or click the <emph>Symbols</emph> icon on the Tools bar. Click the <emph>Edit</emph> button in the dialog that appears, then select the <emph>Special</emph> symbol set. Enter a meaningful name next to <emph>Symbol</emph>, for example, \"divide\" and then click the colon in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>OK</emph> to close the <emph>Symbols</emph> dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, <emph>a %divide b = c</emph>."
-msgstr "Wenn Sie lieber den Doppelpunkt ':' als Divisionszeichen verwenden möchten, wählen Sie <emph>Extras - Katalog...</emph> oder klicken auf das Symbol <emph>Katalog</emph> in der Symbolleiste Extras. Ein Klick auf die Schaltfläche <emph>Bearbeiten...</emph> öffnet den Dialog Symbole bearbeiten, wo Sie einen Symbolsatz, sinnvoller Weise den Symbolsatz <emph>Spezial</emph>, auswählen. Geben Sie im Kombinationsfeld <emph>Symbol</emph> einen möglichst einprägsamen Namen, beispielsweise \"geteilt\", ein und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen <emph>Hinzufügen</emph> und <emph>OK</emph>. Schließen Sie ebenfalls den <emph>Katalog</emph> mit einem Klick auf <emph>OK</emph>. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster <emph>a %geteilt b = c</emph> verwenden."
+msgstr "Wenn Sie lieber den Doppelpunkt ':' als Divisionszeichen verwenden möchten, wählen Sie <emph>Extras - Katalog...</emph> oder klicken auf das Symbol <emph>Katalog</emph> in der Symbolleiste Extras. Ein Klick auf die Schaltfläche <emph>Bearbeiten...</emph> öffnet den Dialog Symbole bearbeiten, wo Sie einen Symbolsatz, sinnvoller Weise den Symbolsatz <emph>Spezial</emph>, auswählen. Geben Sie im Kombinationsfeld <emph>Symbol</emph> einen möglichst einprägsamen Namen, beispielsweise \"geteilt\", ein und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen <emph>Hinzufügen</emph> und anschließend <emph>OK</emph>. Schließen Sie ebenfalls den <emph>Katalog</emph> mit einem Klick auf <emph>OK</emph>. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster <emph>a %geteilt b = c</emph> verwenden."
#: 03090100.xhp
msgctxt ""
@@ -3863,7 +3863,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CIRCLEX\">Inserts a placeholder with a circle over it.</ahelp> You can also type <emph>circle <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_CIRCLEX\">Fügt einen Platzhalter mit einme <emph>Überkreis (Kroužek)</emph> ein.</ahelp> Sie können auch <emph>circle <?></emph> direkt in das Fenster <emph>Kommandos</emph> eingeben."
+msgstr "<ahelp hid=\"HID_SMA_CIRCLEX\">Fügt einen Platzhalter mit einem Überkreis (Kroužek) ein.</ahelp> Sie können auch <emph>circle <?></emph> direkt in das <emph>Kommando</emph>fenster eingeben."
#: 03090600.xhp
msgctxt ""
@@ -10656,7 +10656,7 @@ msgctxt ""
"498\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung (in Klammern: Befehl im Kommandos-Fenster)</emph>"
+msgstr "Bedeutung"
#: 03091509.xhp
msgctxt ""
@@ -13018,7 +13018,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "To insert a symbol, select it from the list and click <emph>Insert</emph>. The corresponding command name appears in the <emph>Commands</emph> window."
-msgstr "Zum Einfügen eines Symbols wählen Sie es aus der Liste klicken auf <emph>Übernehmen</emph>. Das entsprechende Symbol wird in das Fenster <emph>Kommandos</emph> eingefügt."
+msgstr "Zum Einfügen eines Symbols wählen Sie es aus der Liste und klicken auf <emph>Einfügen</emph>. Das entsprechende Symbol wird in das Fenster <emph>Kommandos</emph> eingefügt."
#: 06010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/02.po b/source/de/helpcontent2/source/text/smath/02.po
index 18f1960d4f2..eb96eda4d51 100644
--- a/source/de/helpcontent2/source/text/smath/02.po
+++ b/source/de/helpcontent2/source/text/smath/02.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-04-22 23:39+0200\n"
-"PO-Revision-Date: 2017-01-31 05:52+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"PO-Revision-Date: 2017-04-01 08:47+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485841940.000000\n"
+"X-POOTLE-MTIME: 1491036447.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -48,7 +48,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Use this icon on the Tools bar to turn the Formula Cursor on or off.</ahelp> The part of the formula where the cursor is positioned in the <emph>Commands</emph> window is marked with a thin border when the formula cursor is active.</variable>"
-msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Mit diesem Symbol in der Hauptsymbolleiste schalten Sie den Formel-Cursor ein oder aus.</ahelp> Der Teil der Formel, in dem sich der Cursor im Fenster <emph>Kommandos</emph> befindet, durch einen dünnen Rand gekennzeichnet.</variable>"
+msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Mit diesem Symbol in der Hauptsymbolleiste schalten Sie den Formel-Cursor ein oder aus.</ahelp> Der Teil der Formel, in dem sich der Cursor im Fenster <emph>Kommandos</emph> befindet, wird durch einen dünnen Rand gekennzeichnet.</variable>"
#: 03010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/00.po b/source/de/helpcontent2/source/text/swriter/00.po
index 72687a2c6c1..85bd927a918 100644
--- a/source/de/helpcontent2/source/text/swriter/00.po
+++ b/source/de/helpcontent2/source/text/swriter/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-17 20:47+0000\n"
+"PO-Revision-Date: 2017-04-01 08:04+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489783666.000000\n"
+"X-POOTLE-MTIME: 1491033863.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1549,7 +1549,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Format - AutoCorrect - While Typing</emph></variable>"
-msgstr "<variable id=\"eingabe\">Menü <emph>Format - AutoKorrektur - Während der Eingabe</emph></variable>"
+msgstr "<variable id=\"eingabe\">Wählen Sie <emph>Extras - AutoKorrektur - Während der Eingabe</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Format - AutoCorrect</emph></variable>"
-msgstr "<variable id=\"autoformat1\">Menü <emph>Format - AutoKorrektur</emph></variable>"
+msgstr "<variable id=\"autoformat1\">Wählen Sie <emph>Extras - AutoKorrektur</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Format - AutoCorrect - Apply</emph></variable>"
-msgstr "<variable id=\"autoformat2\">Menü <emph>Format - AutoKorrektur - Anwenden</emph></variable>"
+msgstr "<variable id=\"autoformat2\">Wählen Sie <emph>Extras - AutoKorrektur - Anwenden</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1576,7 +1576,7 @@ msgctxt ""
"153\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Format - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr "<variable id=\"autoformat3\">Menü <emph>Format - AutoKorrektur - Anwenden und Änderungen bearbeiten</emph></variable>"
+msgstr "<variable id=\"autoformat3\">Wählen Sie <emph>Extras - AutoKorrektur - Anwenden und Änderungen bearbeiten</emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index da47506135e..ccc5efc2e09 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-24 20:07+0000\n"
+"PO-Revision-Date: 2017-04-17 03:07+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490386077.000000\n"
+"X-POOTLE-MTIME: 1492398472.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2240,7 +2240,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "To add a new path to an AutoText directory, click the <emph>Path</emph> button in the <emph>AutoText </emph>dialog."
-msgstr "Um einen neuen Pfad hinzuzufügen, klicken Sie auf die Schaltfläche <emph>Pfad</emph> im AutoText-Dialog."
+msgstr "Um einen neuen Pfad hinzuzufügen, klicken Sie auf die Schaltfläche <emph>Pfad</emph> im Dialog <emph>AutoText</emph>."
#: 02120000.xhp
msgctxt ""
@@ -6104,7 +6104,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "The following fields can only be inserted if the corresponding field type is selected in the <emph>Type </emph>list."
-msgstr "Die nachfolgenden Textfelder sind nur sichtbar oder aktivierbar, wenn jeweils der dazugehörige Feldtyp gewählt wurde."
+msgstr "Die folgenden Felder können nur eingefügt werden, falls der entsprechende Feldtyp in der Liste <emph>Typ</emph> ausgewählt wurde."
#: 04090001.xhp
msgctxt ""
@@ -6149,7 +6149,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Function"
-msgstr "<emph>Funktion</emph>"
+msgstr "Funktion"
#: 04090001.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090002.xhp
msgctxt ""
@@ -6714,7 +6714,7 @@ msgctxt ""
"par_id641193\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090002.xhp
msgctxt ""
@@ -7035,7 +7035,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090003.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090004.xhp
msgctxt ""
@@ -8413,7 +8413,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Field type"
-msgstr "<emph>Feldtyp</emph>"
+msgstr "Feldtyp"
#: 04090006.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090006.xhp
msgctxt ""
@@ -8809,7 +8809,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "$[officename] Tag"
-msgstr "<emph>$[officename] Tag</emph>"
+msgstr "$[officename] Tag"
#: 04090007.xhp
msgctxt ""
@@ -8935,7 +8935,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "$[officename] Tag"
-msgstr "<emph>$[officename] Tag</emph>"
+msgstr "$[officename] Tag"
#: 04090007.xhp
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"130\n"
"help.text"
msgid "Variable"
-msgstr "<emph>Variable</emph>"
+msgstr "Variable"
#: 04090200.xhp
msgctxt ""
@@ -9463,7 +9463,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090200.xhp
msgctxt ""
@@ -9778,7 +9778,7 @@ msgctxt ""
"133\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 04090200.xhp
msgctxt ""
@@ -10339,7 +10339,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "Opens a menu to insert an index or bibliography entry, as well as inserting a table of contents, index, and or bibliography."
-msgstr "Öffnet eine Untermenü, um ein Verzeichnis bzw. ein Verzeichnis- oder Literaturverzeichniseintrag einzufügen."
+msgstr "Öffnet eine Untermenü, um ein Verzeichnis bzw. einen Verzeichnis- oder Literaturverzeichniseintrag einzufügen."
#: 04120000.xhp
msgctxt ""
@@ -11579,7 +11579,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Entry in the Index"
-msgstr "<emph>Eintrag im Verzeichnis</emph>"
+msgstr "Verzeichniseintrag"
#: 04120213.xhp
msgctxt ""
@@ -12291,7 +12291,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Page number (#)"
-msgstr "Seitennr."
+msgstr "Seitenzahl (#)"
#: 04120221.xhp
msgctxt ""
@@ -18161,7 +18161,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "OLE object"
-msgstr "<emph>OLE-Objekt</emph>"
+msgstr "OLE-Objekt"
#: 05060700.xhp
msgctxt ""
@@ -18197,7 +18197,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "ImageMap area"
-msgstr "<emph>Verweissensitive Grafik-Area</emph>"
+msgstr "Verweissensitiver Grafikbereich"
#: 05060700.xhp
msgctxt ""
@@ -18206,7 +18206,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Hyperlink"
-msgstr "<emph>Hyperlink</emph>"
+msgstr "Hyperlink"
#: 05060700.xhp
msgctxt ""
@@ -18790,7 +18790,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Hyperlink"
-msgstr "<emph>Hyperlink</emph>"
+msgstr "Hyperlink"
#: 05060800.xhp
msgctxt ""
@@ -21143,7 +21143,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 05130000.xhp
msgctxt ""
@@ -21420,7 +21420,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "When a Numbering Style is created, a name is assigned to the numbering. This is why such templates are also called \"named\" numberings. Unnamed numberings, which are used for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>, can be created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the icons of the <link href=\"text/swriter/main0206.xhp\" name=\"object bar\">object bar</link>."
-msgstr "Beim Erstellen einer Listenvorlage wird der Liste ein Name zugewiesen, daher nennt man solche Vorlagen auch benannte Listen. Unbenannte Listen, welche zur <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direkten Formatierung\">direkten Formatierung</link> verwendet werden, können Sie mit dem Dialog <link href=\"text/shared/01/06050000.xhp\" name=\"Nummerierung und Aufzählungszeichen...\"><emph>Nummerierung und Aufzählungszeichen...</emph></link> oder mit den Symbolen der <link href=\"text/swriter/main0206.xhp\" name=\"Symbolleiste\">Symbolleiste</link> Nummerierung und Aufzählungszeichen erstellen."
+msgstr "Beim Erstellen einer Listenvorlage wird der Liste ein Name zugewiesen, daher nennt man solche Vorlagen auch benannte Listen. Unbenannte Listen, welche zur <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direkten Formatierung\">direkten Formatierung</link> verwendet werden, können Sie mit dem Dialog <link href=\"text/shared/01/06050000.xhp\" name=\"Nummerierung und Aufzählungszeichen...\">Nummerierung und Aufzählungszeichen...</link> oder mit den Symbolen der <link href=\"text/swriter/main0206.xhp\" name=\"Symbolleiste Formatierungen\">Symbolleiste Formatierungen</link> erstellen."
#: 05130100.xhp
msgctxt ""
@@ -22468,7 +22468,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoFormatApply\">Automatically formats the file according to the options that you set under <emph>Tools - AutoCorrect</emph> <emph>Options</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoFormatApply\">Formatiert die Datei automatisch entsprechend der von Ihnen unter <emph>Extras - AutoKorrektur-Optionen...</emph> eingestellten Vorgaben.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoFormatApply\">Formatiert die Datei automatisch entsprechend der von Ihnen unter <emph>Extras - AutoKorrektur - </emph><emph>AutoKorrektur-Optionen...</emph> eingestellten Vorgaben.</ahelp>"
#: 05150200.xhp
msgctxt ""
@@ -22629,7 +22629,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoFormatRedlineApply\">Automatically formats the file according to the options that you set under <emph>Tools - AutoCorrect</emph><emph> Options</emph>. In a dialog, you are asked to accept or reject the changes.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoFormatRedlineApply\">Formatiert die Datei automatisch gemäß den unter <emph>Extras - AutoKorrektur-Optionen...</emph> festgelegten Einstellungen. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoFormatRedlineApply\">Formatiert die Datei automatisch gemäß den unter <emph>Extras - AutoKorrektur - </emph><emph>AutoKorrektur-Optionen...</emph> festgelegten Einstellungen. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -23569,7 +23569,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<emph>Description</emph>"
-msgstr "<emph>Funktion</emph>"
+msgstr "<emph>Beschreibung</emph>"
#: 06060100.xhp
msgctxt ""
@@ -24071,7 +24071,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgstr "Bedeutung"
#: 06080100.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index c4e9a918b92..c5861a6306c 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-03-23 05:24+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-04-16 15:52+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490246666.000000\n"
+"X-POOTLE-MTIME: 1492357976.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -370,7 +370,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr "Wählen Sie <emph>Format - AutoKorrektur</emph> und stellen Sie sicher, dass <emph>Während der Eingabe</emph> aktiviert ist."
+msgstr "Wählen Sie <emph>Extras - AutoKorrektur</emph> und stellen Sie sicher, dass <emph>Während der Eingabe</emph> aktiviert ist."
#: auto_numbering.xhp
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Format - AutoCorrect - While Typing</emph>."
-msgstr "Entfernen Sie das Häkchen aus dem Kontrollkästchen <emph>Format - AutoKorrektur - Bei Eingabe</emph>, um die meisten AutoKorrektur-Funktionen zu deaktivieren."
+msgstr "Entfernen Sie das Häkchen aus dem Kontrollkästchen <emph>Extras - AutoKorrektur - Während der Eingabe</emph>, um die meisten AutoKorrektur-Funktionen zu deaktivieren."
#: auto_off.xhp
msgctxt ""
@@ -1324,7 +1324,7 @@ msgctxt ""
"par_id3148413\n"
"help.text"
msgid "If two adjacent text ranges' all border properties are identical (same style, width, color, padding and shadow), then those two ranges will be considered to be part of the same border group and rendered within the same border in the document."
-msgstr "Wenn für zwei benachbarte Textbereiche alle Rahmeneigenschaften gleich sind (Stil, Breite, Farbe, Abstände und Schatten), dann werden diese zwei Bereiche als ein Teil derselben Rahmengruppe angesehen und mit einem gemeinsamen Rahmen im Dokument dargestellt."
+msgstr "Wenn für zwei benachbarte Textbereiche alle Rahmeneigenschaften gleich sind (Stil, Breite, Farbe, Innenabstände und Schatten), dann werden diese zwei Bereiche als ein Teil derselben Rahmengruppe angesehen und mit einem gemeinsamen Rahmen im Dokument dargestellt."
#: border_character.xhp
msgctxt ""
@@ -2378,7 +2378,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Click in the first cell of the series you want to sum up, drag to the final cell, and then release.<br/>$[officename] inserts a formula for calculating the sum of the values in the current column."
-msgstr "Klicken Sie in die erste Zelle der Reihe, ziehen Sie den Mauszeiger über die letzte Zelle und lassen Sie ihn los."
+msgstr "Klicken Sie in die erste Zelle der zu addierenden Reihe, ziehen den Mauszeiger über die letzte Zelle und lassen dann los.<br/>$[officename] fügt eine Formel für die Summenberechnung der Werte in der aktuellen Spalte ein."
#: calculate_intable.xhp
msgctxt ""
@@ -2905,7 +2905,7 @@ msgctxt ""
"par_id3145567\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Caption dialog\">AutoCaption dialog</link>"
-msgstr "<link name=\"Beschriftungsdialog\" href=\"text/shared/optionen/01041100.xhp\">Beschriftungsdialog</link>"
+msgstr "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Beschriftungsdialog\">Beschriftungsdialog</link>"
#: captions_numbers.xhp
msgctxt ""
@@ -3917,7 +3917,7 @@ msgctxt ""
"183\n"
"help.text"
msgid "Field Type"
-msgstr "<emph>Feldtyp</emph>"
+msgstr "Feldtyp"
#: fields.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"184\n"
"help.text"
msgid "Property"
-msgstr "<emph>Eigenschaft</emph>"
+msgstr "Eigenschaft"
#: fields.xhp
msgctxt ""
@@ -5333,7 +5333,7 @@ msgctxt ""
"par_id3145808\n"
"help.text"
msgid "If you want to increase the spacing between footnote or endnote texts, you can add a top and bottom border to the corresponding paragraph style."
-msgstr "Wenn Sie den Abstand zwischen Fuß-Endnotentexten vergrößern möchten, können Sie der entsprechenden Absatzvorlage oben und unten eine Umrandung hinzufügen."
+msgstr "Wenn Sie den Abstand zwischen Fuß- oder Endnotentexten vergrößern möchten, können Sie der entsprechenden Absatzvorlage oben und unten eine Umrandung hinzufügen."
#: footnote_with_line.xhp
msgctxt ""
@@ -11287,7 +11287,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "Choose <emph>File</emph> - <emph>Print Preview</emph>."
-msgstr "Wählen Sie aus dem Menü <emph>Datei - Druckvorschau</emph>."
+msgstr "Wählen Sie aus dem Menü <emph>Datei</emph> - <emph>Druckvorschau</emph>."
#: print_preview.xhp
msgctxt ""
@@ -12456,7 +12456,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "Wählen Sie <emph>Format - AutoKorrektur - Anwenden</emph>."
+msgstr "Wählen Sie <emph>Extras - AutoKorrektur - Anwenden</emph>."
#: reset_format.xhp
msgctxt ""
@@ -12793,7 +12793,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "A search using a regular expression will work only within one paragraph. To search using a regular expression in more than one paragraph, do a separate search in each paragraph."
-msgstr "Eine Suche in der Sie einen Regulären Ausdruck verwenden, funktioniert nur innerhalb eines Absatzes. Um mit einem Regulären Ausdruck in mehr als einem Absatz suchen, starten Sie eine getrennte Suche in jedem Absatz."
+msgstr "Eine Suche, in der Sie einen Regulären Ausdruck verwenden, funktioniert nur innerhalb eines Absatzes. Um mit einem Regulären Ausdruck in mehr als einem Absatz suchen, starten Sie eine getrennte Suche in jedem Absatz."
#: search_regexp.xhp
msgctxt ""
@@ -14293,7 +14293,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "To delete a whole table, click in the table, and then choose <emph>Table - Delete - Table</emph>."
-msgstr "Um eine Tabelle zu löschen, führen Sie einen der folgenden Schritte aus:"
+msgstr "Um eine ganze Tabelle zu löschen, klicken Sie in sie und wählen Sie <emph>Tabelle - Löschen - Tabelle</emph>."
#: table_delete.xhp
msgctxt ""
@@ -14498,7 +14498,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Options"
-msgstr "<emph>Auswahl</emph>"
+msgstr "Optionen"
#: table_insert.xhp
msgctxt ""
@@ -14507,7 +14507,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "Is inserted as..."
-msgstr "<emph>Wird eingefügt als...</emph>"
+msgstr "Wird eingefügt als..."
#: table_insert.xhp
msgctxt ""
@@ -16094,7 +16094,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "Key"
-msgstr "<emph>Taste</emph>"
+msgstr "Taste"
#: text_nav_keyb.xhp
msgctxt ""
@@ -16103,7 +16103,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "Function"
-msgstr "<emph>Funktion</emph>"
+msgstr "Funktion"
#: text_nav_keyb.xhp
msgctxt ""
@@ -16920,7 +16920,7 @@ msgctxt ""
"par_id3153390\n"
"help.text"
msgid "For example, to change the bulleting symbol, click the <item type=\"menuitem\">Options</item> tab, click the <item type=\"menuitem\">Select</item> button next to <item type=\"menuitem\">Character</item>, and then select a special character. You can also click the <item type=\"menuitem\">Image</item> tab, and then click a symbol style in the <item type=\"menuitem\">Selection</item> area."
-msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register <item type=\"menuitem\">Optionen</item>, klicken Sie neben <item type=\"menuitem\">Zeichen</item> auf die Schaltfläche <item type=\"menuitem\">Durchsuchen...</item> und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register <item type=\"menuitem\">Bild</item> und dann auf auf eine Symbolvorlage im Bereich <item type=\"menuitem\">Auswahl</item> klicken."
+msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register <item type=\"menuitem\">Optionen</item>, dann neben <item type=\"menuitem\">Zeichen</item> auf die Schaltfläche <item type=\"menuitem\">Durchsuchen...</item> und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register <item type=\"menuitem\">Bild</item> und dann auf eine Symbolvorlage im Bereich <item type=\"menuitem\">Auswahl</item> klicken."
#: using_numbered_lists2.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/librelogo.po b/source/de/helpcontent2/source/text/swriter/librelogo.po
index e9bd7cc3700..e8f372c7c54 100644
--- a/source/de/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/de/helpcontent2/source/text/swriter/librelogo.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-08-06 22:51+0200\n"
-"PO-Revision-Date: 2017-03-24 20:08+0000\n"
+"PO-Revision-Date: 2017-04-01 08:51+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490386097.000000\n"
+"X-POOTLE-MTIME: 1491036662.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_230\n"
"help.text"
msgid "The LibreLogo toolbar (View » Toolbars » Logo) contains turtle moving, program start, stop, home, clear screen, program editor/syntax highlighting/translating icons and an input bar (command line)."
-msgstr "Die Symbolleiste LibreLogo (Ansicht » Symbolleisten » Logo) enthält Schaltflächen für Turtle-Bewegungen, Programmstart und -stopp, Anfang, Bildschirm säubern, Programmeditor sowie zum hervorheben/übersetzen der Syntax und eine Eingabezeile (Befehlszeile)."
+msgstr "Die Symbolleiste LibreLogo (Ansicht » Symbolleisten » Logo) enthält Schaltflächen für Turtle-Bewegungen, Programmstart und -stopp, Anfang, Bildschirm säubern, Programmeditor sowie zum Hervorheben/Übersetzen der Syntax und eine Eingabezeile (Befehlszeile)."
#: LibreLogo.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_345\n"
"help.text"
msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (Tools » Options » Language Settings » Languages » Western) and click on this icon to translate the Logo program to the selected language."
-msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras » Optionen... » Spracheinstellungen » Sprache » Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten."
+msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras » Optionen... » Spracheinstellungen » Sprache » Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten."
#: LibreLogo.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_415\n"
"help.text"
msgid "Turtle shape of LibreLogo is a normal fixed size drawing object. You can positionate and rotate it on standard way, too, using the mouse and the Rotate icon of the Drawing Object Properties toolbar. Modify Line Width, Line Color and Area Color settings of the turtle shape to set PENSIZE, PENCOLOR and FILLCOLOR attributes of LibreLogo."
-msgstr "Der Turtle in LibreLogo ist eine normales Zeichnungsobjekt mit fester Größe. Sie können dieses auf dem Standardweg positionieren und drehen, aber auch, indem Sie die Maus und das Symbol Drehen der Symbolleiste Zeichnungsobjekt-Eigenschaften verwenden. Ändern Sie die Eigenschaften Linienbreite, Linienfarbe und Flächenfarbe des Turtles, so werden auch die Attribute STIFTBREITE, STIFTFARBE und FÜLLFARBE von LibreLogo gesetzt."
+msgstr "Der Turtle in LibreLogo ist ein normales Zeichnungsobjekt mit fester Größe. Sie können dieses auf dem Standardweg positionieren und drehen, aber auch, indem Sie die Maus und das Symbol Drehen der Symbolleiste Zeichnungsobjekt-Eigenschaften verwenden. Ändern Sie die Eigenschaften Linienbreite, Linienfarbe und Flächenfarbe des Turtles, so werden auch die Attribute STIFTBREITE, STIFTFARBE und FÜLLFARBE von LibreLogo gesetzt."
#: LibreLogo.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_450\n"
"help.text"
msgid "LibreLogo is an easily localizable, Logo-like programming language, localized in several languages by LibreOffice native language communities. It is back-compatible with the older Logo systems in the case of the simple Logo programs used in education, eg."
-msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatbel zum älteren Logo-System, z.B. um es in der Bildung als einfache Programmiersprache zu verwenden."
+msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatibel zum älteren Logo-System, z.B. um es in der Bildung als einfache Programmiersprache zu verwenden."
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index 2428bd00c31..35080b4c688 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-23 05:13+0000\n"
+"PO-Revision-Date: 2017-04-06 04:17+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490246010.000000\n"
+"X-POOTLE-MTIME: 1491452243.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -17836,7 +17836,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Borders (Shift to overwrite)"
-msgstr "Rahmen (Umschalt zum Überschreiben)"
+msgstr "Umrandung (Umschalt zum Überschreiben)"
#: GenericCommands.xcu
msgctxt ""
@@ -18025,7 +18025,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Border Style"
-msgstr "Rahmenstil"
+msgstr "Umrandungsstil"
#: GenericCommands.xcu
msgctxt ""
@@ -18034,7 +18034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Border Color"
-msgstr "Rahmenfarbe"
+msgstr "Umrandungsfarbe"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/de/sc/source/ui/src.po b/source/de/sc/source/ui/src.po
index f1808260ecd..63f913d8dce 100644
--- a/source/de/sc/source/ui/src.po
+++ b/source/de/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: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-03-23 05:15+0000\n"
+"PO-Revision-Date: 2017-04-01 08:36+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490246121.000000\n"
+"X-POOTLE-MTIME: 1491035798.000000\n"
#: filter.src
msgctxt ""
@@ -9796,7 +9796,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges."
-msgstr "Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen umfasst."
+msgstr "Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen erfüllen."
#: scfuncs.src
msgctxt ""
@@ -11056,7 +11056,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates subtotals in a spreadsheet."
-msgstr "Berechnet Zwischenergebnisse in einem Tabellendokumenten."
+msgstr "Berechnet Zwischenergebnisse in einem Tabellendokument."
#: scfuncs.src
msgctxt ""
@@ -15942,7 +15942,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
-msgstr "Berechnet die Werte Wahrscheinlichkeitsdichtefunktion oder der kumulativen Verteilungsfunktion der Gammaverteilung."
+msgstr "Berechnet die Werte der Wahrscheinlichkeitsdichtefunktion oder der kumulativen Verteilungsfunktion der Gammaverteilung."
#: scfuncs.src
msgctxt ""
@@ -21740,7 +21740,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Removes all nonprintable characters from text."
-msgstr "Löscht Nicht druckbare Zeichen aus dem Text."
+msgstr "Löscht nicht druckbare Zeichen aus dem Text."
#: scfuncs.src
msgctxt ""
diff --git a/source/de/scaddins/source/analysis.po b/source/de/scaddins/source/analysis.po
index 2cc276eba4e..cb9e8b9d507 100644
--- a/source/de/scaddins/source/analysis.po
+++ b/source/de/scaddins/source/analysis.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2017-01-18 10:39+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"PO-Revision-Date: 2017-04-01 08:37+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484735983.000000\n"
+"X-POOTLE-MTIME: 1491035853.000000\n"
#: analysis.src
msgctxt ""
@@ -634,7 +634,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a random integer between the numbers you specify"
-msgstr "Liefert eine zufällige ganz Zahl aus dem angegebenen Bereich"
+msgstr "Liefert eine zufällige ganze Zahl aus dem angegebenen Bereich"
#: analysis.src
msgctxt ""
@@ -1929,7 +1929,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the product of several complex numbers"
-msgstr "Liefert das Produkt mehrer komplexer Zahlen"
+msgstr "Liefert das Produkt mehrerer komplexer Zahlen"
#: analysis.src
msgctxt ""
@@ -2127,7 +2127,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the tangent of a complex number"
-msgstr "Liefert den Tangenz einer komplexen Zahl"
+msgstr "Liefert den Tangens einer komplexen Zahl"
#: analysis.src
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the price per 100 currency units face value of a discounted security"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen Werpapiers"
+msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen Wertpapiers"
#: analysis.src
msgctxt ""
@@ -4080,7 +4080,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts a price expressed as a decimal into a price expressed as a fraction"
-msgstr "Konvertiert eine Notierung in dezimaler Schreibweise in eine gemischten Dezimalbruch"
+msgstr "Konvertiert eine Notierung in dezimaler Schreibweise in einen gemischten Dezimalbruch"
#: analysis.src
msgctxt ""
diff --git a/source/de/scp2/source/ooo.po b/source/de/scp2/source/ooo.po
index 753ac96c37d..2d7d66effb9 100644
--- a/source/de/scp2/source/ooo.po
+++ b/source/de/scp2/source/ooo.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-14 11:16+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"PO-Revision-Date: 2017-04-01 08:38+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484392615.000000\n"
+"X-POOTLE-MTIME: 1491035916.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_NL\n"
"LngText.text"
msgid "Dutch"
-msgstr "Holländisch"
+msgstr "Niederländisch"
#: module_helppack.ulf
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_NL\n"
"LngText.text"
msgid "Dutch"
-msgstr "Holländisch"
+msgstr "Niederländisch"
#: module_langpack.ulf
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_NL\n"
"LngText.text"
msgid "Dutch"
-msgstr "Holländisch"
+msgstr "Niederländisch"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/de/sfx2/source/dialog.po b/source/de/sfx2/source/dialog.po
index 6d5ee1d10b2..2d9b33f6c77 100644
--- a/source/de/sfx2/source/dialog.po
+++ b/source/de/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-21 04:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 11:39+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487649618.000000\n"
+"X-POOTLE-MTIME: 1492083567.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchisch"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Gießkannenmodus"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Neue Vorlage aus Auswahl"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Vorlage aktualisieren"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/de/sfx2/uiconfig/ui.po b/source/de/sfx2/uiconfig/ui.po
index a645683845a..66129e0a8f0 100644
--- a/source/de/sfx2/uiconfig/ui.po
+++ b/source/de/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-21 04:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 11:40+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487651428.000000\n"
+"X-POOTLE-MTIME: 1492083648.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Alle Warenzeichen und eingetragenen Warenzeichen, die hier erwähnt werden, sind Eigentum ihrer jeweiligen Eigentümer.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice-Beitragende. Alle Rechte vorbehalten.\n"
+"Copyright © 2000–2017 LibreOffice-Beitragende. Alle Rechte vorbehalten.\n"
"\n"
"Dieses Produkt wurde durch %OOOVENDOR erstellt, basierend auf OpenOffice.org, welches dem Copyright 2000, 2011 Oracle und/oder seinen Tochtergesellschaften unterliegt. %OOOVENDOR erkennt alle Gemeinschaftsmitglieder an, bitte sehen Sie unter http://de.libreoffice.org/about-us/credits/ für weitere Details nach."
diff --git a/source/de/svtools/source/dialogs.po b/source/de/svtools/source/dialogs.po
index eaccae416ca..815259cff56 100644
--- a/source/de/svtools/source/dialogs.po
+++ b/source/de/svtools/source/dialogs.po
@@ -3,9 +3,9 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2017-01-14 10:10+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 11:43+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484388648.000000\n"
+"X-POOTLE-MTIME: 1492083838.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Formatierter Text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Formatierter Text [RTF]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/de/svtools/source/misc.po b/source/de/svtools/source/misc.po
index be49f4574f7..0b25d99b290 100644
--- a/source/de/svtools/source/misc.po
+++ b/source/de/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-31 04:58+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 11:14+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485838726.000000\n"
+"X-POOTLE-MTIME: 1491995652.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungarisch (Szekler Kerbschrift - Rovásírás)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Englisch (Malaysia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/de/svx/source/items.po b/source/de/svx/source/items.po
index 95e769ee030..583ce32d4c7 100644
--- a/source/de/svx/source/items.po
+++ b/source/de/svx/source/items.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-21 04:01+0000\n"
+"PO-Revision-Date: 2017-04-06 04:17+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487649703.000000\n"
+"X-POOTLE-MTIME: 1491452254.000000\n"
#: svxerr.src
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"Paragraph indent\n"
"itemlist.text"
msgid "Paragraph indent"
-msgstr "Einzug Absatz"
+msgstr "Absatzeinzug"
#: svxitems.src
msgctxt ""
@@ -640,7 +640,7 @@ msgctxt ""
"Size of Asian font\n"
"itemlist.text"
msgid "Size of Asian font"
-msgstr "Schriftgrad asiatische Schrift"
+msgstr "Schriftgrad asiatischer Schrift"
#: svxitems.src
msgctxt ""
@@ -649,7 +649,7 @@ msgctxt ""
"Language of Asian font\n"
"itemlist.text"
msgid "Language of Asian font"
-msgstr "Sprache asiatische Schrift"
+msgstr "Sprache asiatischer Schrift"
#: svxitems.src
msgctxt ""
@@ -658,7 +658,7 @@ msgctxt ""
"Posture of Asian font\n"
"itemlist.text"
msgid "Posture of Asian font"
-msgstr "Schriftstellung asiatische Schrift"
+msgstr "Schriftstellung asiatischer Schrift"
#: svxitems.src
msgctxt ""
@@ -667,7 +667,7 @@ msgctxt ""
"Weight of Asian font\n"
"itemlist.text"
msgid "Weight of Asian font"
-msgstr "Schriftstärke asiatische Schrift"
+msgstr "Schriftstärke asiatischer Schrift"
#: svxitems.src
msgctxt ""
@@ -685,7 +685,7 @@ msgctxt ""
"Size of complex scripts\n"
"itemlist.text"
msgid "Size of complex scripts"
-msgstr "Schriftgrad komplexe Skripte"
+msgstr "Schriftgrad komplexer Skripte"
#: svxitems.src
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"Language of complex scripts\n"
"itemlist.text"
msgid "Language of complex scripts"
-msgstr "Sprache komplexe Skripte"
+msgstr "Sprache komplexer Skripte"
#: svxitems.src
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"Posture of complex scripts\n"
"itemlist.text"
msgid "Posture of complex scripts"
-msgstr "Schriftstellung komplexe Skripte"
+msgstr "Schriftstellung komplexer Skripte"
#: svxitems.src
msgctxt ""
@@ -712,7 +712,7 @@ msgctxt ""
"Weight of complex scripts\n"
"itemlist.text"
msgid "Weight of complex scripts"
-msgstr "Schriftstärke komplexe Skripte"
+msgstr "Schriftstärke komplexer Skripte"
#: svxitems.src
msgctxt ""
@@ -739,7 +739,7 @@ msgctxt ""
"Text spacing\n"
"itemlist.text"
msgid "Text spacing"
-msgstr "Text Abstand"
+msgstr "Textabstand"
#: svxitems.src
msgctxt ""
@@ -961,7 +961,7 @@ msgctxt ""
"RID_SVXITEMS_ORI_STANDARD\n"
"string.text"
msgid "Default orientation"
-msgstr "Schreibrichtung Standard"
+msgstr "Standard-Schreibrichtung"
#: svxitems.src
msgctxt ""
diff --git a/source/de/svx/source/stbctrls.po b/source/de/svx/source/stbctrls.po
index 0dcae6a8a09..0cc2d62e10a 100644
--- a/source/de/svx/source/stbctrls.po
+++ b/source/de/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-21 04:15+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 11:34+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487650516.000000\n"
+"X-POOTLE-MTIME: 1492083294.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Folie auf Fenstergröße anpassen."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Kann nicht alle SmartArts laden. Das Speichern in Microsoft Office 2010 oder später würde dieses Problem vermeiden."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/de/svx/uiconfig/ui.po b/source/de/svx/uiconfig/ui.po
index b539a458b0e..960d22c7e78 100644
--- a/source/de/svx/uiconfig/ui.po
+++ b/source/de/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-02-24 04:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 11:44+0000\n"
"Last-Translator: Christian Kühl <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-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487910207.000000\n"
+"X-POOTLE-MTIME: 1492083863.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "_Im abgesicherten Modus fortfahren"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Beenden"
+msgid "_Restart in Normal Mode"
+msgstr "Im _normalen Modus neu starten"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/de/uui/uiconfig/ui.po b/source/de/uui/uiconfig/ui.po
index f98687362ca..3188566193f 100644
--- a/source/de/uui/uiconfig/ui.po
+++ b/source/de/uui/uiconfig/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-18 21:14+0000\n"
+"PO-Revision-Date: 2017-04-06 04:18+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479503651.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491452293.000000\n"
#: authfallback.ui
msgctxt ""
@@ -399,7 +399,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accept this certificate temporarily for this session"
-msgstr "Dieses Zertifikat für die aktuelle Sitzung akzeptieren"
+msgstr "Dieses Zertifikat vorübergehend für diese Sitzung akzeptieren"
#: unknownauthdialog.ui
msgctxt ""
diff --git a/source/de/vcl/source/src.po b/source/de/vcl/source/src.po
index 70cf62c7edc..a2c65f17017 100644
--- a/source/de/vcl/source/src.po
+++ b/source/de/vcl/source/src.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-27 23:56+0000\n"
-"Last-Translator: Gilward_Kukel <gilward.kukel@gmail.com>\n"
+"PO-Revision-Date: 2017-04-01 08:39+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490658997.000000\n"
+"X-POOTLE-MTIME: 1491035999.000000\n"
#: app.src
msgctxt ""
@@ -466,7 +466,7 @@ msgctxt ""
"STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY\n"
"string.text"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr "Die Datei existiert bereits in \"$dirname$\". Beim Ersetzen wird ihr Inhalt überschreiben."
+msgstr "Die Datei existiert bereits in \"$dirname$\". Beim Ersetzen wird ihr Inhalt überschrieben."
#: fpicker.src
msgctxt ""
diff --git a/source/dgo/cui/uiconfig/ui.po b/source/dgo/cui/uiconfig/ui.po
index 57deac85bf3..ff5e5c31ea0 100644
--- a/source/dgo/cui/uiconfig/ui.po
+++ b/source/dgo/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:09+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476796192.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480599209.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/dgo/sfx2/source/dialog.po b/source/dgo/sfx2/source/dialog.po
index d6a9c62342f..8c3ef6588dd 100644
--- a/source/dgo/sfx2/source/dialog.po
+++ b/source/dgo/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 09:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661569.000000\n"
+"X-POOTLE-MTIME: 1479114463.000000\n"
#: dialog.src
msgctxt ""
@@ -726,6 +726,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "हाइरार्किकल "
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/dgo/sfx2/uiconfig/ui.po b/source/dgo/sfx2/uiconfig/ui.po
index 7fe7720ae21..15df404730a 100644
--- a/source/dgo/sfx2/uiconfig/ui.po
+++ b/source/dgo/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661703.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601707.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -800,7 +800,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/dgo/svtools/source/dialogs.po b/source/dgo/svtools/source/dialogs.po
index 72adf4245d1..1cc0ffc2f97 100644
--- a/source/dgo/svtools/source/dialogs.po
+++ b/source/dgo/svtools/source/dialogs.po
@@ -3,16 +3,16 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 20:14+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440533693.000000\n"
#: addresstemplate.src
@@ -338,6 +338,14 @@ msgstr "रूप-रचत इबारत (RTF) "
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/dgo/svtools/source/misc.po b/source/dgo/svtools/source/misc.po
index 532f05b822c..e31d0972944 100644
--- a/source/dgo/svtools/source/misc.po
+++ b/source/dgo/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661968.000000\n"
+"X-POOTLE-MTIME: 1479115452.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3917,6 +3917,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/dgo/svx/source/stbctrls.po b/source/dgo/svx/source/stbctrls.po
index 41f5dd5a6d7..17383c8ea69 100644
--- a/source/dgo/svx/source/stbctrls.po
+++ b/source/dgo/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:56+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 09:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467662191.000000\n"
+"X-POOTLE-MTIME: 1479116975.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/dgo/svx/uiconfig/ui.po b/source/dgo/svx/uiconfig/ui.po
index 0abd4501f97..8f96ecdb887 100644
--- a/source/dgo/svx/uiconfig/ui.po
+++ b/source/dgo/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5093,16 +5093,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/dz/cui/uiconfig/ui.po b/source/dz/cui/uiconfig/ui.po
index 734e9710fa0..e2da118bfc6 100644
--- a/source/dz/cui/uiconfig/ui.po
+++ b/source/dz/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:09+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476796175.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480600177.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index ae26888deaf..067fe55fe61 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5727,7 +5727,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index 1aaa49c1f6a..cac56d88505 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 21:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2457,7 +2457,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/dz/sfx2/source/dialog.po b/source/dz/sfx2/source/dialog.po
index a3b23d86c73..47f6bbf090a 100644
--- a/source/dz/sfx2/source/dialog.po
+++ b/source/dz/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661568.000000\n"
+"X-POOTLE-MTIME: 1479125911.000000\n"
#: dialog.src
msgctxt ""
@@ -719,6 +719,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "སྡེ་རིམ་བཞིན།"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/dz/sfx2/uiconfig/ui.po b/source/dz/sfx2/uiconfig/ui.po
index 21e495f09e6..bff88279c07 100644
--- a/source/dz/sfx2/uiconfig/ui.po
+++ b/source/dz/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661649.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602091.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/dz/svtools/source/dialogs.po b/source/dz/svtools/source/dialogs.po
index a8db3347296..30ef3a6ca8e 100644
--- a/source/dz/svtools/source/dialogs.po
+++ b/source/dz/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 20:33+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440534790.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "རྩ་སྒྲིག་འབད་ཚར་བའི་ ཚིག
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/dz/svtools/source/misc.po b/source/dz/svtools/source/misc.po
index 666f245b398..2c6ce5bad82 100644
--- a/source/dz/svtools/source/misc.po
+++ b/source/dz/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 09:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462700755.000000\n"
+"X-POOTLE-MTIME: 1479126681.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3930,6 +3930,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/dz/svx/source/stbctrls.po b/source/dz/svx/source/stbctrls.po
index e78eee3aa08..17bda676e82 100644
--- a/source/dz/svx/source/stbctrls.po
+++ b/source/dz/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-14 12:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467662083.000000\n"
+"X-POOTLE-MTIME: 1479127978.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/dz/svx/uiconfig/ui.po b/source/dz/svx/uiconfig/ui.po
index a49b1e887c6..525d0084b1b 100644
--- a/source/dz/svx/uiconfig/ui.po
+++ b/source/dz/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/el/cui/uiconfig/ui.po b/source/el/cui/uiconfig/ui.po
index b0d8a61fe5c..b2bc3ee5e37 100644
--- a/source/el/cui/uiconfig/ui.po
+++ b/source/el/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-21 16:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:48+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1485016977.000000\n"
+"X-POOTLE-MTIME: 1491994134.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Πνευματικά δικαιώματα © 2000 - 2016 συντελεστών LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Πνευματικά δικαιώματα © 2000 - 2017 συντελεστών LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index 37cce4ad803..ab28945188e 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-12 05:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:54+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1484200324.000000\n"
+"X-POOTLE-MTIME: 1491994466.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5678,16 +5678,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index c3ad3617861..a18fbab746f 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-21 17:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-12 10:54+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1485020746.000000\n"
+"X-POOTLE-MTIME: 1491994480.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2454,8 +2454,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Επιλέξτε</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Επιλογή</link>"
#: 01010501.xhp
msgctxt ""
diff --git a/source/el/sfx2/source/dialog.po b/source/el/sfx2/source/dialog.po
index 59e96466a7a..30673cc0c33 100644
--- a/source/el/sfx2/source/dialog.po
+++ b/source/el/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-12 21:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:49+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481579948.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491994173.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ιεραρχικά"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Λειτουργία μορφοποίησης γεμίσματος"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Νέα τεχνοτροπία από επιλογή"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Ενημέρωση τεχνοτροπίας"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/el/sfx2/uiconfig/ui.po b/source/el/sfx2/uiconfig/ui.po
index 0d75bda4bfe..0b303c9ed91 100644
--- a/source/el/sfx2/uiconfig/ui.po
+++ b/source/el/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-10 09:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1484041357.000000\n"
+"X-POOTLE-MTIME: 1491994252.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,17 +795,17 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Το %PRODUCTNAME υπόκειται στους όρους της γενικής δημόσιας άδειας Mozilla, έκδοσης 2.0. Ένα αντίγραφο της MPL μπορεί να ληφθεί στο http://mozilla.org/MPL/2.0/.\n"
+"Το %PRODUCTNAME υπόκειται στους όρους της γενικής δημόσιας άδειας Mozilla, έκδοσης 2.0. Ένα αντίγραφο της MPL μπορεί να ληφθεί στο http://mozilla.org/MPL/2.0/.\n"
"\n"
"Πρόσθετες σημειώσεις πνευματικών δικαιωμάτων και όροι άδειας τρίτων που εφαρμόζονται σε μέρη του λογισμικού ορίζονται στο αρχείο LICENSE.html· επιλέξτε την άδεια εμφάνισης για να δείτε ακριβείς λεπτομέρειες στα αγγλικά.\n"
"\n"
"Όλα τα καταθέντα σήματα που αναφέρονται είναι ιδιοκτησία των αντίστοιχων κατόχων τους.\n"
"\n"
-"Πνευματικά δικαιώματα © 2000–2016 συντελεστών του LibreOffice. Όλα τα δικαιώματα διατηρούνται.\n"
+"Πνευματικά δικαιώματα © 2000–2017 συντελεστών του LibreOffice. Όλα τα δικαιώματα διατηρούνται.\n"
"\n"
"Αυτό το προϊόν δημιουργήθηκε από τον %OOOVENDOR, με βάση το OpenOffice.org, που είναι πνευματικά δικαιώματα 2000, 2011 της Oracle και/ή των θυγατρικών της. Ο %OOOVENDOR αναγνωρίζει όλα τα μέλη της κοινότητας, παρακαλούμε δείτε http://www.libreoffice.org/ για περισσότερες λεπτομέρειες."
diff --git a/source/el/svtools/source/dialogs.po b/source/el/svtools/source/dialogs.po
index f4df55b9b82..97ae766e840 100644
--- a/source/el/svtools/source/dialogs.po
+++ b/source/el/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-15 21:21+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:51+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1450214474.000000\n"
+"X-POOTLE-MTIME: 1491994280.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -340,6 +340,14 @@ msgstr "Μορφοποιημένο κείμενο [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Μορφοποιημένο κείμενο [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/el/svtools/source/misc.po b/source/el/svtools/source/misc.po
index eb1cd86cb66..b84571f98b4 100644
--- a/source/el/svtools/source/misc.po
+++ b/source/el/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-13 07:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:51+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1481614313.000000\n"
+"X-POOTLE-MTIME: 1491994286.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3888,6 +3888,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ουγγρικά (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Αγγλικά (Μαλαισία)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/el/svx/source/stbctrls.po b/source/el/svx/source/stbctrls.po
index c721030b473..7d68fa99843 100644
--- a/source/el/svx/source/stbctrls.po
+++ b/source/el/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 09:49+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:52+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481017762.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491994361.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Προσαρμογή ολίσθησης στο τρέχον παράθυ
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Αδυναμία φόρτωσης όλων των SmartArts. Η αποθήκευση στο Microsoft Office 2010 ή μεταγενέστερα θα απέφευγε αυτό το πρόβλημα."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/el/svx/uiconfig/ui.po b/source/el/svx/uiconfig/ui.po
index 8b23aab90a8..171e29db2c9 100644
--- a/source/el/svx/uiconfig/ui.po
+++ b/source/el/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2016-12-22 23:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 10:53+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1482449434.000000\n"
+"X-POOTLE-MTIME: 1491994414.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5076,16 +5076,16 @@ msgstr "_Συνέχεια σε ασφαλή λειτουργία"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Έ_ξοδος"
+msgid "_Restart in Normal Mode"
+msgstr "Ε_πανεκκίνηση σε κανονική λειτουργία"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/en-GB/cui/uiconfig/ui.po b/source/en-GB/cui/uiconfig/ui.po
index f18ae1465cb..440d3926b57 100644
--- a/source/en-GB/cui/uiconfig/ui.po
+++ b/source/en-GB/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-01 15:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:53+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: none\n"
"Language: en_GB\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480607088.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951223.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000–2017 LibreOffice contributors."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index 10ddba62a66..7bedc6f547e 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 14:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484490483.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 4b74489a931..c97b264f1f3 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-17 14:13+0000\n"
+"PO-Revision-Date: 2017-04-11 22:57+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484662421.000000\n"
+"X-POOTLE-MTIME: 1491951449.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7295,7 +7295,7 @@ msgctxt ""
"hd_id3146925\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulae</caseinline></switchinline></caseinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulae</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/04.po b/source/en-GB/helpcontent2/source/text/shared/04.po
index 6d8929c8a69..e32b3e6a91a 100644
--- a/source/en-GB/helpcontent2/source/text/shared/04.po
+++ b/source/en-GB/helpcontent2/source/text/shared/04.po
@@ -3,17 +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:02+0100\n"
-"PO-Revision-Date: 2012-06-21 15:51+0200\n"
-"Last-Translator: Stuart <stuart.swales.croftnuisk@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2017-04-11 22:58+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951484.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -617,7 +618,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Toggles the view between fullscreen mode and normal mode in Writer or Calc</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Toggles the view between fullscreen mode and normal mode in Writer or Calc</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Toggles the view between full-screen mode and normal mode in Writer or Calc</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 8ca19d7aa81..704f60d41dd 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-01-17 11:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484652520.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/en-GB/scaddins/source/analysis.po b/source/en-GB/scaddins/source/analysis.po
index debd6d455b5..a743f17d1c8 100644
--- a/source/en-GB/scaddins/source/analysis.po
+++ b/source/en-GB/scaddins/source/analysis.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-11-13 13:23+0000\n"
+"PO-Revision-Date: 2017-04-11 22:59+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1447421027.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951553.000000\n"
#: analysis.src
msgctxt ""
@@ -196,7 +196,9 @@ msgctxt ""
msgid ""
"Returns the number of the calendar week in which the specified date occurs.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
-msgstr "Returns the number of the calendar week in which the specified date occurs.This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
+msgstr ""
+"Returns the number of the calendar week in which the specified date occurs.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
#: analysis.src
msgctxt ""
@@ -288,7 +290,9 @@ msgctxt ""
msgid ""
"Returns the number of workdays between two dates.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
-msgstr "Returns the number of workdays between two dates.This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
+msgstr ""
+"Returns the number of workdays between two dates.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
#: analysis.src
msgctxt ""
@@ -677,7 +681,9 @@ msgctxt ""
msgid ""
"Returns the greatest common divisor.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
-msgstr "Returns the greatest common divisor.This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
+msgstr ""
+"Returns the greatest common divisor.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
#: analysis.src
msgctxt ""
@@ -706,7 +712,9 @@ msgctxt ""
msgid ""
"Returns the least common multiple.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
-msgstr "Returns the least common multiple.This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
+msgstr ""
+"Returns the least common multiple.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
#: analysis.src
msgctxt ""
diff --git a/source/en-GB/sfx2/source/dialog.po b/source/en-GB/sfx2/source/dialog.po
index 9165c9464cd..0a96f95bc05 100644
--- a/source/en-GB/sfx2/source/dialog.po
+++ b/source/en-GB/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-16 16:21+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:53+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479313311.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951239.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchical"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Fill Format Mode"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "New Style from Selection"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Update Style"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/en-GB/sfx2/uiconfig/ui.po b/source/en-GB/sfx2/uiconfig/ui.po
index 7c94245ce41..2bb42710b84 100644
--- a/source/en-GB/sfx2/uiconfig/ui.po
+++ b/source/en-GB/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 00:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:54+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: none\n"
"Language: en_GB\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480639503.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951262.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,17 +794,17 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n"
"\n"
-"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n"
+"Third Party Code Additional copyright notices and licence terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show Licence to see exact details in English.\n"
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
diff --git a/source/en-GB/svtools/source/dialogs.po b/source/en-GB/svtools/source/dialogs.po
index c8596593fb6..b77be952a9b 100644
--- a/source/en-GB/svtools/source/dialogs.po
+++ b/source/en-GB/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-09-09 13:32+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:54+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441805522.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951267.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Formatted text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Formatted text [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/en-GB/svtools/source/misc.po b/source/en-GB/svtools/source/misc.po
index bdd1f0ce131..aa189f7753d 100644
--- a/source/en-GB/svtools/source/misc.po
+++ b/source/en-GB/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-15 17:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:54+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479229498.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951270.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungarian (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "English (Malaysia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/en-GB/svx/source/stbctrls.po b/source/en-GB/svx/source/stbctrls.po
index bb3b45b9024..9c6c9ec9a55 100644
--- a/source/en-GB/svx/source/stbctrls.po
+++ b/source/en-GB/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-27 23:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:54+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482880732.000000\n"
+"X-POOTLE-MTIME: 1491951274.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Fit slide to current window."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/en-GB/svx/uiconfig/ui.po b/source/en-GB/svx/uiconfig/ui.po
index 78c5d275da6..faa2ca82c10 100644
--- a/source/en-GB/svx/uiconfig/ui.po
+++ b/source/en-GB/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2016-12-24 00:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-11 22:54+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482539322.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491951281.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "_Continue in Safe Mode"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Quit"
+msgid "_Restart in Normal Mode"
+msgstr "_Restart in Normal Mode"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/en-ZA/cui/uiconfig/ui.po b/source/en-ZA/cui/uiconfig/ui.po
index 03ef6654eb0..0233ef8ee79 100644
--- a/source/en-ZA/cui/uiconfig/ui.po
+++ b/source/en-ZA/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-21 22:10+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: none\n"
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index 2254797f377..fd76886c050 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 19:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5719,22 +5719,20 @@ msgid "Functions"
msgstr "Functions"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index abd2baac369..ba2887d59bc 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 22:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/en-ZA/sfx2/source/dialog.po b/source/en-ZA/sfx2/source/dialog.po
index 644e94c37dc..b325dfbfa15 100644
--- a/source/en-ZA/sfx2/source/dialog.po
+++ b/source/en-ZA/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-15 13:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467662809.000000\n"
+"X-POOTLE-MTIME: 1479215050.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchical"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/en-ZA/sfx2/uiconfig/ui.po b/source/en-ZA/sfx2/uiconfig/ui.po
index e0dad7b30c8..d428980e831 100644
--- a/source/en-ZA/sfx2/uiconfig/ui.po
+++ b/source/en-ZA/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:09+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: en_ZA\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662950.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480605738.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/en-ZA/svtools/source/dialogs.po b/source/en-ZA/svtools/source/dialogs.po
index 5390ad23547..d33c156b991 100644
--- a/source/en-ZA/svtools/source/dialogs.po
+++ b/source/en-ZA/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 21:14+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440537292.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formatted text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/en-ZA/svtools/source/misc.po b/source/en-ZA/svtools/source/misc.po
index 8d03915733b..5b7ccea195e 100644
--- a/source/en-ZA/svtools/source/misc.po
+++ b/source/en-ZA/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-21 22:13+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3903,6 +3903,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/en-ZA/svx/source/stbctrls.po b/source/en-ZA/svx/source/stbctrls.po
index a13ec3a97d2..334d59fbb27 100644
--- a/source/en-ZA/svx/source/stbctrls.po
+++ b/source/en-ZA/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-15 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467663502.000000\n"
+"X-POOTLE-MTIME: 1479217687.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/en-ZA/svx/uiconfig/ui.po b/source/en-ZA/svx/uiconfig/ui.po
index 49e464cfc72..c1c09c735ff 100644
--- a/source/en-ZA/svx/uiconfig/ui.po
+++ b/source/en-ZA/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/eo/cui/uiconfig/ui.po b/source/eo/cui/uiconfig/ui.po
index 6c477abb748..30c9cf89383 100644
--- a/source/eo/cui/uiconfig/ui.po
+++ b/source/eo/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-02 07:30+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480663845.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Kopirajto © 2000 - 2016 LibreOffice-kontribuintoj."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index 20e17424782..f38207be466 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 19:24+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5713,7 +5713,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5721,7 +5721,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index 391fc7520e8..958f94fce16 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 01:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/eo/sfx2/source/dialog.po b/source/eo/sfx2/source/dialog.po
index 97da262d705..dcf26765e51 100644
--- a/source/eo/sfx2/source/dialog.po
+++ b/source/eo/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-05 23:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480980344.000000\n"
#: dialog.src
@@ -720,6 +720,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkia"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/eo/sfx2/uiconfig/ui.po b/source/eo/sfx2/uiconfig/ui.po
index de358a5b3d3..f9be659c1cd 100644
--- a/source/eo/sfx2/uiconfig/ui.po
+++ b/source/eo/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-05 23:44+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480981466.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME estas disponebla laŭ la kondiĉoj de la Mozilla Public License Versio 2.0. La (anglalingva) teksto de la MPL-permesilo troviĝas ĉe http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Kopirajta informo kaj kondiĉoj de la Triapartia Koda Aldonaĵo, kiuj rilatas al partoj de la Programaro, estas prezentitaj en la dosiero LICENSE.html; elektu Vidigi Permesilon por vidigi la detalojn en la angla lingvo.\n"
-"\n"
-"Ĉiuj varmarkoj kaj registritaj varmarkoj ĉi tie menciitaj estas propraĵo de iliaj respektivaj posedantoj.\n"
-"\n"
-"Kopirajto © 2000, 2016 LibreOffice-kontribuintoj. Ĉiuj rajtoj estas rezervitaj.\n"
-"\n"
-"Ĉi tiun produkton kreis %OOOVENDOR, bazitan sur OpenOffice.org, kies Kopirajton 2000, 2011 posedas Oracle kaj ties filioj. %OOOVENDOR agnoskas ĉiujn komunumanojn. Bonvolu referi al http://www.libreoffice.org/ por pluaj detaloj."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/eo/svtools/source/dialogs.po b/source/eo/svtools/source/dialogs.po
index 74bbfac056c..94daa46181c 100644
--- a/source/eo/svtools/source/dialogs.po
+++ b/source/eo/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-01 21:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1451684115.000000\n"
@@ -340,6 +340,14 @@ msgstr "Formatita teksto [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/eo/svtools/source/misc.po b/source/eo/svtools/source/misc.po
index 38a8d43b653..7160a884247 100644
--- a/source/eo/svtools/source/misc.po
+++ b/source/eo/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-23 01:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
@@ -3888,6 +3888,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungara runoskribo"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/eo/svx/source/stbctrls.po b/source/eo/svx/source/stbctrls.po
index 2a7a4d83d39..13ae286fa29 100644
--- a/source/eo/svx/source/stbctrls.po
+++ b/source/eo/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-23 01:12+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -152,6 +152,14 @@ msgstr "Adapti lumbildon al la aktuala fenestro"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/eo/svx/uiconfig/ui.po b/source/eo/svx/uiconfig/ui.po
index fa6b5043eeb..b085f194865 100644
--- a/source/eo/svx/uiconfig/ui.po
+++ b/source/eo/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-03 22:42+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1483483325.000000\n"
@@ -5074,20 +5074,20 @@ msgstr "Daŭrigi en sekura reĝimo"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Ĉesi"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Apliki ŝanĝojn kaj restartigi"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/es/cui/source/dialogs.po b/source/es/cui/source/dialogs.po
index 5954682d8bd..4fd6f9b56d9 100644
--- a/source/es/cui/source/dialogs.po
+++ b/source/es/cui/source/dialogs.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-24 04:44+0000\n"
+"PO-Revision-Date: 2017-04-17 06:08+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479962670.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492409282.000000\n"
#: cuires.src
msgctxt ""
@@ -327,7 +327,7 @@ msgctxt ""
"RID_SVXSTR_HYPDLG_MACROACT2\n"
"string.text"
msgid "Trigger hyperlink"
-msgstr "Ejecutar hiperenlace"
+msgstr "Activar hiperenlace"
#: hyperdlg.src
msgctxt ""
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 36f1dc19420..37cd1fc9e0c 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-20 23:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490052282.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "© 2000–2017 de los colaboradores de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/es/desktop/source/deployment/registry/script.po b/source/es/desktop/source/deployment/registry/script.po
index 2644a9a0b29..47818d53112 100644
--- a/source/es/desktop/source/deployment/registry/script.po
+++ b/source/es/desktop/source/deployment/registry/script.po
@@ -3,17 +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: 2011-04-05 20:01+0200\n"
-"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-18 04:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492490247.000000\n"
#: dp_script.src
msgctxt ""
@@ -21,7 +22,7 @@ msgctxt ""
"RID_STR_BASIC_LIB\n"
"string.text"
msgid "%PRODUCTNAME Basic Library"
-msgstr "Biblioteca básica de %PRODUCTNAME"
+msgstr "Biblioteca de %PRODUCTNAME Basic"
#: dp_script.src
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 657df97402b..d658ad83654 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-23 07:03+0000\n"
+"PO-Revision-Date: 2017-04-17 06:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490252637.000000\n"
+"X-POOTLE-MTIME: 1492409257.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -34781,7 +34781,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Trigger Hyperlink"
-msgstr "Ejecutar hiperenlace"
+msgstr "Activar hiperenlace"
#: 05060700.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index f8d87dc643f..47192ad718a 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-25 22:05+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-18 03:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490479541.000000\n"
+"X-POOTLE-MTIME: 1492486396.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2778,7 +2778,7 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc - View</emph></link>."
-msgstr "Asimismo, es posible establecer la visualización de los encabezamientos de filas y columnas en <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc ▸ Ver</emph></link>."
+msgstr "Asimismo, es posible establecer la visualización de las cabeceras de filas y columnas en <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc ▸ Ver</emph></link>."
#: 03080000.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings."
-msgstr ""
+msgstr "Cuando escriba fechas como parte de las fórmulas, las barras y los guiones que se usen como separadores de fechas se interpretarán como operadores aritméticos. Por este motivo, las fechas formateadas de este modo no se reconocen como tales y producen cálculos erróneos. Para evitar que las fechas se interpreten como parte de las fórmulas, utilice la fórmula FECHA —p. ej., FECHA(1954;7;20)—, o bien, entrecomíllela y ordene sus componentes según la notación ISO 8601 —p. ej., \"1954-07-20\"—. Evite utilizar formatos regionales de fechas, como «07/20/54», porque estos pueden conllevar a errores de cálculo si abre el documento en sistemas con una configuración regional distinta."
#: 04060102.xhp
msgctxt ""
@@ -5677,7 +5677,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5685,7 +5685,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
@@ -58800,7 +58800,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Borra las tabla seleccionada del Piloto de datos.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Elimina la tabla dinámica seleccionada.</ahelp>"
#: 12090400.xhp
msgctxt ""
@@ -61620,7 +61620,7 @@ msgctxt ""
"par_id462646264626\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of rows or columns that meet criteria in multiple ranges.</variable></ahelp>"
-msgstr "<ahelp hid=\".\"><variable id=\"countifs_des\">Devuelve el número de filas o columnas que cumplen el criterio en múltiples rangos</variable></ahelp>"
+msgstr "<ahelp hid=\".\"><variable id=\"countifs_des\">Devuelve el número de filas o columnas que cumplen con criterios en varios intervalos.</variable></ahelp>"
#: func_countifs.xhp
msgctxt ""
@@ -63108,7 +63108,7 @@ msgctxt ""
"par_id312932390024933\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Códigos de error\">Códigos de error</link>"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -69902,7 +69902,7 @@ msgctxt ""
"par_id1701201618090553\n"
"help.text"
msgid "R^2"
-msgstr "R^2"
+msgstr "R²"
#: statistics_regression.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index 3f7c981050d..1fee3309077 100644
--- a/source/es/helpcontent2/source/text/scalc/guide.po
+++ b/source/es/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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-25 22:05+0000\n"
+"PO-Revision-Date: 2017-04-15 09:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490479558.000000\n"
+"X-POOTLE-MTIME: 1492248627.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Sheet - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
-msgstr ""
+msgstr "Diríjase a <item type=\"menuitem\">Hoja ▸ Enlazar con datos externos</item>. Verá el cuadro de diálogo <link href=\"text/scalc/01/04090000.xhp\" name=\"Datos externos\"><item type=\"menuitem\">Datos externos</item></link>."
#: cellreferences_url.xhp
msgctxt ""
@@ -4137,7 +4137,7 @@ msgctxt ""
"bm_id3150448\n"
"help.text"
msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
-msgstr "<bookmark_value>Piloto de datos;introducción</bookmark_value><bookmark_value>tabla dinámica, véase Piloto de datos</bookmark_value>"
+msgstr "<bookmark_value>función de tabla dinámica; introducción</bookmark_value><bookmark_value>Piloto de datos, consulte función Tabla dinámica</bookmark_value>"
#: datapilot.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_idN10643\n"
"help.text"
msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Agrupar tablas del Piloto de datos</link></variable>"
+msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Agrupar tablas dinámicas</link></variable>"
#: datapilot_grouping.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_idN10661\n"
"help.text"
msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
-msgstr "La tabla del Piloto de datos resultante puede contener múltiples entradas distintas. Al agrupar las entradas, puede mejorar el resultado visible."
+msgstr "La tabla dinámica resultante puede contener múltiples entradas distintas. Al agrupar las entradas, puede mejorar el resultado visible."
#: datapilot_grouping.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/schart/01.po b/source/es/helpcontent2/source/text/schart/01.po
index 8d4345cfb12..73a298e0073 100644
--- a/source/es/helpcontent2/source/text/schart/01.po
+++ b/source/es/helpcontent2/source/text/schart/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-25 22:08+0000\n"
+"PO-Revision-Date: 2017-03-31 17:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490479690.000000\n"
+"X-POOTLE-MTIME: 1490982182.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id180820161539033867\n"
"help.text"
msgid "Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series."
-msgstr ""
+msgstr "Las líneas de valor medio son líneas de tendencia especiales que muestran el valor medio. Vaya a <item type=\"menuitem\">Insertar ▸ Líneas de valor medio</item> para insertar líneas de valor medio para cada serie de datos."
#: 04050100.xhp
msgctxt ""
@@ -1453,7 +1453,7 @@ msgctxt ""
"par_id9337443\n"
"help.text"
msgid "To delete a trend line or mean value line, click the line, then press the Del key."
-msgstr ""
+msgstr "Para eliminar una curva de regresión o una línea de valores medios, pulse en la línea y oprima la tecla Supr."
#: 04050100.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 5707f0c8bf9..847dc6f271d 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-29 11:25+0000\n"
+"PO-Revision-Date: 2017-04-06 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490786723.000000\n"
+"X-POOTLE-MTIME: 1491443128.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -3105,7 +3105,7 @@ msgctxt ""
"bm_id3153383\n"
"help.text"
msgid "<bookmark_value>documents; exporting</bookmark_value><bookmark_value>converting; $[officename] documents</bookmark_value><bookmark_value>exporting;to foreign formats</bookmark_value>"
-msgstr "<bookmark_value>documentos;exportar</bookmark_value><bookmark_value>convertir;documentos de $[officename]</bookmark_value><bookmark_value>exportar;a formatos externos</bookmark_value><bookmark_value>tipos de documentos;modificar</bookmark_value>"
+msgstr "<bookmark_value>documentos;exportar</bookmark_value><bookmark_value>convertir;documentos de $[officename]</bookmark_value><bookmark_value>exportar;a formatos externos</bookmark_value>"
#: 01070001.xhp
msgctxt ""
@@ -19402,7 +19402,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Apply spacing between Asian, Latin and Complex text</emph>"
-msgstr "Usar espacio entre texto asiático, latino y complejo."
+msgstr "<emph>Aplicar espaciado entre textos asiáticos, latinos y complejos</emph>"
#: 05020700.xhp
msgctxt ""
@@ -22340,7 +22340,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Anula la configuración de <emph>Espacio </emph>y permite que el encabezado se extienda al área entre el encabezado y el texto del documento.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Anula la configuración de <emph>Espaciado</emph> y permite que la cabecera se extienda al área entre esta y el texto del documento.</ahelp>"
#: 05040300.xhp
msgctxt ""
@@ -26077,7 +26077,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
-msgstr "La hoja de modelo de bitmap predeterminada sirve como base para realizar variaciones del modelo de píxel. Tiene la posibilidad de modificar el modelo de píxel, así como de añadir sus propios diseños."
+msgstr "Para activar este editor, seleccione el mapa de bits <emph>En blanco</emph> de la lista."
#: 05210500.xhp
msgctxt ""
@@ -30379,7 +30379,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "<image id=\"img_id3150740\" src=\"cmd/sc_editdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150740\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150740\" src=\"cmd/sc_editdoc.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150740\">Icono</alt></image>"
+msgstr "<image id=\"img_id3150740\" src=\"cmd/sc_editdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150740\">Icono</alt></image>"
#: 05340400.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index 99c6c8cbbce..c2252e4b5d6 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-21 07:38+0000\n"
+"PO-Revision-Date: 2017-04-17 06:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490081934.000000\n"
+"X-POOTLE-MTIME: 1492409264.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -12606,7 +12606,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT\">Opens the <emph>Assign Macro</emph> dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT\">Abre el diálogo <emph>Asignar macro</emph>, en el que puede asignar su propio código programa a eventos como \"ratón sobre objeto\" o \"ejecutar hipervínculo\".</ahelp>"
+msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT\">Abre el cuadro de diálogo <emph>Asignar macro</emph>, en el que puede asignar su propio código de programa a sucesos como «ratón sobre objeto» o «activar hiperenlace».</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -13949,7 +13949,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Insert table heading"
-msgstr "Insertar encabezado de tabla"
+msgstr "Insertar título de tabla"
#: 12070100.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index 000b4cee1a7..3ab5ba38257 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-27 03:23+0000\n"
+"PO-Revision-Date: 2017-04-03 04:34+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490584989.000000\n"
+"X-POOTLE-MTIME: 1491194086.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Click inside the cell range that you want to present in your chart."
-msgstr "Seleccione los datos junto con los encabezados."
+msgstr "Pulse en el intervalo de celdas que quiere presentar en el diagrama."
#: chart_insert.xhp
msgctxt ""
@@ -2736,7 +2736,7 @@ msgctxt ""
"par_id170820161605423872\n"
"help.text"
msgid "If the file was opened from a CMIS server, choose <item type=\"menuitem\">File - Save</item>, click on the <emph>Save</emph> button or hit <item type=\"literal\">Ctrl + S</item>."
-msgstr ""
+msgstr "Si el archivo se ha abierto a partir de un servidor CMIS, seleccione <item type=\"menuitem\">Archivo ▸ Guardar</item>, pulse en el botón <emph>Guardar</emph> u oprima <item type=\"literal\">Ctrl + S</item>."
#: cmis-remote-files.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 5ed578a526b..061b382668c 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-21 07:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-18 03:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490079888.000000\n"
+"X-POOTLE-MTIME: 1492487760.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Elegir\">Elegir</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
@@ -5300,7 +5300,7 @@ msgctxt ""
"hd_id1972106\n"
"help.text"
msgid "Ctrl-click required to follow hyperlinks"
-msgstr "Ctrl-clic se requiere para seguir hipervínculos"
+msgstr "Ctrl + pulsación para abrir hiperenlaces"
#: 01030300.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index 3bdcc6bd318..928e7806a0d 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-29 11:18+0000\n"
+"PO-Revision-Date: 2017-04-18 03:34+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490786316.000000\n"
+"X-POOTLE-MTIME: 1492486458.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -18323,7 +18323,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Trigger Hyperlink"
-msgstr "Ejecutar hiperenlace"
+msgstr "Activar hiperenlace"
#: 05060700.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index f74cd94cc6f..8653155365e 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-03-29 11:23+0000\n"
+"PO-Revision-Date: 2017-04-18 03:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490786604.000000\n"
+"X-POOTLE-MTIME: 1492487858.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -2953,7 +2953,7 @@ msgctxt ""
"par_id3154245\n"
"help.text"
msgid "For example, you can create a page style that displays a particular header, and another page style that displays a different header."
-msgstr "Por ejemplo, puede crear un estilo de página que muestra un encabezamiento concreto y otro estilo de página que muestra un encabezamiento diferente."
+msgstr "Por ejemplo, puede crear un estilo de página que muestre una cabecera concreta y otro que muestre una diferente."
#: change_header.xhp
msgctxt ""
@@ -6069,7 +6069,7 @@ msgctxt ""
"par_id3146876\n"
"help.text"
msgid "To use different headers or footers in your document, you must add them to different <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear."
-msgstr "Si desea usar encabezamientos o pies de página diferentes en el documento, debe añadirlos a los <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Estilos de página\">Estilos de página</link> y a continuación aplicar éstos a las páginas donde desee que aparezcan los encabezamientos o los pies de página."
+msgstr "Si desea emplear cabeceras o pies diferentes en el documento, debe añadirlos a los <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Estilos de página\">estilos de página</link> y, a continuación, aplicar estos a las páginas donde quiera que aparezcan las cabeceras o los pies."
#: header_footer.xhp
msgctxt ""
@@ -6125,7 +6125,7 @@ msgctxt ""
"par_id3154263\n"
"help.text"
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
-msgstr "Puede usar encabezamientos y pies de página diferentes en varias páginas del documento, siempre que las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como <emph>Primera página</emph>, <emph>Página izquierda</emph> y <emph>Página derecha</emph>. También se puede crear un estilo de página personalizado."
+msgstr "Puede usar cabeceras y pies diferentes en varias páginas del documento, siempre y cuando las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como <emph>Primera página</emph>, <emph>Página izquierda</emph> y <emph>Página derecha</emph>. También se puede crear un estilo de página personalizado."
#: header_pagestyles.xhp
msgctxt ""
@@ -6141,7 +6141,7 @@ msgctxt ""
"par_id3150224\n"
"help.text"
msgid "For example, you can use page styles to define different headers for even and odd pages in a document."
-msgstr "Por ejemplo puede usar estilos de página con el fin de definir encabezamientos diferentes para las páginas pares e impares de un documento."
+msgstr "Por ejemplo, es posible emplear los estilos de página para definir una cabecera para las páginas pares y otra para las impares."
#: header_pagestyles.xhp
msgctxt ""
@@ -7610,7 +7610,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "In the <item type=\"menuitem\">Level</item> list click the heading level that you want to assign hyperlinks to."
-msgstr "En la lista <item type=\"menuitem\">Nivel</item> haga clic en el nivel de encabezado al que desee asignar hipervínculos."
+msgstr "En la lista <item type=\"menuitem\">Nivel</item>, pulse en el nivel de título al que desee asignar hiperenlaces."
#: indices_form.xhp
msgctxt ""
diff --git a/source/es/readlicense_oo/docs.po b/source/es/readlicense_oo/docs.po
index fe2626ce9bf..e5b7ec4c803 100644
--- a/source/es/readlicense_oo/docs.po
+++ b/source/es/readlicense_oo/docs.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: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-03-20 23:25+0000\n"
+"PO-Revision-Date: 2017-04-03 03:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490052340.000000\n"
+"X-POOTLE-MTIME: 1491191704.000000\n"
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently BugZilla, kindly hosted at <a href=\"https://bugs.libreoffice.org/\">https://bugs.libreoffice.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr "Nuestro sistema de seguimiento de errores es Bugzilla, hospedado en <a href=\"https://bugs.libreoffice.org/\">bugs.libreoffice.org</a>. Animamos a todos los usuarios a que informen de cualquier defectos que pudiera producirse en sus plataformas. Informar activamente de defectos es una de las contribuciones más importantes que la comunidad puede realizar para ayudar al desarrollo y mejora continua de ${PRODUCTNAME}."
+msgstr "Nuestro sistema de seguimiento de errores es Bugzilla, hospedado en <a href=\"https://bugs.libreoffice.org/\">bugs.libreoffice.org</a>. Animamos a todos los usuarios a que informen de cualesquier defectos que pudieran producirse en sus plataformas. Informar activamente de defectos es una de las contribuciones más importantes que la comunidad puede realizar para ayudar al desarrollo y mejora continua de ${PRODUCTNAME}."
#: readme.xrm
msgctxt ""
diff --git a/source/es/sc/source/ui/StatisticsDialogs.po b/source/es/sc/source/ui/StatisticsDialogs.po
index caad5e1e28d..06c897bb9ff 100644
--- a/source/es/sc/source/ui/StatisticsDialogs.po
+++ b/source/es/sc/source/ui/StatisticsDialogs.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-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-06-04 15:25+0000\n"
+"PO-Revision-Date: 2017-04-13 21:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1465053900.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492117402.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"STR_LABEL_RSQUARED\n"
"string.text"
msgid "R^2"
-msgstr "R^2"
+msgstr "R²"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/es/sc/source/ui/src.po b/source/es/sc/source/ui/src.po
index 6c492a4c712..17dea975bd8 100644
--- a/source/es/sc/source/ui/src.po
+++ b/source/es/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: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-03-18 05:10+0000\n"
+"PO-Revision-Date: 2017-04-15 12:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489813831.000000\n"
+"X-POOTLE-MTIME: 1492259066.000000\n"
#: filter.src
msgctxt ""
@@ -657,7 +657,7 @@ msgctxt ""
"STR_UNDO_ENTERMATRIX\n"
"string.text"
msgid "Insert Array Formula"
-msgstr "Insertar fórmula matriz"
+msgstr "Insertar fórmula matricial"
#: globstr.src
msgctxt ""
@@ -1712,7 +1712,7 @@ msgctxt ""
"STR_READONLYERR\n"
"string.text"
msgid "Document opened in read-only mode."
-msgstr "El documento abierto es de solo lectura."
+msgstr "El documento se ha abierto en modo de solo lectura."
#: globstr.src
msgctxt ""
diff --git a/source/es/sc/uiconfig/scalc/ui.po b/source/es/sc/uiconfig/scalc/ui.po
index aaeb9c3b1b6..728ec6b8a1c 100644
--- a/source/es/sc/uiconfig/scalc/ui.po
+++ b/source/es/sc/uiconfig/scalc/ui.po
@@ -4,8 +4,8 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 16:13+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2017-04-14 07:19+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487175186.000000\n"
+"X-POOTLE-MTIME: 1492154366.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -5681,7 +5681,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Data Range"
-msgstr ""
+msgstr "Intervalo de datos"
#: navigatorpanel.ui
msgctxt ""
@@ -6527,7 +6527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Contorno"
#: notebookbar_groups.ui
msgctxt ""
@@ -6536,7 +6536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Editar contorno"
#: optcalculatepage.ui
msgctxt ""
@@ -6554,7 +6554,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Desactivar distinción de mayúsculas y minúsculas para interoperatividad con Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6581,7 +6581,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enable this for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Active esta opción para aumentar la interoperatividad con Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -9866,7 +9866,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Text Orientation"
-msgstr ""
+msgstr "Orientación de texto"
#: sidebaralignment.ui
msgctxt ""
@@ -9956,7 +9956,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Style"
-msgstr ""
+msgstr "Estilo de línea de borde"
#: sidebarcellappearance.ui
msgctxt ""
@@ -9983,7 +9983,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Color"
-msgstr ""
+msgstr "Color de línea de borde"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10091,7 +10091,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Category"
-msgstr ""
+msgstr "Categoría"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10118,7 +10118,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Decimal Places"
-msgstr ""
+msgstr "Dígitos decimales"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10127,7 +10127,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Dígitos den_ominadores:"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10145,7 +10145,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Denominator Places"
-msgstr ""
+msgstr "Dígitos denominadores"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10172,7 +10172,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Leading Zeroes"
-msgstr ""
+msgstr "Ceros a la izquierda"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10370,7 +10370,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Referencia de celda"
#: solverdlg.ui
msgctxt ""
@@ -10379,7 +10379,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Referencia de celda"
#: solverdlg.ui
msgctxt ""
@@ -10388,7 +10388,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Referencia de celda"
#: solverdlg.ui
msgctxt ""
@@ -10442,7 +10442,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#: solverdlg.ui
msgctxt ""
@@ -10496,7 +10496,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#: solverdlg.ui
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#: solverdlg.ui
msgctxt ""
@@ -10604,7 +10604,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operador"
#: solverdlg.ui
msgctxt ""
@@ -10613,7 +10613,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: solverdlg.ui
msgctxt ""
@@ -10622,7 +10622,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: solverdlg.ui
msgctxt ""
@@ -10640,7 +10640,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: solverdlg.ui
msgctxt ""
@@ -12197,7 +12197,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Other"
-msgstr ""
+msgstr "Otro"
#: textimportcsv.ui
msgctxt ""
diff --git a/source/es/sfx2/source/dialog.po b/source/es/sfx2/source/dialog.po
index 8e772b0a1db..dd4a34ec54c 100644
--- a/source/es/sfx2/source/dialog.po
+++ b/source/es/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-11 03:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484103840.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Jerárquico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/es/sfx2/uiconfig/ui.po b/source/es/sfx2/uiconfig/ui.po
index fd053d8c20f..3f34b0ce7e7 100644
--- a/source/es/sfx2/uiconfig/ui.po
+++ b/source/es/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-12 12:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484222989.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME está disponible bajo los términos de la Licencia Pública de Mozilla, versión 2.0. Puede encontrar una copia de la licencia MPL en http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Los avisos de derechos de autor y términos de licencia adicionales aplicables a código de terceros están disponibles en el archivo LICENSE.html; pulse en Mostrar la licencia para consultar los detalles exactos en inglés.\n"
-"\n"
-"Todas las marcas comerciales y registradas mencionadas aquí son propiedad de sus respectivos dueños.\n"
-"\n"
-"© 2000–2017 de los colaboradores de LibreOffice. Todos los derechos reservados.\n"
-"\n"
-"Este producto fue creado por %OOOVENDOR. La base original fue OpenOffice.org, cuyos derechos de autor de 2000 a 2011 pertenecen a Oracle y/o sus afiliados. %OOOVENDOR reconoce a todos los miembros de la comunidad; para saber más visite http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/es/svtools/source/dialogs.po b/source/es/svtools/source/dialogs.po
index 2a4953bafaa..cbe07bc183b 100644
--- a/source/es/svtools/source/dialogs.po
+++ b/source/es/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-12 18:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484246672.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Texto formateado [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/es/svtools/source/misc.po b/source/es/svtools/source/misc.po
index 8997b162a7d..c0c2d5d7bc6 100644
--- a/source/es/svtools/source/misc.po
+++ b/source/es/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-15 22:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487199376.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Húngaro (alfabeto rúnico)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/es/svx/source/stbctrls.po b/source/es/svx/source/stbctrls.po
index dfb7cef9ead..fab6b0e4b98 100644
--- a/source/es/svx/source/stbctrls.po
+++ b/source/es/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-21 03:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487646188.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Ajustar la diapositiva a la ventana."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/es/svx/uiconfig/ui.po b/source/es/svx/uiconfig/ui.po
index 23b1d67992c..b6701f0edcb 100644
--- a/source/es/svx/uiconfig/ui.po
+++ b/source/es/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-20 23:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490052363.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Continuar en modo seguro"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Salir"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Aplicar cambios y reiniciar"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/es/sw/source/ui/utlui.po b/source/es/sw/source/ui/utlui.po
index 713a8fa1efe..9fead731129 100644
--- a/source/es/sw/source/ui/utlui.po
+++ b/source/es/sw/source/ui/utlui.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-27 00:24+0000\n"
+"PO-Revision-Date: 2017-04-17 06:08+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482798249.000000\n"
+"X-POOTLE-MTIME: 1492409285.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1837,7 +1837,7 @@ msgctxt ""
"STR_EVENT_MOUSECLICK_OBJECT\n"
"string.text"
msgid "Trigger hyperlink"
-msgstr "Hacer clic en el hiperenlace"
+msgstr "Activar hiperenlace"
#: utlui.src
msgctxt ""
diff --git a/source/et/cui/uiconfig/ui.po b/source/et/cui/uiconfig/ui.po
index e92a2d4e120..6af073ecfb4 100644
--- a/source/et/cui/uiconfig/ui.po
+++ b/source/et/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-28 22:54+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485644048.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Autoriõigus © 2000–2016 LibreOffice'i kaastöötajad."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/scalc/01.po b/source/et/helpcontent2/source/text/scalc/01.po
index 4bbac9ced3c..1d295441598 100644
--- a/source/et/helpcontent2/source/text/scalc/01.po
+++ b/source/et/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 23:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -5743,7 +5743,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5751,7 +5751,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index 2617ff2b07c..f2904ebc120 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/et/sfx2/source/dialog.po b/source/et/sfx2/source/dialog.po
index fdb6c55c225..26c51560857 100644
--- a/source/et/sfx2/source/dialog.po
+++ b/source/et/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 01:42+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485135746.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarhiline"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/et/sfx2/uiconfig/ui.po b/source/et/sfx2/uiconfig/ui.po
index 7e00401eb02..18f0d78a587 100644
--- a/source/et/sfx2/uiconfig/ui.po
+++ b/source/et/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-28 22:53+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485644015.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME on kättesaadavaks tehtud vastavalt Mozilla Avaliku Litsentsi (MPL-i) versioonile 2.0. MPL-i koopia leiab aadressilt http://mozilla.org/MPL/2.0/\n"
-"\n"
-"Kolmandate osapoolte koodi lisa-autoriõiguse märkused ja litsentsitingimused, mis rakenduvad osadele tarkvarast, on kirjas failis LICENSE.html; täpsete ingliskeelsete tingimuste nägemiseks vajuta \"Kuva litsents\".\n"
-"\n"
-"Kõik siin mainitud kaubamärgid ja registreeritud kaubamärgid kuuluvad nende omanikele.\n"
-"\n"
-"Autoriõigus © 2000–2016 LibreOffice'i kaastöötajad. Kõik õigused kaitstud.\n"
-"\n"
-"Selle toote valmistas %OOOVENDOR OpenOffice.org-i põhjal, mille autoriõigus: 2000, 2011 Oracle ja/või partnerid. %OOOVENDOR tunnustab kõiki kogukonnaliikmeid, täpsem info: http://www.libreoffice.org/"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/et/svtools/source/dialogs.po b/source/et/svtools/source/dialogs.po
index de12bd188ab..efe2119a68a 100644
--- a/source/et/svtools/source/dialogs.po
+++ b/source/et/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-08-25 22:17+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-10-23 19:16+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
"Language: et\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440541042.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1445627793.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Vormindatud tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/et/svtools/source/misc.po b/source/et/svtools/source/misc.po
index 82d643e9055..2199c0a590f 100644
--- a/source/et/svtools/source/misc.po
+++ b/source/et/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-22 15:47+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485100038.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungari (vanaungari ruunikirjas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/et/svx/source/stbctrls.po b/source/et/svx/source/stbctrls.po
index e3ab5a8643c..88e0cc7f13e 100644
--- a/source/et/svx/source/stbctrls.po
+++ b/source/et/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-22 23:20+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485127239.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Mahuta slaid aknasse"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/et/svx/uiconfig/ui.po b/source/et/svx/uiconfig/ui.po
index 02718aae55a..da56ff96f46 100644
--- a/source/et/svx/uiconfig/ui.po
+++ b/source/et/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-22 23:05+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485126330.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "Jätka päästerežiimis"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Välju"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Rakenda muudatused ja taaskäivita"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/eu/cui/uiconfig/ui.po b/source/eu/cui/uiconfig/ui.po
index 69f169ba1bf..a1abd3536c9 100644
--- a/source/eu/cui/uiconfig/ui.po
+++ b/source/eu/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-05 08:06+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488701180.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOfficen kolaboratzaileak."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/eu/formula/source/core/resource.po b/source/eu/formula/source/core/resource.po
index 6c58d55adfd..ba3f46c26d2 100644
--- a/source/eu/formula/source/core/resource.po
+++ b/source/eu/formula/source/core/resource.po
@@ -3,15 +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: 2016-11-22 21:44+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"PO-Revision-Date: 2017-04-17 16:20+0000\n"
+"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492446036.000000\n"
#: core_resource.src
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"SC_OPCODE_IF_NA\n"
"string.text"
msgid "IFNA"
-msgstr "ISNA"
+msgstr "IFNA"
#: core_resource.src
msgctxt ""
@@ -629,6 +632,15 @@ msgstr "ISFORMULA"
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
+"SC_OPCODE_IS_NV\n"
+"string.text"
+msgid "ISNA"
+msgstr "ISNA"
+
+#: core_resource.src
+msgctxt ""
+"core_resource.src\n"
+"RID_STRLIST_FUNCTION_NAMES\n"
"SC_OPCODE_IS_ERR\n"
"string.text"
msgid "ISERR"
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index 6cf6ed7410c..31081ffb6fb 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-29 17:20+0000\n"
-"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 18:44+0000\n"
+"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490808022.000000\n"
+"X-POOTLE-MTIME: 1492454675.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5673,22 +5673,20 @@ msgid "Functions"
msgstr "Funtzioak"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
@@ -9355,7 +9353,7 @@ msgctxt ""
"hd_id31536851\n"
"help.text"
msgid "IFNA"
-msgstr "ISNA"
+msgstr "IFNA"
#: 04060104.xhp
msgctxt ""
@@ -38293,7 +38291,7 @@ msgctxt ""
"par_id295666\n"
"help.text"
msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
-msgstr "<item type=\"input\">=BINOMDIST(A1;12;0,5;0)</item>: <item type=\"input\">0</item>tik<item type=\"input\">12</item>ra bitarteko balioak sartzen badira A1 gelaxkan eta txanpona 12 aldiz botatzen bada, <emph>Aurrealdea</emph> A1en adierazi adina aldiz ateratzeko probabilitatea kalkulatzen du, hau da, A1=5 bada, 12 botalditan 5 aurrealde ateratzeko probabilitatea ematen du."
+msgstr "<item type=\"input\">=BINOM.DIST(A1;12;0,5;0)</item>: <item type=\"input\">0</item>tik<item type=\"input\">12</item>ra bitarteko balioak sartzen badira A1 gelaxkan eta txanpona 12 aldiz botatzen bada, <emph>Aurrealdea</emph> A1en adierazi adina aldiz ateratzeko probabilitatea kalkulatzen du, hau da, A1=5 bada, 12 botalditan 5 aurrealde ateratzeko probabilitatea ematen du."
#: 04060181.xhp
msgctxt ""
@@ -38986,13 +38984,12 @@ msgid "<bookmark_value>CHISQ.TEST function</bookmark_value>"
msgstr "<bookmark_value>CHITEST funtzioa</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2954260\n"
"help.text"
msgid "CHISQ.TEST"
-msgstr "CHISQDIST"
+msgstr "CHISQ.TEST"
#: 04060181.xhp
msgctxt ""
@@ -39316,13 +39313,12 @@ msgid "<bookmark_value>CHISQ.DIST function</bookmark_value>"
msgstr "<bookmark_value>CHISQ.DIST funtzioa</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2848690\n"
"help.text"
msgid "CHISQ.DIST"
-msgstr "CHISQDIST"
+msgstr "CHISQ.DIST"
#: 04060181.xhp
msgctxt ""
@@ -39341,13 +39337,12 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2858439\n"
"help.text"
msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)"
-msgstr "CHISQDIST(Zenbakia; Askatasun_graduak; Metatua)"
+msgstr "CHISQ.DIST(Zenbakia; Askatasun_graduak; Metatua)"
#: 04060181.xhp
#, fuzzy
@@ -39409,13 +39404,12 @@ msgid "<bookmark_value>CHISQ.DIST.RT function</bookmark_value>"
msgstr "<bookmark_value>CHISQ.DIST.RT funtzioa</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2948690\n"
"help.text"
msgid "CHISQ.DIST.RT"
-msgstr "CHISQDIST"
+msgstr "CHISQ.DIST.RT"
#: 04060181.xhp
msgctxt ""
@@ -39492,7 +39486,6 @@ msgid "If the Chi square value of the random sample is 13.27 and if the experime
msgstr "Ausazko laginaren khi-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id0119200902231887\n"
@@ -39557,7 +39550,6 @@ msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability
msgstr "<emph>Metatua</emph> (aukerakoa): 0 edo Faltsua, probabilitate-dentsitatearen funtzioa kalkulatzen du. Beste balio batzuk edo Egiazkoa izanez gero, edo ez ikusi eginez gero, banaketa metatuaren funtzioa kalkulatzen du."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150603\n"
@@ -39638,22 +39630,20 @@ msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
msgstr "<item type=\"input\">=EXPONDIST(3;0,5;1)</item>: 0,78 ematen du."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2950603\n"
"help.text"
msgid "<bookmark_value>EXPON.DIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
-msgstr "<bookmark_value>EXPONDIST funtzioa</bookmark_value> <bookmark_value>banaketa esponentzialak</bookmark_value>"
+msgstr "<bookmark_value>EXPON.DIST funtzioa</bookmark_value> <bookmark_value>banaketa esponentzialak</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2950603\n"
"help.text"
msgid "EXPON.DIST"
-msgstr "EXPONDIST"
+msgstr "EXPON.DIST"
#: 04060181.xhp
msgctxt ""
@@ -39672,13 +39662,12 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950987\n"
"help.text"
msgid "EXPON.DIST(Number; Lambda; C)"
-msgstr "EXPONDIST(Zenbakia; lambda; M)"
+msgstr "EXPON.DIST(Zenbakia; lambda; M)"
#: 04060181.xhp
msgctxt ""
@@ -39714,13 +39703,12 @@ msgid "Example"
msgstr "Adibidea"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950357\n"
"help.text"
msgid "<item type=\"input\">=EXPON.DIST(3;0.5;1)</item> returns 0.7768698399."
-msgstr "<item type=\"input\">=EXPONDIST(3;0,5;1)</item>: 0,78 ematen du."
+msgstr "<item type=\"input\">=EXPON.DIST(3;0,5;1)</item>: 0.7768698399 ematen du."
#: 04060182.xhp
msgctxt ""
@@ -39829,23 +39817,21 @@ msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr "<item type=\"input\">=FINV(0,5;5;10)</item>: 0,93 ematen du."
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2945388\n"
"help.text"
msgid "<bookmark_value>F.INV function</bookmark_value> <bookmark_value>Values of the inverse left tail of the F distribution</bookmark_value>"
-msgstr "<bookmark_value>FINV funtzioa</bookmark_value> <bookmark_value>F probabilitate-banaketaren alderantzizkoa</bookmark_value>"
+msgstr "<bookmark_value>F.INV funtzioa</bookmark_value> <bookmark_value>F probabilitate-banaketaren alderantzizkoa</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2945388\n"
"2\n"
"help.text"
msgid "F.INV"
-msgstr "FINV"
+msgstr "F.INV"
#: 04060182.xhp
msgctxt ""
@@ -39866,14 +39852,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953068\n"
"5\n"
"help.text"
msgid "F.INV(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FINV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)"
+msgstr "F.INV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)"
#: 04060182.xhp
#, fuzzy
@@ -39915,23 +39900,21 @@ msgid "Example"
msgstr "Adibidea"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2945073\n"
"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV(0.5;5;10)</item> yields 0.9319331609."
-msgstr "<item type=\"input\">=FINV(0,5;5;10)</item>: 0,93 ematen du."
+msgstr "<item type=\"input\">=F.INV(0,5;5;10)</item>: 0,9319331609 ematen du."
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2845388\n"
"help.text"
msgid "<bookmark_value>F.INV.RT function</bookmark_value> <bookmark_value>Values of the inverse right tail of the F distribution</bookmark_value>"
-msgstr "<bookmark_value>FINV funtzioa</bookmark_value> <bookmark_value>F probabilitate-banaketaren alderantzizkoa</bookmark_value>"
+msgstr ""
#: 04060182.xhp
msgctxt ""
@@ -39961,14 +39944,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2853068\n"
"5\n"
"help.text"
msgid "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FINV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)"
+msgstr "F.INV.RT(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)"
#: 04060182.xhp
#, fuzzy
@@ -40010,14 +39992,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2845073\n"
"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV.RT(0.5;5;10)</item> yields 0.9319331609."
-msgstr "<item type=\"input\">=FINV(0,5;5;10)</item>: 0,93 ematen du."
+msgstr "<item type=\"input\">=F.INV.RT(0,5;5;10)</item>: 0,9319331609 ematen du."
#: 04060182.xhp
msgctxt ""
@@ -40242,23 +40223,21 @@ msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the
msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item>: bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du."
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2951390\n"
"help.text"
msgid "<bookmark_value>F.TEST function</bookmark_value>"
-msgstr "<bookmark_value>FTEST funtzioa</bookmark_value>"
+msgstr "<bookmark_value>F.TEST funtzioa</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2951390\n"
"28\n"
"help.text"
msgid "F.TEST"
-msgstr "FTEST"
+msgstr "F.TEST"
#: 04060182.xhp
msgctxt ""
@@ -40279,14 +40258,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953024\n"
"31\n"
"help.text"
msgid "F.TEST(Data1; Data2)"
-msgstr "FTEST(Datuak_1; Datuak_2)"
+msgstr "F.TEST(Datuak_1; Datuak_2)"
#: 04060182.xhp
msgctxt ""
@@ -40316,14 +40294,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2959126\n"
"35\n"
"help.text"
msgid "<item type=\"input\">=F.TEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
-msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item>: bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du."
+msgstr "<item type=\"input\">=F.TEST(A1:A30;B1:B12)</item>: bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du."
#: 04060182.xhp
msgctxt ""
@@ -40753,23 +40730,21 @@ msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr "<item type=\"input\">=GAMMAINV(0,8;1;1)</item>: 1,61 ematen du."
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2914841\n"
"help.text"
msgid "<bookmark_value>GAMMA.INV function</bookmark_value>"
-msgstr "<bookmark_value>GAMMAINV funtzioa</bookmark_value>"
+msgstr "<bookmark_value>GAMMA.INV funtzioa</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2914841\n"
"47\n"
"help.text"
msgid "GAMMA.INV"
-msgstr "GAMMAINV"
+msgstr "GAMMA.INV"
#: 04060182.xhp
msgctxt ""
@@ -40798,14 +40773,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2915828\n"
"50\n"
"help.text"
msgid "GAMMA.INV(Number; Alpha; Beta)"
-msgstr "GAMMAINV(Zenbakia; Alfa; Beta)"
+msgstr "GAMMA.INV(Zenbakia; Alfa; Beta)"
#: 04060182.xhp
#, fuzzy
@@ -40845,14 +40819,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2913331\n"
"55\n"
"help.text"
msgid "<item type=\"input\">=GAMMA.INV(0.8;1;1)</item> yields 1.61."
-msgstr "<item type=\"input\">=GAMMAINV(0,8;1;1)</item>: 1,61 ematen du."
+msgstr "<item type=\"input\">=GAMMA.INV(0,8;1;1)</item>: 1,61 ematen du."
#: 04060182.xhp
msgctxt ""
@@ -41534,23 +41507,21 @@ msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentatio
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2953216\n"
"help.text"
msgid "<bookmark_value>Z.TEST function</bookmark_value>"
-msgstr "<bookmark_value>ZTEST funtzioa</bookmark_value>"
+msgstr "<bookmark_value>Z.TEST funtzioa</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2953216\n"
"103\n"
"help.text"
msgid "Z.TEST"
-msgstr "ZTEST"
+msgstr "Z.TEST"
#: 04060182.xhp
msgctxt ""
@@ -41571,14 +41542,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953274\n"
"106\n"
"help.text"
msgid "Z.TEST(Data; mu; Sigma)"
-msgstr "ZTEST(Datuak; mu; Sigma)"
+msgstr "Z.TEST(Datuak; mu; Sigma)"
#: 04060182.xhp
#, fuzzy
@@ -42185,23 +42155,21 @@ msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr "<item type=\"input\">=CONFIDENCE(0,05; 1,5; 100)</item>: emaitza 0,29 da."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2953559\n"
"help.text"
msgid "<bookmark_value>CONFIDENCE.T function</bookmark_value>"
-msgstr "<bookmark_value>CONFIDENCE funtzioa</bookmark_value>"
+msgstr "<bookmark_value>CONFIDENCE.T funtzioa</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2953559\n"
"20\n"
"help.text"
msgid "CONFIDENCE.T"
-msgstr "CONFIDENCE"
+msgstr "CONFIDENCE.T"
#: 04060183.xhp
msgctxt ""
@@ -42222,14 +42190,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2947501\n"
"23\n"
"help.text"
msgid "CONFIDENCE.T(Alpha; StDev; Size)"
-msgstr "CONFIDENCE(Alfa; STDEV; Tamaina)"
+msgstr "CONFIDENCE.T(Alfa; STDEV; Tamaina)"
#: 04060183.xhp
msgctxt ""
@@ -42268,23 +42235,21 @@ msgid "Example"
msgstr "Adibidea"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2953335\n"
"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE.T(0.05;1.5;100)</item> gives 0.2976325427."
-msgstr "<item type=\"input\">=CONFIDENCE(0,05; 1,5; 100)</item>: emaitza 0,29 da."
+msgstr "<item type=\"input\">=CONFIDENCE.T(0,05; 1,5; 100)</item>: emaitza 0,2976325427 da."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2853559\n"
"help.text"
msgid "<bookmark_value>CONFIDENCE.NORM function</bookmark_value>"
-msgstr "<bookmark_value>CONFIDENCE funtzioa</bookmark_value>"
+msgstr "<bookmark_value>CONFIDENCE.NORM funtzioa</bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -42314,14 +42279,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2847501\n"
"23\n"
"help.text"
msgid "CONFIDENCE.NORM(Alpha; StDev; Size)"
-msgstr "CONFIDENCE(Alfa; STDEV; Tamaina)"
+msgstr "CONFIDENCE.NORM(Alfa; STDEV; Tamaina)"
#: 04060183.xhp
msgctxt ""
@@ -42953,14 +42917,13 @@ msgid "<bookmark_value>LOGNORM.INV function</bookmark_value><bookmark_value>inve
msgstr "<bookmark_value>LOGINV funtzioa</bookmark_value><bookmark_value>banaketa normal logaritmikoaren alderantzizkoa</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2901928\n"
"66\n"
"help.text"
msgid "LOGNORM.INV"
-msgstr "LOGNORMDIST"
+msgstr "LOGNORM.INV"
#: 04060183.xhp
msgctxt ""
@@ -43048,13 +43011,12 @@ msgid "<item type=\"input\">=LOGNORM.INV(0.05;0;1)</item> returns 0.1930408167."
msgstr "<item type=\"input\">=LOGINV(0,05; 0; 1)</item>: 0,19 ematen du."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id3158417\n"
"help.text"
msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>NEGBINOMDIST funtzioa</bookmark_value><bookmark_value>banaketa binomial negatiboa</bookmark_value>"
+msgstr ""
#: 04060183.xhp
msgctxt ""
@@ -43146,23 +43108,21 @@ msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr "<item type=\"input\">=LOGNORMDIST(0,1; 0; 1)</item>: 0,01 ematen du."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2901417\n"
"help.text"
msgid "<bookmark_value>LOGNORM.DIST function</bookmark_value><bookmark_value>lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>NEGBINOMDIST funtzioa</bookmark_value><bookmark_value>banaketa binomial negatiboa</bookmark_value>"
+msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2908417\n"
"76\n"
"help.text"
msgid "LOGNORM.DIST"
-msgstr "LOGNORMDIST"
+msgstr "LOGNORM.DIST"
#: 04060183.xhp
msgctxt ""
@@ -43183,14 +43143,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2900686\n"
"79\n"
"help.text"
msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)"
-msgstr "LOGNORMDIST(Zenbakia; Batez bestekoa; Desbiderapen_estandarra; Metagarria)"
+msgstr "LOGNORM.DIST(Zenbakia; Batez bestekoa; Desbiderapen_estandarra; Metagarria)"
#: 04060183.xhp
#, fuzzy
@@ -43241,14 +43200,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2909778\n"
"84\n"
"help.text"
msgid "<item type=\"input\">=LOGNORM.DIST(0.1;0;1;1)</item> returns 0.0106510993."
-msgstr "<item type=\"input\">=LOGNORMDIST(0,1; 0; 1)</item>: 0,01 ematen du."
+msgstr "<item type=\"input\">=LOGNORM.DIST(0.1;0;1;1)</item>: 0.0106510993 ematen du."
#: 04060184.xhp
msgctxt ""
@@ -44232,23 +44190,21 @@ msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
msgstr "<item type=\"input\">=NEGBINOMDIST(1; 1; 0,5)</item>: emaitza 0,25 da."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2949879\n"
"help.text"
msgid "<bookmark_value>NEGBINOM.DIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>NEGBINOMDIST funtzioa</bookmark_value><bookmark_value>banaketa binomial negatiboa</bookmark_value>"
+msgstr "<bookmark_value>NEGBINOM.DIST funtzioa</bookmark_value><bookmark_value>banaketa binomial negatiboa</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2949879\n"
"51\n"
"help.text"
msgid "NEGBINOM.DIST"
-msgstr "NEGBINOMDIST"
+msgstr "NEGBINOM.DIST"
#: 04060184.xhp
msgctxt ""
@@ -44323,24 +44279,22 @@ msgid "Example"
msgstr "Adibidea"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948770\n"
"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;0)</item> returns 0.25."
-msgstr "<item type=\"input\">=NEGBINOMDIST(1; 1; 0,5)</item>: emaitza 0,25 da."
+msgstr "<item type=\"input\">=NEGBINOM.DIST(1; 1; 0,5)</item>: emaitza 0,25 da."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948771\n"
"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;1)</item> returns 0.75."
-msgstr "<item type=\"input\">=NEGBINOMDIST(1; 1; 0,5)</item>: emaitza 0,25 da."
+msgstr "<item type=\"input\">=NEGBINOM.DIST(1; 1; 0,5)</item>: emaitza 0,25 da."
#: 04060184.xhp
msgctxt ""
@@ -46736,23 +46690,21 @@ msgid "<item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation
msgstr "<item type=\"input\">=STDEVP(A1:A50)</item>: erreferentzia-datuen desbiderapen estandarra ematen du."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949734\n"
"help.text"
msgid "<bookmark_value>STDEV.P function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
-msgstr "<bookmark_value>STDEVP funtzioa</bookmark_value> <bookmark_value>estatistikako desbiderapen estandarrak;populazio batean oinarrituta</bookmark_value>"
+msgstr "<bookmark_value>STDEV.P funtzioa</bookmark_value> <bookmark_value>estatistikako desbiderapen estandarrak;populazio batean oinarrituta</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2949734\n"
"38\n"
"help.text"
msgid "STDEV.P"
-msgstr "STDEVP"
+msgstr "STDEV.P"
#: 04060185.xhp
msgctxt ""
@@ -46773,14 +46725,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954392\n"
"41\n"
"help.text"
msgid "STDEV.P(Number1;Number2;...Number30)"
-msgstr "STDEVP(zenbakia 1; zenbakia 2; ... zenbakia 30)"
+msgstr "STDEV.P(zenbakia 1; zenbakia 2; ... zenbakia 30)"
#: 04060185.xhp
#, fuzzy
@@ -46802,14 +46753,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953933\n"
"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.P(A1:A50)</item> returns a standard deviation of the data referenced."
-msgstr "<item type=\"input\">=STDEVP(A1:A50)</item>: erreferentzia-datuen desbiderapen estandarra ematen du."
+msgstr "<item type=\"input\">=STDEV.P(A1:A50)</item>: erreferentzia-datuen desbiderapen estandarra ematen du."
#: 04060185.xhp
#, fuzzy
@@ -46821,14 +46771,13 @@ msgid "<bookmark_value>STDEV.S function</bookmark_value> <bookmark_value>
msgstr "<bookmark_value>STDEV funtzioa</bookmark_value> <bookmark_value>estatistikako desbiderapen estandarrak;lagin batean oinarrituta</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2849734\n"
"38\n"
"help.text"
msgid "STDEV.S"
-msgstr "STDEVP"
+msgstr "STDEV.S"
#: 04060185.xhp
msgctxt ""
@@ -46849,14 +46798,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2854392\n"
"41\n"
"help.text"
msgid "STDEV.S(Number1;Number2;...Number30)"
-msgstr "STDEVP(zenbakia 1; zenbakia 2; ... zenbakia 30)"
+msgstr "STDEV.S(zenbakia 1; zenbakia 2; ... zenbakia 30)"
#: 04060185.xhp
#, fuzzy
@@ -46878,14 +46826,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2853933\n"
"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.S(A1:A50)</item> returns a standard deviation of the data referenced."
-msgstr "<item type=\"input\">=STDEVP(A1:A50)</item>: erreferentzia-datuen desbiderapen estandarra ematen du."
+msgstr "<item type=\"input\">=STDEV.S(A1:A50)</item>: erreferentzia-datuen desbiderapen estandarra ematen du."
#: 04060185.xhp
msgctxt ""
@@ -47121,23 +47068,21 @@ msgid "<item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
msgstr "<item type=\"input\">=NORMSINV(0,908789)</item>: 1,3333 ematen du."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2957986\n"
"help.text"
msgid "<bookmark_value>NORM.S.INV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
-msgstr "<bookmark_value>NORMSINV funtzioa</bookmark_value> <bookmark_value>banaketa normala;estandarraren alderantzizkoa</bookmark_value>"
+msgstr "<bookmark_value>NORM.S.INV funtzioa</bookmark_value> <bookmark_value>banaketa normala;estandarraren alderantzizkoa</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2957986\n"
"56\n"
"help.text"
msgid "NORM.S.INV"
-msgstr "NORMSINV"
+msgstr "NORM.S.INV"
#: 04060185.xhp
msgctxt ""
@@ -47187,14 +47132,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949030\n"
"62\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.INV(0.908789)</item> returns 1.333334673."
-msgstr "<item type=\"input\">=NORMSINV(0,908789)</item>: 1,3333 ematen du."
+msgstr "<item type=\"input\">=NORM.S.INV(0,908789)</item>: 1,333334673 ematen du."
#: 04060185.xhp
msgctxt ""
@@ -47682,23 +47626,21 @@ msgid "<item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
msgstr "<item type=\"input\">=TINV(0.1;6)</item>: 1,94 ematen du"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949579\n"
"help.text"
msgid "<bookmark_value>T.INV function</bookmark_value> <bookmark_value>one tailed inverse of t-distribution</bookmark_value>"
-msgstr "<bookmark_value>TINV funtzioa</bookmark_value> <bookmark_value>T banaketaren alderantzizkoa</bookmark_value>"
+msgstr "<bookmark_value>T.INV funtzioa</bookmark_value> <bookmark_value>T banaketaren alderantzizkoa</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2949579\n"
"98\n"
"help.text"
msgid "T.INV"
-msgstr "TINV"
+msgstr "T.INV"
#: 04060185.xhp
msgctxt ""
@@ -47719,14 +47661,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949289\n"
"101\n"
"help.text"
msgid "T.INV(Number; DegreesFreedom)"
-msgstr "TINV(zenbakia; askatasun_graduak)"
+msgstr "T.INV(zenbakia; askatasun_graduak)"
#: 04060185.xhp
#, fuzzy
@@ -47758,23 +47699,21 @@ msgid "Example"
msgstr "Adibidea"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2956010\n"
"105\n"
"help.text"
msgid "<item type=\"input\">=T.INV(0.1;6)</item> returns -1.4397557473."
-msgstr "<item type=\"input\">=TINV(0.1;6)</item>: 1,94 ematen du"
+msgstr "<item type=\"input\">=T.INV(0.1;6)</item>: -1,4397557473 ematen du"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2849579\n"
"help.text"
msgid "<bookmark_value>T.INV.2T function</bookmark_value> <bookmark_value>inverse of two tailed t-distribution</bookmark_value>"
-msgstr "<bookmark_value>TINV funtzioa</bookmark_value> <bookmark_value>T banaketaren alderantzizkoa</bookmark_value>"
+msgstr ""
#: 04060185.xhp
msgctxt ""
@@ -47804,14 +47743,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2849289\n"
"101\n"
"help.text"
msgid "T.INV.2T(Number; DegreesFreedom)"
-msgstr "TINV(zenbakia; askatasun_graduak)"
+msgstr "T.INV.2T(zenbakia; askatasun_graduak)"
#: 04060185.xhp
#, fuzzy
@@ -47950,23 +47888,21 @@ msgid "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
msgstr "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2954129\n"
"help.text"
msgid "<bookmark_value>T.TEST function</bookmark_value>"
-msgstr "<bookmark_value>TTEST funtzioa</bookmark_value>"
+msgstr "<bookmark_value>T.TEST funtzioa</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2954129\n"
"107\n"
"help.text"
msgid "T.TEST"
-msgstr "TTEST"
+msgstr "T.TEST"
#: 04060185.xhp
msgctxt ""
@@ -47987,14 +47923,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951175\n"
"110\n"
"help.text"
msgid "T.TEST(Data1; Data2; Mode; Type)"
-msgstr "TTEST(datuak_1; datuak_2; modua; mota)"
+msgstr "T.TEST(datuak_1; datuak_2; modua; mota)"
#: 04060185.xhp
#, fuzzy
@@ -48046,14 +47981,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2950119\n"
"116\n"
"help.text"
msgid "<item type=\"input\">=T.TEST(A1:A50;B1:B50;2;2)</item>"
-msgstr "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
+msgstr "<item type=\"input\">=T.TEST(A1:A50;B1:B50;2;2)</item>"
#: 04060185.xhp
msgctxt ""
@@ -48182,14 +48116,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2950521\n"
"121\n"
"help.text"
msgid "T.DIST(Number; DegreesFreedom; Cumulative)"
-msgstr "CHISQDIST(Zenbakia; Askatasun_graduak; Metatua)"
+msgstr "T.DIST(Zenbakia; Askatasun_graduak; Metatua)"
#: 04060185.xhp
#, fuzzy
@@ -48240,13 +48173,12 @@ msgid "<item type=\"input\">=T.DIST(1; 10; TRUE)</item> returns 0.8295534338"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2854930\n"
"help.text"
msgid "<bookmark_value>T.DIST.2T function</bookmark_value> <bookmark_value>two tailed t-distribution</bookmark_value>"
-msgstr "<bookmark_value>TDIST funtzioa</bookmark_value> <bookmark_value>T banaketa</bookmark_value>"
+msgstr ""
#: 04060185.xhp
msgctxt ""
@@ -48945,7 +48877,7 @@ msgctxt ""
"154\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Errepikatuzko permutazioak kalkulatzen ditu.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Emandako objektu kopuru baten permutazioak kalkulatzen ditu. (errepikapenak onartuta).</ahelp>"
#: 04060185.xhp
msgctxt ""
@@ -60902,22 +60834,20 @@ msgid "PRODUCT"
msgstr "PRODUCT"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360153\n"
"help.text"
msgid "STDEV.S"
-msgstr "STDEVP"
+msgstr "STDEV.S"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360178\n"
"help.text"
msgid "STDEV.P"
-msgstr "STDEVP"
+msgstr "STDEV.P"
#: func_aggregate.xhp
#, fuzzy
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index ff54c9ba6d2..5a84ac744b3 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-11-16 18:30+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2486,7 +2486,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/00.po b/source/eu/helpcontent2/source/text/swriter/00.po
index a0b370ed576..a36b9f362df 100644
--- a/source/eu/helpcontent2/source/text/swriter/00.po
+++ b/source/eu/helpcontent2/source/text/swriter/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-18 10:59+0000\n"
+"PO-Revision-Date: 2017-04-02 12:23+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487415593.000000\n"
+"X-POOTLE-MTIME: 1491135797.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -247,7 +247,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl </defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ctrl </defaultinline></switchinline>+F3"
#: 00000402.xhp
msgctxt ""
@@ -408,7 +408,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
#: 00000403.xhp
msgctxt ""
@@ -424,7 +424,7 @@ msgctxt ""
"par_id3151387\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
#: 00000403.xhp
msgctxt ""
@@ -440,7 +440,7 @@ msgctxt ""
"par_id3145823\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F10"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F10"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F10"
#: 00000403.xhp
msgctxt ""
@@ -627,7 +627,7 @@ msgctxt ""
"57\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "<variable id=\"verz27\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Bibliography is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz27\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (bibliografia denean hautatutako mota)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1225,7 +1225,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -2485,7 +2485,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + plus sign"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> + plus ikurra"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + plus ikurra"
#: 00000406.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 17dbf2bfafb..e2eea806d3f 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-18 11:01+0000\n"
+"PO-Revision-Date: 2017-04-02 12:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487415691.000000\n"
+"X-POOTLE-MTIME: 1491136568.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -916,7 +916,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Type the number of the page number that you want to jump to, and then press Enter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Idatzi joan nahi duzun orrialdearen zenbakia, eta sakatu 'Enter'.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -925,7 +925,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "To quickly move the cursor to another page while you are in a document, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5, type the number of the page that you want to jump to, and then wait a few moments."
-msgstr "Dokumentuan zaudela beste orrialde batera azkar joateko, sakatu Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+F5, idatzi orrialde-zenbakia eta itxaron pixka bat."
+msgstr "Dokumentuan zaudela beste orrialde batera azkar joateko, sakatu Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Ctrl</defaultinline> komandoa</switchinline>+F5, idatzi orrialde-zenbakia eta itxaron pixka bat."
#: 02110000.xhp
msgctxt ""
@@ -943,7 +943,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/listbox\">Shows or hides the <emph>Navigator </emph>list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/listbox\"><emph>Nabigatzaile </emph>zerrenda erakusten edo ezkutatzen du.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -978,7 +978,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/root\">Switches between the display of all categories in the Navigator and the selected category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/root\">Nabigatzaileko kategoria guztien eta hautatutako kategoriaren artean txandakatzen da.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1057,7 +1057,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/header\">Moves the cursor to the header, or from the header to the document text area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/header\">Kurtsorea goiburukora edo goiburukotik dokumentuko testu-areara eramaten du.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1092,7 +1092,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/footer\">Moves the cursor to the footer, or from the footer to the document text area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/footer\">Kurtsorea orri-oinera edo orri-oinetik dokumentuko testu-areara eramaten du.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1127,7 +1127,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/anchor\">Jumps between the footnote text and the footnote anchor.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/anchor\">Oin-oharreko testuaren eta oin-oharreko ainguraren artean jauzi egiten du.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1162,7 +1162,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Arrastatu eta jaregiteko aukerak ezartzen ditu nabigatzaileko elementuak dokumentuan txertatzeko, adibidez, hiperesteka gisa. Egin klik ikono horretan eta aukeratu erabili nahi duzun aukera.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1251,7 +1251,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/headings\">Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window.</ahelp> You can also access this command by right-clicking a heading in the Navigator window."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/headings\">Egin klik ikono horretan eta aukeratu Nabigatzailea leihoan ikusi nahi duzun kapitulu-mailen kopurua.</ahelp> Komando hori atzitzeko, 'Nabigatzaile' leihoko izenburuan klik egin dezakezu eskuineko botoiaz."
#: 02110000.xhp
msgctxt ""
@@ -1304,7 +1304,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Hautatutako izenburua eta izenburuaren azpiko testua izenburu bat gora eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua bakarrik lekuz aldatzeko eta ez testua, sakatu Ctrl eta egin klik ikono horretan.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1339,7 +1339,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Hautatutako izenburua eta izenburuaren azpiko testua izenburu bat behera eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua bakarrik lekuz aldatzeko eta ez testua, sakatu Ctrl eta egin klik ikono horretan.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promotelvl\">Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promotelvl\">Hautatutako izenburuaren kapitulu-maila eta izenburuaren azpiko izenburuak maila bat igotzen ditu. Hautatutako izenburuaren kapitulu-maila bakarrik igotzeko, sakatu Ctrl eta egin klik ikono honetan.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demotelvl\">Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demotelvl\">Hautatutako izenburuaren kapitulu-maila eta izenburuaren azpiko izenburuak maila bat jaisten ditu. Hautatutako izenburuaren kapitulu-maila bakarrik jaisteko, sakatu Ctrl eta egin klik ikono honetan.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1560,7 +1560,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose <link href=\"text/shared/01/06140000.xhp\" name=\"Tools - Customize\"><emph>Tools - Customize</emph></link>. The various tables for adapting <link href=\"text/shared/01/06140100.xhp\" name=\"menus\">menus</link>, <link href=\"text/shared/01/06140200.xhp\" name=\"keyboard input\">keyboard input</link> or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions."
-msgstr ""
+msgstr "$[officename] zure hobespen espezifikoen arabera konfiguratu ahal duzu, dokumentu batean nabigatzeko. Hori egiteko, aukeratu <link href=\"text/shared/01/06140000.xhp\" name=\"Tools - Customize\"><emph>Tresnak - Pertsonalizatu</emph></link>. Hainbat taula daude <link href=\"text/shared/01/06140100.xhp\" name=\"menus\">menuak</link>, <link href=\"text/shared/01/06140200.xhp\" name=\"keyboard input\">teklatu-sarrera</link> edo tresna-barrak moldatzeko. Hainbat funtzio dituzte \"Nabigatu\" arean, dokumentuaren barnean nabigatzeko. Modu horretan, dokumentuaren indize-etiketetara joan daiteke \"Hurrengo/Aurreko indize-etiketa\" funtzioen bitartez."
#: 02110100.xhp
msgctxt ""
@@ -1970,7 +1970,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/newtext\">Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/newtext\">Autotestu-sarrera berria sortzen du, baina soilik uneko dokumentuan egin duzun hautapeneko testutik abiatuta. Grafikoak, taulak eta beste objektuak ez dira kontuan hartzen. Komando hau ikusteko, izen bat sartu behar duzu.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id3145253\n"
"help.text"
msgid "<variable id=\"bibliography_entry_text\"><variable id=\"litvz\"><ahelp hid=\".uno:AuthoritiesEntryDialog\">Edits the selected bibliography entry.</ahelp></variable></variable>"
-msgstr ""
+msgstr "<variable id=\"bibliography_entry_text\"><variable id=\"litvz\"><ahelp hid=\".uno:AuthoritiesEntryDialog\">Hautatutako bibliografia-sarrera editatzen du.</ahelp></variable></variable>"
#: 02130000.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"par_id3153668\n"
"help.text"
msgid "To change the view between field names and field contents in your document, choose <emph>View - Field Names</emph>."
-msgstr ""
+msgstr "Dokumentuko eremu-izenen eta eremu-edukien ikuspegia txandakatzeko, aukeratu <emph>Ikusi - Eremu-izenak</emph>."
#: 02140000.xhp
msgctxt ""
@@ -2862,7 +2862,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "<image id=\"img_id3155348\" src=\"res/lc06301.png\"><alt id=\"alt_id3155348\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155348\" src=\"res/lc06301.png\"><alt id=\"alt_id3155348\">Ikonoa</alt></image>"
#: 02140000.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3145117\n"
"help.text"
msgid "<image id=\"img_id3149575\" src=\"res/lc06300.png\"><alt id=\"alt_id3149575\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149575\" src=\"res/lc06300.png\"><alt id=\"alt_id3149575\">Ikonoa</alt></image>"
#: 02140000.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Footnote or Endnote"
-msgstr ""
+msgstr "Editatu oin-oharra edo amaiera-oharra"
#: 02150000.xhp
msgctxt ""
@@ -2926,7 +2926,7 @@ msgctxt ""
"par_id3149097\n"
"help.text"
msgid "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">Edits the selected footnote or endnote anchor. Click in front of the footnote or endnote, and then choose this command.</ahelp> </variable></variable>"
-msgstr ""
+msgstr "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">Hautatutako oin-oharra eta amaiera-oharraren aingura editatzen du. Egin klik oin-oharra edo amaiera-oharraren aurrealdean, eta aukeratu komando hau.</ahelp> </variable></variable>"
#: 02150000.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"hd_id3150113\n"
"help.text"
msgid "Choose"
-msgstr ""
+msgstr "Aukeratu"
#: 02150000.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_id3149849\n"
"help.text"
msgid "To change the format of a footnote or endnote anchor or text, select it, and then choose <item type=\"menuitem\">Format - Character</item>. You can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles and Formatting</emph> window and modify the footnote or endnote paragraph style."
-msgstr ""
+msgstr "Oin-ohar edo amaiera-ohar baten aingura edo testu formatua aldatzeko, hautatu, eta ondoren aukeratu <item type=\"menuitem\">Formatua - Karakterea</item>. <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa+T</caseinline><defaultinline>F11</defaultinline></switchinline> sakatu dezakezu, <emph>Estiloak eta formatuak</emph> leihoa irekitzeko eta oin-ohar eta amaiera-oharren paragrafo-estiloa aldatzeko."
#: 02150000.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_id3150023\n"
"help.text"
msgid "<image id=\"img_id3150030\" src=\"res/lc06301.png\"><alt id=\"alt_id3150030\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150030\" src=\"res/lc06301.png\"><alt id=\"alt_id3150030\">Ikonoa</alt></image>"
#: 02150000.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_id3154029\n"
"help.text"
msgid "<image id=\"img_id3154044\" src=\"res/lc06300.png\"><alt id=\"alt_id3154044\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154044\" src=\"res/lc06300.png\"><alt id=\"alt_id3154044\">Ikonoa</alt></image>"
#: 02150000.xhp
msgctxt ""
diff --git a/source/eu/sc/source/ui/src.po b/source/eu/sc/source/ui/src.po
index 32b3fc20e24..82eb1bdc8de 100644
--- a/source/eu/sc/source/ui/src.po
+++ b/source/eu/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: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2016-12-22 14:12+0000\n"
+"PO-Revision-Date: 2017-04-17 18:44+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482415957.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492454680.000000\n"
#: filter.src
msgctxt ""
@@ -18354,7 +18354,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the number of permutations for a given number of objects (repetition allowed)."
-msgstr "Errepikatuzko permutazioak kalkulatzen ditu."
+msgstr "Emandako objektu kopuru baten permutazioak kalkulatzen ditu. (errepikapenak onartuta)"
#: scfuncs.src
msgctxt ""
diff --git a/source/eu/sfx2/source/dialog.po b/source/eu/sfx2/source/dialog.po
index 675b3a881a4..a454abe6fdd 100644
--- a/source/eu/sfx2/source/dialog.po
+++ b/source/eu/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-26 13:06+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482757583.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkikoa"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/eu/sfx2/uiconfig/ui.po b/source/eu/sfx2/uiconfig/ui.po
index 6f415a87384..af5d6be3362 100644
--- a/source/eu/sfx2/uiconfig/ui.po
+++ b/source/eu/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-08 18:16+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1481220991.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME Mozilla Public License, v. 2.0 lizentziaren terminoak jarraituz argitaratu da. MPL lizentziaren kopia bat eskura daiteke http://mozilla.org/MPL/2.0/ helbidean.\n"
-"\n"
-"Hirugarrenen kodearen beste copyright-ohar eta lizentzia-termino batzuk, softwarearen beste zati batzuei aplikatutakoak, LICENSE.html fitxategian jaso dira; hautatu \"Erakutsi lizentzia\" xehetasunak ikusteko ingelesez.\n"
-"\n"
-"Aipatutako marka erregistratu guztiak, bakoitza bere jabearenak dira.\n"
-"\n"
-"Copyright © 2000-2016 LibreOffice kolaboratzaileak. Eskubide guztiak erreserbatuta.\n"
-"\n"
-"Produktu honen sortzailea %OOOVENDOR da. Oracle eta/edo haren afiliatuen Copyright 2000, 2011 lizentzia duen OpenOffice.org aplikazioan oinarrituta dago. %OOOVENDOR hornitzaileak komunitateko kide guztien lana aitortzen du, ikus http://www.libreoffice.org/ xehetasun gehiagorako."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/eu/svtools/source/dialogs.po b/source/eu/svtools/source/dialogs.po
index a3fe6f8ec03..67fce074c45 100644
--- a/source/eu/svtools/source/dialogs.po
+++ b/source/eu/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-24 20:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-19 12:20+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456345217.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1458390004.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Formatudun testua [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/eu/svtools/source/misc.po b/source/eu/svtools/source/misc.po
index 3e94710f73c..6fc7fd543da 100644
--- a/source/eu/svtools/source/misc.po
+++ b/source/eu/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-10 09:17+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1481361425.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungariera (Szekely-Hungariar Runak)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/eu/svx/source/stbctrls.po b/source/eu/svx/source/stbctrls.po
index a812f6bd9ad..0ce3b2497b7 100644
--- a/source/eu/svx/source/stbctrls.po
+++ b/source/eu/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-26 13:33+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482759237.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Doitu diapositiba uneko lehiora."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/eu/svx/uiconfig/ui.po b/source/eu/svx/uiconfig/ui.po
index 11d8cfbbc4e..d1dc957a5e8 100644
--- a/source/eu/svx/uiconfig/ui.po
+++ b/source/eu/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-05 08:12+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488701533.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Jarraitu modu seguruan"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Irte_n"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Aplikatu aldaketak eta berrabiarazi"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/fa/cui/uiconfig/ui.po b/source/fa/cui/uiconfig/ui.po
index ba7f71fe818..3486cf38360 100644
--- a/source/fa/cui/uiconfig/ui.po
+++ b/source/fa/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:26+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 15:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476797184.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480604955.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/fa/sfx2/source/dialog.po b/source/fa/sfx2/source/dialog.po
index 35dbe1530b3..e48dfe0992d 100644
--- a/source/fa/sfx2/source/dialog.po
+++ b/source/fa/sfx2/source/dialog.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:01+0000\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-16 06:52+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666071.000000\n"
+"X-POOTLE-MTIME: 1479279127.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "سلسله‌مراتبی"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/fa/sfx2/uiconfig/ui.po b/source/fa/sfx2/uiconfig/ui.po
index 5c9f3fc6ce4..97cdcbcaa53 100644
--- a/source/fa/sfx2/uiconfig/ui.po
+++ b/source/fa/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 21:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 15:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467666266.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480606856.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/fa/svtools/source/dialogs.po b/source/fa/svtools/source/dialogs.po
index 938f51c6d4b..0f4ba6eacbf 100644
--- a/source/fa/svtools/source/dialogs.po
+++ b/source/fa/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 22:11+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440540716.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "متن قالب‌بندی شده [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/fa/svtools/source/misc.po b/source/fa/svtools/source/misc.po
index 76c7e99b3cd..f7ef0a097bf 100644
--- a/source/fa/svtools/source/misc.po
+++ b/source/fa/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 11:19+0000\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-16 07:26+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462706353.000000\n"
+"X-POOTLE-MTIME: 1479281219.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/fa/svx/source/stbctrls.po b/source/fa/svx/source/stbctrls.po
index 4e614a54161..c276eadd143 100644
--- a/source/fa/svx/source/stbctrls.po
+++ b/source/fa/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:08+0000\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-16 08:05+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666504.000000\n"
+"X-POOTLE-MTIME: 1479283511.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/fa/svx/uiconfig/ui.po b/source/fa/svx/uiconfig/ui.po
index e7a50000466..6fcb658116d 100644
--- a/source/fa/svx/uiconfig/ui.po
+++ b/source/fa/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 15:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/fi/cui/uiconfig/ui.po b/source/fi/cui/uiconfig/ui.po
index b08770863fd..fc03d432ef4 100644
--- a/source/fi/cui/uiconfig/ui.po
+++ b/source/fi/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 16:35+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487435731.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 LibreOffice-kehittäjät."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/scalc/01.po b/source/fi/helpcontent2/source/text/scalc/01.po
index 7c784c41194..a1e2614db49 100644
--- a/source/fi/helpcontent2/source/text/scalc/01.po
+++ b/source/fi/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 02:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5677,7 +5677,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5685,7 +5685,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index b33ff7cfdf9..ae2efbce8ad 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/fi/sfx2/source/dialog.po b/source/fi/sfx2/source/dialog.po
index 90ed332f9b2..85af47c9929 100644
--- a/source/fi/sfx2/source/dialog.po
+++ b/source/fi/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 18:16+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487873815.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkkinen"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/fi/sfx2/uiconfig/ui.po b/source/fi/sfx2/uiconfig/ui.po
index 7e1045b9f39..9b6983d2fe2 100644
--- a/source/fi/sfx2/uiconfig/ui.po
+++ b/source/fi/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 18:23+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487874222.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME on julkaistu Mozilla Public License -lisenssin version 2.0 ehdoilla. MPL-lisenssin teksti on saatavilla osoitteessa http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Kolmansien osapuolten tekijänoikeustiedot sekä lisenssiehdot, jotka koskevat osaa ohjelmistosta, on listattu tiedostossa LICENSE.html; valitse Näytä lisenssiteksti nähdäksesi nämä tiedot englanniksi.\n"
-"\n"
-"Kaikki täällä mainitut tavaramerkit ja rekisteröidyt tavaramerkit kuuluvat kyseisten tavaramerkkien omistajille.\n"
-"\n"
-"Copyright © 2000–2016 LibreOffice-kehittäjät. Kaikki oikeudet pidätetään.\n"
-"\n"
-"Tämän tuotteen on luonut %OOOVENDOR. Se perustuu OpenOffice.orgiin, joka on Copyright 2000, 2011 Oracle ja/tai sen yhteistyökumppanit. %OOOVENDOR tunnustaa kaikkien yhteisön jäsenten työpanoksen. Lisätietoja osoitteesta http://fi.libreoffice.org/"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/fi/svtools/source/dialogs.po b/source/fi/svtools/source/dialogs.po
index dcd15cd76df..4936673dc84 100644
--- a/source/fi/svtools/source/dialogs.po
+++ b/source/fi/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-04 15:55+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1451922933.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Muotoiltu teksti [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/fi/svtools/source/misc.po b/source/fi/svtools/source/misc.po
index d7ac82e21f9..3d3d97678d9 100644
--- a/source/fi/svtools/source/misc.po
+++ b/source/fi/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 17:22+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485710543.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "unkari (unkarilaiset riimut)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/fi/svx/source/stbctrls.po b/source/fi/svx/source/stbctrls.po
index bb83e163ceb..50b0896ec22 100644
--- a/source/fi/svx/source/stbctrls.po
+++ b/source/fi/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 19:59+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487447962.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Sovita dia nykyiseen ikkunaan."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/fi/svx/uiconfig/ui.po b/source/fi/svx/uiconfig/ui.po
index b83a3f83295..1533625903b 100644
--- a/source/fi/svx/uiconfig/ui.po
+++ b/source/fi/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 17:51+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487872306.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "Jatka vikasietotilassa"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Lopeta"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Ota muutokset käyttöön ja käynnistä uudelleen"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/fr/cui/uiconfig/ui.po b/source/fr/cui/uiconfig/ui.po
index 9d6de543879..df0ee8f3fb5 100644
--- a/source/fr/cui/uiconfig/ui.po
+++ b/source/fr/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-17 05:39+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 05:06+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1489729145.000000\n"
+"X-POOTLE-MTIME: 1491973580.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Contributeurs LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 Contributeurs LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index 3b130611b33..5e6e3e58582 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-01 06:06+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 08:20+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488348381.000000\n"
+"X-POOTLE-MTIME: 1491985256.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index 6f34ec63391..7243ac50a49 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ 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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-21 11:29+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-12 08:21+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1487676593.000000\n"
+"X-POOTLE-MTIME: 1491985303.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2454,8 +2454,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Choisir une couleur</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Choisir</link>"
#: 01010501.xhp
msgctxt ""
diff --git a/source/fr/sfx2/source/dialog.po b/source/fr/sfx2/source/dialog.po
index e6e383ed897..6acfa091353 100644
--- a/source/fr/sfx2/source/dialog.po
+++ b/source/fr/sfx2/source/dialog.po
@@ -3,19 +3,19 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 17:27+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 06:58+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1481045243.000000\n"
+"X-POOTLE-MTIME: 1491980326.000000\n"
#: dialog.src
msgctxt ""
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiérarchie"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Mode Tout remplir"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Nouveau style à partir de la sélection"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Actualiser le style"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/fr/sfx2/uiconfig/ui.po b/source/fr/sfx2/uiconfig/ui.po
index d078aef13ee..75d84f61d4d 100644
--- a/source/fr/sfx2/uiconfig/ui.po
+++ b/source/fr/sfx2/uiconfig/ui.po
@@ -3,19 +3,19 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-06 17:09+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 07:00+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1481044166.000000\n"
+"X-POOTLE-MTIME: 1491980437.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -805,7 +805,7 @@ msgstr ""
"\n"
"Toutes les marques et marques déposées mentionnées dans ce document sont la propriété de leurs propriétaires respectifs.\n"
"\n"
-"Copyright © 2000, 2016 collaborateurs LibreOffice. Tous droits réservés.\n"
+"Copyright © 2000, 2017 collaborateurs LibreOffice. Tous droits réservés.\n"
"\n"
"Ce produit a été créé par %OOOVENDOR, basé sur OpenOffice.org, qui est Copyright 2000, 2011 Oracle et/ou ses filiales. %OOOVENDOR remercie tous les membres de la communauté, veuillez consulter http://www.libreoffice.org/ pour plus de détails."
diff --git a/source/fr/svtools/source/dialogs.po b/source/fr/svtools/source/dialogs.po
index 58222a8af48..2982dfaebfe 100644
--- a/source/fr/svtools/source/dialogs.po
+++ b/source/fr/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-09-14 04:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 05:07+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442205378.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491973630.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Texte formaté [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Texte formaté [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/fr/svtools/source/misc.po b/source/fr/svtools/source/misc.po
index 45b86589aa0..955b35ad5f2 100644
--- a/source/fr/svtools/source/misc.po
+++ b/source/fr/svtools/source/misc.po
@@ -3,19 +3,19 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-04 18:31+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 05:07+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480876271.000000\n"
+"X-POOTLE-MTIME: 1491973653.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3888,6 +3888,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hongrois (runes Hongrois-Szekely)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Anglais (Malaisie)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/fr/svx/source/stbctrls.po b/source/fr/svx/source/stbctrls.po
index a997ce66557..f5601c889ee 100644
--- a/source/fr/svx/source/stbctrls.po
+++ b/source/fr/svx/source/stbctrls.po
@@ -3,19 +3,19 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-28 17:45+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 05:14+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480355159.000000\n"
+"X-POOTLE-MTIME: 1491974070.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr "Adapter la diapo à la fenêtre active"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Impossible de charger tous les SmartArts. Enregistrer en Microsoft Office 2010 ou suivant permettrait de résoudre ce problème."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/fr/svx/uiconfig/ui.po b/source/fr/svx/uiconfig/ui.po
index 361ed383032..da23530ea18 100644
--- a/source/fr/svx/uiconfig/ui.po
+++ b/source/fr/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-03-17 05:40+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 05:09+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1489729253.000000\n"
+"X-POOTLE-MTIME: 1491973764.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5076,16 +5076,16 @@ msgstr "_Continuer en mode Sans échec"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Quitter"
+msgid "_Restart in Normal Mode"
+msgstr "_Redémarrer en mode normal"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ga/cui/uiconfig/ui.po b/source/ga/cui/uiconfig/ui.po
index 2a7a37f8bb4..a922020a2be 100644
--- a/source/ga/cui/uiconfig/ui.po
+++ b/source/ga/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 16:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476797353.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480608849.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "Is cnuasach soláimhsithe ríomhchlár táirgiúlachta, bunaithe ar fhoinse oscailte, é %PRODUCTNAME um próiseáil focal, scarbhileoga, cur i láthair agus tuilleadh a chur i gcrích."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2014 Rannpháirtithe LibreOffice agus/nó a gcleamhnaithe."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ga/sfx2/source/dialog.po b/source/ga/sfx2/source/dialog.po
index 05d2217ba46..d56d7a65ae4 100644
--- a/source/ga/sfx2/source/dialog.po
+++ b/source/ga/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:58+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 21:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467669526.000000\n"
+"X-POOTLE-MTIME: 1480628856.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ordlathach"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ga/sfx2/uiconfig/ui.po b/source/ga/sfx2/uiconfig/ui.po
index 5fe0fcf77aa..6b8bea94fb7 100644
--- a/source/ga/sfx2/uiconfig/ui.po
+++ b/source/ga/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 21:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467669655.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480629001.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -784,7 +784,6 @@ msgid "_Show License"
msgstr "_Taispeáin an Ceadúnas"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -797,19 +796,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Cuirtear %PRODUCTNAME ar fáil de réir téarmaí an Mozilla Public License, leagan 2.0. Is féidir teacht ar chóip den cheadúnas MPL ó http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Cód Tríú Páirtí: Leagtar amach sa chomhad LICENSE.html breis téarmaí ceadúnais agus fógraí cóipchirt a bhaineann le codanna den Bhogearra; roghnaigh Taispeáin Ceadúnas chun mionsonraí beachta a fháil i mBéarla.\n"
-"\n"
-"Is lena n-úinéirí faoi seach iad gach trádmharc agus trádmharc cláraithe a luaitear anseo.\n"
-"\n"
-"Copyright © 2000, 2014 Rannpháirtithe LibreOffice. Gach ceart ar cosaint.\n"
-"\n"
-"Chruthaigh %OOOVENDOR an táirge seo, bunaithe ar OpenOffice.org, Cóipcheart 2000, 2011 Oracle agus/nó a chleamhnaithe. Aithníonn %OOOVENDOR an comhphobal ar fad, féach ar http://www.libreoffice.org/ chun tuilleadh eolais a fháil."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ga/svtools/source/dialogs.po b/source/ga/svtools/source/dialogs.po
index 152caef4527..aaa163114c0 100644
--- a/source/ga/svtools/source/dialogs.po
+++ b/source/ga/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 15:40+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 16:27+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385480420.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449851249.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Téacs formáidithe [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ga/svtools/source/misc.po b/source/ga/svtools/source/misc.po
index 4bbd11ee549..50a68a31a5a 100644
--- a/source/ga/svtools/source/misc.po
+++ b/source/ga/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 22:03+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 21:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467669786.000000\n"
+"X-POOTLE-MTIME: 1480629181.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ga/svx/source/stbctrls.po b/source/ga/svx/source/stbctrls.po
index e460de7ae4f..00f65ff1976 100644
--- a/source/ga/svx/source/stbctrls.po
+++ b/source/ga/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 22:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 22:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467669865.000000\n"
+"X-POOTLE-MTIME: 1480629751.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Oiriúnaigh an sleamhnán don fhuinneog reatha."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ga/svx/uiconfig/ui.po b/source/ga/svx/uiconfig/ui.po
index d0ef98fa748..2a9b6ed46a0 100644
--- a/source/ga/svx/uiconfig/ui.po
+++ b/source/ga/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 22:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -5082,16 +5082,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/gd/cui/uiconfig/ui.po b/source/gd/cui/uiconfig/ui.po
index c6b0129951b..d16255987e5 100644
--- a/source/gd/cui/uiconfig/ui.po
+++ b/source/gd/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-25 22:33+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1490481190.000000\n"
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Còir-lethbhreac © 2000 - 2016 com-pàirtichean LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/gd/sfx2/source/dialog.po b/source/gd/sfx2/source/dialog.po
index 91090f7292e..c459a88a4d1 100644
--- a/source/gd/sfx2/source/dialog.po
+++ b/source/gd/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-25 22:56+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1490482583.000000\n"
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Rangach"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/gd/sfx2/uiconfig/ui.po b/source/gd/sfx2/uiconfig/ui.po
index 12cd7a3497b..098b52af05e 100644
--- a/source/gd/sfx2/uiconfig/ui.po
+++ b/source/gd/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 01:59+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: none\n"
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Tha %PRODUCTNAME ri do làimh fo chumhaichean ceadachas Mozilla Public License, v. 2.0. Gheibhear lethbhreac a’ cheadachais MPL aig http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Tha cuid dhen bhathar-bhog fo bhuaidh cumhaichean còir-lethbhreac is ceadachas Third Party Code Additional a gheibhear san fhaidhle LICENSE.html; tagh “Seall an ceadachas” gus am mion-fhiosrachadh fhaicinn sa Bheurla.\n"
-"\n"
-"Tha gach comharra-malairt is comharra-malairt clàraichte a thathar a’ toirt iomradh air ann fo sheilbh an cuid seilbheadairean.\n"
-"\n"
-"Còir-lethbhreac © 2000–2016 com-pàirtichean LibreOffice. Gach còir glèidhte.\n"
-"\n"
-"Chaidh am bathar seo a chruthachadh le %OOOVENDOR, stèidhichte air OpenOffice.org, a tha fo chòir-lethbhreac 2000, 2011 Oracle agus/no na dlùth-chompanaich aca. Tha %OOOVENDOR a’ toirt urram do gach ball dhen choimhearsnachd, thoir sùil air http://gd.libreoffice.org/mu-libreoffice/creideisean/ airson barrachd fiosrachaidh."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/gd/svtools/source/dialogs.po b/source/gd/svtools/source/dialogs.po
index a3f0b78b999..80df7db20c5 100644
--- a/source/gd/svtools/source/dialogs.po
+++ b/source/gd/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-12-13 23:39+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1450049971.000000\n"
@@ -340,6 +340,14 @@ msgstr "Teacsa fòrmataichte [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/gd/svtools/source/misc.po b/source/gd/svtools/source/misc.po
index a5978503c69..1e949fc700e 100644
--- a/source/gd/svtools/source/misc.po
+++ b/source/gd/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 01:36+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -3888,6 +3888,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungairis (Székely Rovásírás)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gd/svx/source/stbctrls.po b/source/gd/svx/source/stbctrls.po
index d0030f88c81..e6b60e1a359 100644
--- a/source/gd/svx/source/stbctrls.po
+++ b/source/gd/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 23:12+0000\n"
-"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 22:22+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467673939.000000\n"
+"X-POOTLE-MTIME: 1480717371.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr "Freagair meud na sleamhnaige ris an uinneag làithreach."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/gd/svx/uiconfig/ui.po b/source/gd/svx/uiconfig/ui.po
index 5538484d352..b70c818a26d 100644
--- a/source/gd/svx/uiconfig/ui.po
+++ b/source/gd/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-25 22:57+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490482663.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/gl/cui/uiconfig/ui.po b/source/gl/cui/uiconfig/ui.po
index 00d193fccff..8bc3ae6247a 100644
--- a/source/gl/cui/uiconfig/ui.po
+++ b/source/gl/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-05 15:39+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488728391.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Dereitos de autor © 2000–2016 dos colaboradores de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/gl/desktop/source/deployment/registry/script.po b/source/gl/desktop/source/deployment/registry/script.po
index 59abcd853b4..210d61904a5 100644
--- a/source/gl/desktop/source/deployment/registry/script.po
+++ b/source/gl/desktop/source/deployment/registry/script.po
@@ -3,17 +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: 2011-04-05 20:17+0200\n"
-"Last-Translator: Antón <meixome@certima.net>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-18 04:42+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492490526.000000\n"
#: dp_script.src
msgctxt ""
@@ -21,7 +22,7 @@ msgctxt ""
"RID_STR_BASIC_LIB\n"
"string.text"
msgid "%PRODUCTNAME Basic Library"
-msgstr "Biblioteca básica de %PRODUCTNAME"
+msgstr "Biblioteca de %PRODUCTNAME Basic"
#: dp_script.src
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared.po b/source/gl/helpcontent2/source/text/sbasic/shared.po
index 1f629371d2a..97fb6c78e46 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-26 21:12+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-04-01 12:42+0000\n"
+"Last-Translator: unho <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490562771.000000\n"
+"X-POOTLE-MTIME: 1491050545.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
-msgstr ""
+msgstr "...despois de crear un novo documento con <emph>Ficheiro - Novo</emph> ou coa icona <emph>Novo</emph>."
#: 01040000.xhp
msgctxt ""
@@ -4499,7 +4499,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:RenameCurrent\">Renomea o módulo actual no lugar.</ahelp>"
#: 01050000.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared/02.po b/source/gl/helpcontent2/source/text/sbasic/shared/02.po
index 65dc5d026c5..3efc035ff6c 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared/02.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:11+0200\n"
-"PO-Revision-Date: 2014-05-29 16:48+0000\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2017-04-02 21:23+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401382094.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491168182.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icona</alt></image>"
#: 11030000.xhp
msgctxt ""
@@ -994,7 +994,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3147571\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3157909\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1073,7 +1073,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
-msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3144760\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1099,7 +1099,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3150439\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1125,7 +1125,7 @@ msgctxt ""
"par_id3155856\n"
"help.text"
msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3146921\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1151,7 +1151,7 @@ msgctxt ""
"par_id3149300\n"
"help.text"
msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"2.22mm\" height=\"2.22mm\"><alt id=\"alt_id3153415\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1177,7 +1177,7 @@ msgctxt ""
"par_id3153766\n"
"help.text"
msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"2.22mm\" height=\"2.22mm\"><alt id=\"alt_id3148996\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1203,7 +1203,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3163808\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"par_id3148418\n"
"help.text"
msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3153200\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"par_id3153781\n"
"help.text"
msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149530\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1281,7 +1281,7 @@ msgctxt ""
"par_id3150515\n"
"help.text"
msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3150203\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1307,7 +1307,7 @@ msgctxt ""
"par_id3151184\n"
"help.text"
msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151335\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3159093\n"
"help.text"
msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150318\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1368,7 +1368,7 @@ msgctxt ""
"par_id3150888\n"
"help.text"
msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" height=\"4.23mm\" width=\"4.23mm\"><alt id=\"alt_id3152872\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1394,7 +1394,7 @@ msgctxt ""
"par_id3154913\n"
"help.text"
msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153249\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1420,7 +1420,7 @@ msgctxt ""
"par_id3148901\n"
"help.text"
msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151010\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"par_id3154338\n"
"help.text"
msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3147077\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"par_id3146107\n"
"help.text"
msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"2.22mm\" height=\"2.22mm\"><alt id=\"alt_id3147499\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1507,7 +1507,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3150435\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1533,7 +1533,7 @@ msgctxt ""
"par_id3153162\n"
"help.text"
msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3152807\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"par_id3150379\n"
"help.text"
msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3150032\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1585,7 +1585,7 @@ msgctxt ""
"par_id3149194\n"
"help.text"
msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149101\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1611,7 +1611,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150653\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1637,7 +1637,7 @@ msgctxt ""
"par_id3148725\n"
"help.text"
msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3146874\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1663,7 +1663,7 @@ msgctxt ""
"par_id3147417\n"
"help.text"
msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3148883\" xml-lang=\"gl\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icona</alt></image>"
#: 20000000.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index 641426e25d7..6964f98f711 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-03 21:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488576325.000000\n"
#: 01120000.xhp
@@ -5712,22 +5712,20 @@ msgid "Functions"
msgstr "Funcións"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 2721c787f92..7e7ac5baac1 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/gl/helpcontent2/source/text/simpress/00.po b/source/gl/helpcontent2/source/text/simpress/00.po
index a07350b9bed..83286773bc2 100644
--- a/source/gl/helpcontent2/source/text/simpress/00.po
+++ b/source/gl/helpcontent2/source/text/simpress/00.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-26 21:14+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-04-01 11:36+0000\n"
+"Last-Translator: Antón Méixome <meixome@certima.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490562897.000000\n"
+"X-POOTLE-MTIME: 1491046570.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"par_id3153935\n"
"help.text"
msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Field - Page Number</emph></variable>"
-msgstr "<variable id=\"feldbf7\">Escolla <emph>Inserir - Campo - Número de páxina</emph></variable>"
+msgstr "<variable id=\"feldbf5\">Escolla <emph>Inserir - Campo - Número de páxina</emph></variable>"
#: 00000404.xhp
#, fuzzy
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index cec6dcd983b..f2c7c35c0ad 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-26 21:42+0000\n"
+"PO-Revision-Date: 2017-04-02 21:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490564548.000000\n"
+"X-POOTLE-MTIME: 1491168932.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVIGATOR_LISTBOX\">Lists the names of all open text documents. To view the contents of a document in the Navigator window, select the name of the document in the list. The current document displayed in the Navigator is indicated by the word \"active\" after its name in the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVIGATOR_LISTBOX\"> Lista os nomes de todos osdocumentos de texto abertos. Para ver o contido dun documento na ventáNavegador, seleccione o nome do documento na lista. O documento actualexhibido no Explorador indícase por palabra\"\\ activo\" despois do seu nomena lista.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVIGATOR_LISTBOX\">Lista os nomes de todos os documentos de texto abertos. Para ver o contido dun documento na xanela Navegador seleccione o nome do documento na lista. O documento actual exhibido no Explorador indícase coa palabra «activo» a seguir o seu nome na lista.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1499,7 +1499,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"HID_SCRL_PAGEDOWN\">Click the down button to scroll to the next page or object.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCRL_PAGEDOWN\"> Prema no botón de embaixo paradesprazarse á seguinte páxina ou obxecto.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCRL_PAGEDOWN\"> Prema no botón de embaixo para desprazarse á páxina ou obxecto seguinte.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1972,7 +1972,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/newtext\">Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/newText\"> Crea unha entrada de texto automático nova só a partir do texto na selección que fixo no documento actual. Gráficos, táboas e outros obxectos non están incluídos. Hai que escribir un nome antes de ver esta orde.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/newtext\">Crea unha entrada de texto automático nova a partir da selección feita no documento actual. A entrada engádese á categoría de texto automático seleccionada no momento. Hai que escribir un nome antes de ver esta orde. </ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2089,7 +2089,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/import\">Opens a dialog where you can select the MS 97/2000/XP Word document or template, containing the AutoText entries that you want to import.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/import\">Abre un diálogo no que pode seleccionar o documento ou modelo de MS Word 97/2000/XP que conteña as entradas de texto automático que desexe importar.</ ahelp >"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/import\">Abre un diálogo no que pode seleccionar o documento ou modelo de MS Word 97/2000/XP que conteña as entradas de texto automático que desexe importar.</ahelp >"
#: 02120000.xhp
msgctxt ""
@@ -2143,7 +2143,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editcategories/name\">Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click <emph>Rename</emph>. To create a new category, type a name, and then click <emph>New</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/nome\"> Mostra onome da categoría de texto automático seleccionada. Para cambiar o nome dacategoría, introduza un novo nome e prema en <emph>Renomear</emph>. Paracrear unha nova categoría, escriba un nome e prema en <emph>Nova</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/nome\">Mostra o nome da categoría de texto automático seleccionada. Para cambiar o nome da categoría, introduza un novo nome e prema en <emph>Renomear</emph>. Para crear unha nova categoría, escriba un nome e prema en <emph>Nova</emph>.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2233,7 +2233,7 @@ msgctxt ""
"57\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Edit Paths dialog, where you can select the directory to store AutoText.</ahelp> Opens the <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edit Paths\">Edit Paths</link> dialog, where you can select the directory to store AutoText."
-msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\"> Abre a caixa de diálogo EditarCamiños, onde pode seleccionar o directorio para almacenar textoautomático.</ahelp> Abre o <link href=\\ \"text// Optionen compartida/01010301.xhp\"name=\" Editar Paths\"> Editar camiños </link> dediálogo, onde pode seleccionar o directorio para almacenar texto automático."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre a caixa de diálogo Editar rutas, onde pode seleccionar o directorio para almacenar texto automático.</ahelp> Abre a caixa de diálogo <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edit Paths\">Editar rutas</link>, onde pode seleccionar o directorio para almacenar texto automático."
#: 02120000.xhp
msgctxt ""
@@ -2242,7 +2242,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "To add a new path to an AutoText directory, click the <emph>Path</emph> button in the <emph>AutoText </emph>dialog."
-msgstr "Para engadir unha ruta nova a un directorio de texto automático, prema no botón <emph>Ruta<emph /> na caixa de diálogo <emph>texto automático </ emph>."
+msgstr "Para engadir un novo camiño para un directorio de texto automático, prema no botón <emph>Camiño botón <emph /> na caixa de diálogo <emph>texto automático </ emph>."
#: 02120000.xhp
msgctxt ""
@@ -4690,7 +4690,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Inserts a <link href=\"text/shared/01/04100000.xhp\" name=\"special character \">special character </link> as a footnote or endnote anchor.</ahelp></variable>"
-msgstr "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ ui/insertfootnote/choosecharacter\">Insire un <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">carácter especial </link> como áncora de nota a rodapé ou final.</ahelp></variable>"
+msgstr "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Insire un <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">carácter especial </link> como áncora de nota a rodapé ou final.</ahelp></variable>"
#: 04030000.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertfootnote/footnote\">Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertfootnote/nota\"> Insire unha áncora de nota na posición actual do cursor no documento e engade unha nota a rodapé na parte inferior da páxina.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertfootnote/footnote\">Insire unha áncora de nota na posición actual do cursor no documento e engade unha nota a rodapé na parte inferior da páxina.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -5450,7 +5450,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envformatpage/topaddr\">Enter the amount of space that you want to leave between the top edge of the envelope and the addressee field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/topaddr\"> Insire a cantidade de espazo que quere deixar entre o bordo superior do sobre e o campo de destinatario.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/topaddr\">Insire a cantidade de espazo que quere deixar entre o bordo superior do sobre e o campo de destinatario.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -5468,7 +5468,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envformatpage/addredit\">Click and choose the text formatting style for the addressee field that you want to edit.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/addredit\"> Prema e escolla o estilo de formato de texto para o campo de destinatario que quere editar.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/addredit\">Prema e escolla o estilo de formato de texto para o campo de destinatario que quere editar.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -5594,7 +5594,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envformatpage/senderedit\">Click and choose the text formatting style for the sender field that you want to edit.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/senderedit\"> Prema e escolla o estilo de formato de texto para o campo do remitente que desexe editar.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/senderedit\">Prema e escolla o estilo de formato de texto para o campo do remitente que desexe editar.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -5684,7 +5684,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envformatpage/width\">Enter the width of the envelope.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/ancho\"> Introduza a largura do sobre.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envformatpage/ancho\">Introduza a largura do sobre.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -5728,7 +5728,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envprinterpage/EnvPrinterPage\">Set the print options for the envelope.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/EnvPrinterPage\">Define as opcións de impresión do sobre.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/EnvPrinterPage\">Defina as opcións de impresión do sobre.</ahelp>"
#: 04070300.xhp
msgctxt ""
@@ -5863,7 +5863,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envprinterpage/top\">Feeds the envelope with the print side face up in the printer tray.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/top\"> Alimenta o sobre co lado de impresión superior na bandexa da impresora.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/top\">Alimenta o sobre co lado de impresión superior na bandexa da impresora.</ahelp>"
#: 04070300.xhp
msgctxt ""
@@ -6248,7 +6248,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "The following fields can only be inserted if the corresponding field type is selected in the <emph>Type </emph>list."
-msgstr "Os campos a seguir só pode ser inserido se o tipo de campo correspondente estiver seleccionado na lista </emph>Tipo<emph>."
+msgstr "Os campos a seguir só pode ser inserido se o tipo de campo correspondente estiver seleccionado na lista <emph>Tipo</emph>."
#: 04090001.xhp
msgctxt ""
@@ -6266,7 +6266,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista </emph>Tipo<emph>. Para inserir un campo, prema no campo e prema en <emph>Inserir</ emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista <emph>Tipo</emph>. Para inserir un campo, prema no campo e prema en <emph>Inserir</emph>.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -6526,7 +6526,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Select the chapter heading level that you want to include in the selected field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/nivel\">Seleccione o nivel de título do capítulo que desexa incluír no campo seleccionado.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Seleccione o nivel de título do capítulo que desexa incluír no campo seleccionado.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -7379,7 +7379,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/cond2\">Enter the text to display when the condition is met in the <emph>Then </emph>box, and the text to display when the condition is not met in the <emph>Else </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/cond2\">Introduza o texto a ser mostrado cando a condición se verifica no cadro <emph>Entón</emph> e o texto a ser mostrado cando a condición non se verifica no cadro <emph>Senón</ emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/cond2\">Introduza o texto a ser mostrado cando a condición se verifica no cadro <emph>Entón</emph> e o texto a ser mostrado cando a condición non se verifica no cadro <emph>Senón</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7595,7 +7595,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/add\">Adds the <emph>Item</emph> to the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/engadir\"> Engade o<emph>Elemento</emph> á lista.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/add\">Engade o <emph>Elemento</emph> á lista.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7613,7 +7613,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/listitems\">Lists the items. The topmost item is shown in the document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/listitems\"> Lista oselementos. O elemento superior móstrase no documento.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/listitems\">Lista os elementos. O elemento superior móstrase no documento.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7649,7 +7649,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/up\">Moves the selected item up in the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/up\"> Move o elementoseleccionado arriba na lista.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/up\">Sube o elemento seleccionado na lista.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7667,7 +7667,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/down\">Moves the selected item down in the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/down\"> Move oelemento seleccionado abaixo na lista.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/down\">Baixa o elemento seleccionado na lista.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7685,7 +7685,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/listname\">Enter a unique name for the <emph>Input list</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/nome da lista\">Introduza un nome exclusivo para a <emph>Lista de entrada</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/listname\">Introduza un nome exclusivo para a <emph>Lista de entrada</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7748,7 +7748,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<ahelp hid=\"SW_PUSHBUTTON_DLG_FLD_DROPDOWN_PB_NEXT\">Closes the current <emph>Input list</emph> and displays the next, if available.</ahelp> You see this button when you open the <emph>Choose Item</emph> dialog by Ctrl+Shift+F9."
-msgstr "<ahelp hid=\"SW_PUSHBUTTON_DLG_FLD_DROPDOWN_PB_NEXT\"> Pecha o actual<emph>Lista de entrada</emph> e mostra o seguinte, se está dispoñíbel.</ahelp> Ve este botón cando se abre o <emph>Escolla Item </ emph > diálogopor Ctrl + Maiús + F9."
+msgstr "<ahelp hid=\"SW_PUSHBUTTON_DLG_FLD_DROPDOWN_PB_NEXT\">Pecha a <emph>Lista de entrada</emph> actual e mostra a seguinte, se estiver dispoñíbel.</ahelp>Este botón vese ao abrir a caixa de diálogo <emph>Escoller elemento</ emph > con Ctrl + Maiús + F9."
#: 04090004.xhp
msgctxt ""
@@ -7791,7 +7791,7 @@ msgctxt ""
"par_id0902200804290053\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert.</ahelp>"
-msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\"> Lista os tipos de camposdispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo,prema no campo na lista Seleccionar e, a seguir, prema en Inserir.</ahelp>"
+msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\">Lista os tipos de campo dispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo, prema no campo na lista Seleccionar e, a seguir, prema en Inserir.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7997,7 +7997,7 @@ msgctxt ""
"par_id0902200804290272\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\"> Lista os campos dispoñíbeispara o tipo de campo seleccionado no tipo</emph> lista <emph>. Parainserir un campo, prema no campo e prema en <emph>Inserir</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\">Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista</emph>Tipo<emph>Para inserir un campo, prema no campo e prema en <emph>Inserir</emph>.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"par_id0902200804290382\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\"> Prema no formato que desexaaplicar ao campo seleccionado, ou prema en\"Formatos adicionais \" paradefinir un formato personalizado.</ahelp>"
+msgstr "<ahelp hid=\".\" Visibility=\\ \"hidden\">Prema no formato que desexe aplicar ao campo seleccionado, ou prema en «Formatos adicionais» para definir un formato personalizado.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -8032,7 +8032,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocinfopage/fixed\">Inserts the field as static content, that is, the field cannot be updated.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocinfopage/\\ fixo\"> Insire ocampo como contido estático, é dicir, o campo non se pode actualizar.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocinfopage/fixed\">Insire o campo como contido estático, é dicir, non é posíbel actualizar o campo.</ahelp>"
#: 04090004.xhp
msgctxt ""
diff --git a/source/gl/sfx2/source/dialog.po b/source/gl/sfx2/source/dialog.po
index dbd0257fa79..6a2d9824413 100644
--- a/source/gl/sfx2/source/dialog.po
+++ b/source/gl/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 21:26+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487453184.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Xerárquico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/gl/sfx2/uiconfig/ui.po b/source/gl/sfx2/uiconfig/ui.po
index 8cb9a5f359b..4ac6d264262 100644
--- a/source/gl/sfx2/uiconfig/ui.po
+++ b/source/gl/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 21:34+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487453643.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME ofrécese consonte os termos da licenza pública Mozilla, v. 2.0. Pódese obter unha copia da licenza en http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Os dereitos de autor e os termos das licenzas de terceiros aplicábeis a partes do software están descritas no ficheiro LICENSE.html; escolla Amosar a licenza para ver os detalles exactos (en inglés).\n"
-"\n"
-"Todas as marcas, rexistradas ou non, aquí mencionadas son propiedade dos seus titulares.\n"
-"\n"
-"Dereitos de autor © 2000-2016 dos colaboradores da LibreOffice. Todos os dereitos reservados.\n"
-"\n"
-"Este produto creouno a %OOOVENDOR, baseado en OpenOffice.org, sobre a que ten dereitos de autor entre 2000 e 2011 Oracle e/ou os seus afiliados. %OOOVENDOR ofrécelle o seu recoñecemento a todos os membros da comunidade, véxase http://www.libreoffice.org/ para máis detalles."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/gl/svtools/source/dialogs.po b/source/gl/svtools/source/dialogs.po
index 7d529bce139..49482ffa010 100644
--- a/source/gl/svtools/source/dialogs.po
+++ b/source/gl/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-12-13 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1450045518.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Texto formatado [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/gl/svtools/source/misc.po b/source/gl/svtools/source/misc.po
index 97eca6628fe..2a71e1374cf 100644
--- a/source/gl/svtools/source/misc.po
+++ b/source/gl/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-16 23:11+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487286695.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Húngaro (alfabeto rúnico)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gl/svx/source/stbctrls.po b/source/gl/svx/source/stbctrls.po
index 4376c8c09b4..b8f6e5d1bdc 100644
--- a/source/gl/svx/source/stbctrls.po
+++ b/source/gl/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 21:57+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487455036.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Axustar a diapositiva á xanela actual."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/gl/svx/uiconfig/ui.po b/source/gl/svx/uiconfig/ui.po
index ae6820f121c..53ea5450a16 100644
--- a/source/gl/svx/uiconfig/ui.po
+++ b/source/gl/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487456706.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Continuar no modo seguro"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Saír"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Aplicar os cambios e reiniciar"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/gu/cui/uiconfig/ui.po b/source/gu/cui/uiconfig/ui.po
index 4bda191cabe..99b3e8ae8e0 100644
--- a/source/gu/cui/uiconfig/ui.po
+++ b/source/gu/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476798254.000000\n"
#: aboutconfigdialog.ui
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME એ વર્ડ પ્રોસેસીંગ, સ્પ્રેડશીટ, રજૂઆતો અને વધારે માટે પ્રાચીન, સરળ રીતે વાપરવું, ઑપન સોર્સ પ્રોડક્ટીવિટી સ્યૂટ છે."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2014 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/scalc/01.po b/source/gu/helpcontent2/source/text/scalc/01.po
index c83a9046acf..9a65d360d63 100644
--- a/source/gu/helpcontent2/source/text/scalc/01.po
+++ b/source/gu/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 02:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5718,7 +5718,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5726,7 +5726,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index 6d8b0b2113c..158bd94d12c 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/gu/sfx2/source/dialog.po b/source/gu/sfx2/source/dialog.po
index ca07a4c41f5..555ca49162e 100644
--- a/source/gu/sfx2/source/dialog.po
+++ b/source/gu/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 07:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-04 22:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
"Language: gu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457682467.000000\n"
+"X-POOTLE-MTIME: 1467672741.000000\n"
#: dialog.src
msgctxt ""
@@ -725,6 +725,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "વંશવેલાવાળું"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/gu/sfx2/uiconfig/ui.po b/source/gu/sfx2/uiconfig/ui.po
index 7ac58e16cc7..6221e4bf7ce 100644
--- a/source/gu/sfx2/uiconfig/ui.po
+++ b/source/gu/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-04 22:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467672897.000000\n"
#: alienwarndialog.ui
@@ -814,7 +814,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/gu/svtools/source/dialogs.po b/source/gu/svtools/source/dialogs.po
index bd17c2fad66..4ecc8ea30b8 100644
--- a/source/gu/svtools/source/dialogs.po
+++ b/source/gu/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-11-07 10:12+0000\n"
-"Last-Translator: sweta kothari <swetakothi@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:00+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
"Language: gu\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1415355157.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449853242.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "બંધારણવાળુ લખાણ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/gu/svtools/source/misc.po b/source/gu/svtools/source/misc.po
index e90176dae13..f61dc0a261f 100644
--- a/source/gu/svtools/source/misc.po
+++ b/source/gu/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 14:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-04 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
"Language: gu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462717217.000000\n"
+"X-POOTLE-MTIME: 1467673244.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gu/svx/source/stbctrls.po b/source/gu/svx/source/stbctrls.po
index 1cffc8ccf55..9007702d057 100644
--- a/source/gu/svx/source/stbctrls.po
+++ b/source/gu/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-04 23:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449853465.000000\n"
+"X-POOTLE-MTIME: 1467673490.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "હાલની વિન્ડોમાં સ્લાઇડને બ
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/gu/svx/uiconfig/ui.po b/source/gu/svx/uiconfig/ui.po
index 1b5e3399540..ed7a4d82884 100644
--- a/source/gu/svx/uiconfig/ui.po
+++ b/source/gu/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-04 23:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -5124,16 +5124,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/gug/cui/uiconfig/ui.po b/source/gug/cui/uiconfig/ui.po
index 54220601cc1..7709ca810cf 100644
--- a/source/gug/cui/uiconfig/ui.po
+++ b/source/gug/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-15 19:46+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487187964.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "© 2000–2016 de los colaboradores de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/gug/sfx2/source/dialog.po b/source/gug/sfx2/source/dialog.po
index 1a013b7062b..45d7e852092 100644
--- a/source/gug/sfx2/source/dialog.po
+++ b/source/gug/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-03 08:38+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483432730.000000\n"
#: dialog.src
@@ -714,6 +714,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Jerárquico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/gug/sfx2/uiconfig/ui.po b/source/gug/sfx2/uiconfig/ui.po
index a90b4d3d675..83516d16801 100644
--- a/source/gug/sfx2/uiconfig/ui.po
+++ b/source/gug/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 20:47+0000\n"
"Last-Translator: abelardoayala <abe_aya@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483390062.000000\n"
#: alienwarndialog.ui
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/gug/svtools/source/dialogs.po b/source/gug/svtools/source/dialogs.po
index 34bbd1efe13..81abd20afcd 100644
--- a/source/gug/svtools/source/dialogs.po
+++ b/source/gug/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-10 12:54+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1481374466.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Texto formateado [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/gug/svtools/source/misc.po b/source/gug/svtools/source/misc.po
index 1c9efb29151..eff052481f1 100644
--- a/source/gug/svtools/source/misc.po
+++ b/source/gug/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-19 20:12+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 22:42+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468959121.000000\n"
+"X-POOTLE-MTIME: 1480718523.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gug/svx/source/stbctrls.po b/source/gug/svx/source/stbctrls.po
index f1f57de9e30..142e7a17050 100644
--- a/source/gug/svx/source/stbctrls.po
+++ b/source/gug/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 16:40+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 22:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449852055.000000\n"
+"X-POOTLE-MTIME: 1480719236.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/gug/svx/uiconfig/ui.po b/source/gug/svx/uiconfig/ui.po
index 369d3f98fd7..9df7b2ac8af 100644
--- a/source/gug/svx/uiconfig/ui.po
+++ b/source/gug/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 20:53+0000\n"
"Last-Translator: abelardoayala <abe_aya@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483390439.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5061,16 +5061,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/he/cui/uiconfig/ui.po b/source/he/cui/uiconfig/ui.po
index a34f92568b7..5294cbef2cb 100644
--- a/source/he/cui/uiconfig/ui.po
+++ b/source/he/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-19 09:21+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487496099.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "כל הזכויות שמורות © 2000–2016 לתורמי LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/scalc/01.po b/source/he/helpcontent2/source/text/scalc/01.po
index ff34e34cca0..61686a8b571 100644
--- a/source/he/helpcontent2/source/text/scalc/01.po
+++ b/source/he/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 02:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5701,7 +5701,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5709,7 +5709,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index b5ea1f6b1b6..ba4d36d2393 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/he/sfx2/source/dialog.po b/source/he/sfx2/source/dialog.po
index eaef0b0c333..4b5d3a88e50 100644
--- a/source/he/sfx2/source/dialog.po
+++ b/source/he/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-26 13:28+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488115715.000000\n"
#: dialog.src
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "מדורג (היררכיה)‏"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/he/sfx2/uiconfig/ui.po b/source/he/sfx2/uiconfig/ui.po
index cb1b1a8d4d4..ca6d190f525 100644
--- a/source/he/sfx2/uiconfig/ui.po
+++ b/source/he/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 11:33+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487417618.000000\n"
#: alienwarndialog.ui
@@ -790,7 +790,6 @@ msgid "_Show License"
msgstr "ה_צגת הרישיון"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -803,19 +802,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME זמין לטובת הקהילה תחת תנאי הרישיון הציבורי של Mozilla, גרסה 2.0. ניתן למצוא עותק של הרישיון (MPL) בכתובת http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"רישוי נוסף לקוד שפותח על־ידי צד שלישי ותנאי רישוי החלים על חלקים מהתכנה מוגדרים בקובץ LICENSE.html; ניתן לבחור ב„הצגת הרישיון“ כדי לצפות בפירוט המלא באנגלית.\n"
-"\n"
-"כל סימני המסחר שצוינו בחבילה זו הם קניין של בעליהם בהתאמה.\n"
-"\n"
-"זכויות היוצרים שייכות לתורמי LibreOffice ‏© 2000, 2014. כל הזכויות שמורות.\n"
-"\n"
-"מוצר זה פותח על־ידי %OOOVENDOR, בהתבסס על OpenOffice.org, שזכויות היוצרים עליו שמורות ל־2000, 2011 Oracleו/או שותפותיה. %OOOVENDOR מוקירה את כל חברי קהילתה, ניתן לבקר בכתובת http://www.libreoffice.org/‎ לפרטים נוספים."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/he/svtools/source/dialogs.po b/source/he/svtools/source/dialogs.po
index 480e7ac04ad..03b66758683 100644
--- a/source/he/svtools/source/dialogs.po
+++ b/source/he/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 15:55+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-01 22:51+0000\n"
+"Last-Translator: ttv20 <ttv200@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385481304.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462143078.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "טקסט מעוצב [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/he/svtools/source/misc.po b/source/he/svtools/source/misc.po
index 920c6ad7918..e9ee32268da 100644
--- a/source/he/svtools/source/misc.po
+++ b/source/he/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 09:51+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485683495.000000\n"
#: imagemgr.src
@@ -3889,6 +3889,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/he/svx/source/stbctrls.po b/source/he/svx/source/stbctrls.po
index 73eda410451..62143a9f971 100644
--- a/source/he/svx/source/stbctrls.po
+++ b/source/he/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 22:51+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 00:17+0000\n"
+"Last-Translator: ttv20 <ttv200@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462143094.000000\n"
+"X-POOTLE-MTIME: 1480724267.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/he/svx/uiconfig/ui.po b/source/he/svx/uiconfig/ui.po
index d26a00038f0..4ffb7fad2ab 100644
--- a/source/he/svx/uiconfig/ui.po
+++ b/source/he/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 11:33+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487417638.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5104,16 +5104,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/hi/cui/uiconfig/ui.po b/source/hi/cui/uiconfig/ui.po
index 83088ec6db6..13bfc30f11c 100644
--- a/source/hi/cui/uiconfig/ui.po
+++ b/source/hi/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 15:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: hi\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476798288.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480691199.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/hi/helpcontent2/source/text/scalc/01.po b/source/hi/helpcontent2/source/text/scalc/01.po
index 5a513873143..150b76fa416 100644
--- a/source/hi/helpcontent2/source/text/scalc/01.po
+++ b/source/hi/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5681,22 +5681,20 @@ msgid "Functions"
msgstr "फंक्शन्स"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index 9e9239e43da..dc3755a986c 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 05:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/hi/sfx2/source/dialog.po b/source/hi/sfx2/source/dialog.po
index 6814da84c1c..4fe6e852705 100644
--- a/source/hi/sfx2/source/dialog.po
+++ b/source/hi/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 08:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 23:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457683238.000000\n"
+"X-POOTLE-MTIME: 1480721983.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "पदक्रमीय"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/hi/sfx2/uiconfig/ui.po b/source/hi/sfx2/uiconfig/ui.po
index 133035ea714..42c718f6f1e 100644
--- a/source/hi/sfx2/uiconfig/ui.po
+++ b/source/hi/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:10+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 23:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: hi\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467673810.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480722204.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/hi/svtools/source/dialogs.po b/source/hi/svtools/source/dialogs.po
index 8a7cdd4ee69..b69ed3d9064 100644
--- a/source/hi/svtools/source/dialogs.po
+++ b/source/hi/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 15:58+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 16:57+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385481523.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449853059.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "संरूपित पाठ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/hi/svtools/source/misc.po b/source/hi/svtools/source/misc.po
index ec383f8bc5d..fed82e847ee 100644
--- a/source/hi/svtools/source/misc.po
+++ b/source/hi/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 14:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 23:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462717857.000000\n"
+"X-POOTLE-MTIME: 1480722782.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3894,6 +3894,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hi/svx/source/stbctrls.po b/source/hi/svx/source/stbctrls.po
index 69b6e797427..d4a31fd05e0 100644
--- a/source/hi/svx/source/stbctrls.po
+++ b/source/hi/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 00:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449853258.000000\n"
+"X-POOTLE-MTIME: 1480723965.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/hi/svx/uiconfig/ui.po b/source/hi/svx/uiconfig/ui.po
index 8b4e1855c79..487ede2b2dc 100644
--- a/source/hi/svx/uiconfig/ui.po
+++ b/source/hi/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-03 00:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5084,16 +5084,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/hr/chart2/source/controller/dialogs.po b/source/hr/chart2/source/controller/dialogs.po
index 148a0d2c15c..ee512958f1a 100644
--- a/source/hr/chart2/source/controller/dialogs.po
+++ b/source/hr/chart2/source/controller/dialogs.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 22:58+0000\n"
+"PO-Revision-Date: 2017-04-05 21:13+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462143505.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426830.000000\n"
#: Strings.src
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"STR_ACTION_EDIT_CHARTTYPE\n"
"string.text"
msgid "Edit chart type"
-msgstr "Uredi tip grafa"
+msgstr "Uredi tip grafikona"
#: Strings.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"STR_ACTION_EDIT_CHART_DATA\n"
"string.text"
msgid "Edit chart data"
-msgstr "Uredi podatke grafa"
+msgstr "Uredi podatke grafikona"
#: Strings.src
msgctxt ""
diff --git a/source/hr/cui/uiconfig/ui.po b/source/hr/cui/uiconfig/ui.po
index 98a160393b0..d8093261c38 100644
--- a/source/hr/cui/uiconfig/ui.po
+++ b/source/hr/cui/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-25 18:51+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-14 19:01+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490467908.000000\n"
+"X-POOTLE-MTIME: 1492196500.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Autorska prava © 2000–2016 LibreOffice suradnici."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Autorska prava © 2000 – 2017 Doprinositelji razvoju LibreOfficea."
#: aboutdialog.ui
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment"
-msgstr "Uredi komentar"
+msgstr "Uređivanje komentara"
#: comment.ui
msgctxt ""
@@ -4064,7 +4064,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Database Link"
-msgstr "Uredi poveznicu baze podataka"
+msgstr "Uređivanje poveznice base podataka"
#: dbregisterpage.ui
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Custom Dictionary"
-msgstr "Uredi prilagođeni rječnik"
+msgstr "Uređivanje prilagođenoga rječnika"
#: editdictionarydialog.ui
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Modules"
-msgstr "Uredi module"
+msgstr "Uređivanje modula"
#: editmodulesdialog.ui
msgctxt ""
@@ -6044,7 +6044,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Custom Dictionary"
-msgstr "Uredi prilagođeni rječnik"
+msgstr "Uređivanje prilagođenoga rječnika"
#: hangulhanjaeditdictdialog.ui
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Edit Comment"
-msgstr "Uredi komentar"
+msgstr "Uređivanje komentara"
#: numberingformatpage.ui
msgctxt ""
diff --git a/source/hr/dbaccess/source/ui/browser.po b/source/hr/dbaccess/source/ui/browser.po
index 5ef8a1091f4..87f548128ba 100644
--- a/source/hr/dbaccess/source/ui/browser.po
+++ b/source/hr/dbaccess/source/ui/browser.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-16 18:54+0000\n"
+"PO-Revision-Date: 2017-04-05 20:52+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468695254.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491425558.000000\n"
#: sbabrw.src
msgctxt ""
@@ -79,7 +79,7 @@ msgctxt ""
"ID_TREE_EDIT_DATABASE\n"
"menuitem.text"
msgid "Edit ~Database File..."
-msgstr "Uredi ~datoteku baze podataka..."
+msgstr "Uređivanje ~datoteke baze podataka..."
#: sbabrw.src
msgctxt ""
diff --git a/source/hr/dbaccess/source/ui/dlg.po b/source/hr/dbaccess/source/ui/dlg.po
index 38b08bfe1a7..e219ff0687f 100644
--- a/source/hr/dbaccess/source/ui/dlg.po
+++ b/source/hr/dbaccess/source/ui/dlg.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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-16 18:59+0000\n"
+"PO-Revision-Date: 2017-04-05 21:20+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468695584.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491427216.000000\n"
#: AutoControls.src
msgctxt ""
@@ -817,7 +817,7 @@ msgctxt ""
"STR_EXPLAN_STRINGCONVERSION_ERROR\n"
"string.text"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
-msgstr "Česti razlog ove greške je neprikladan sustav znakova s obzirom na jezik baze podataka. Provjerite postavke odabirom Uredi - Baza podataka - Svojstva."
+msgstr "Čest je razlog pojavljivanja ove greške neprikladan sustav znakova s obzirom na postavljeni jezik base podataka. Provjerite postavke kroz izbornik Uredi → Base podataka → Svojstva."
#: sqlmessage.src
msgctxt ""
diff --git a/source/hr/dbaccess/source/ui/querydesign.po b/source/hr/dbaccess/source/ui/querydesign.po
index cb26c4f3780..2beb2643c2d 100644
--- a/source/hr/dbaccess/source/ui/querydesign.po
+++ b/source/hr/dbaccess/source/ui/querydesign.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-22 21:01+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 21:27+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485118909.000000\n"
+"X-POOTLE-MTIME: 1491427662.000000\n"
#: query.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"ID_QUERY_EDIT_JOINCONNECTION\n"
"menuitem.text"
msgid "Edit..."
-msgstr "Uređivanje..."
+msgstr "Uredi..."
#: query.src
msgctxt ""
@@ -163,7 +163,7 @@ msgctxt ""
"STR_QUERY_UNDO_MODIFY_CELL\n"
"string.text"
msgid "Edit Column Description"
-msgstr "Uredi opis stupca"
+msgstr "Uređivanje opisa stupca"
#: query.src
msgctxt ""
diff --git a/source/hr/framework/source/classes.po b/source/hr/framework/source/classes.po
index 8296704978a..13ca14592b7 100644
--- a/source/hr/framework/source/classes.po
+++ b/source/hr/framework/source/classes.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-23 14:28+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 20:54+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485181738.000000\n"
+"X-POOTLE-MTIME: 1491425645.000000\n"
#: resource.src
msgctxt ""
@@ -72,7 +72,7 @@ msgctxt ""
"MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR\n"
"menuitem.text"
msgid "~Customize Toolbar..."
-msgstr "~Uredi traku s alatima..."
+msgstr "~Uređivanje trake s alatima..."
#: resource.src
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index 40669f441b3..425ee4f848c 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5681,22 +5681,20 @@ msgid "Functions"
msgstr "Funkcije"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index 54c49b52b53..b1068043fc3 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 06:12+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
index cb6c77224e0..59b9b4d58fe 100644
--- a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-06-21 10:56+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-14 19:03+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466506590.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492196619.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"OOO_CONTROL_322\n"
"LngText.text"
msgid "Some files that need to be updated are currently in use."
-msgstr ""
+msgstr "U upotrebi su neki od dokumenata koji bi trebali biti ažurirani."
#: Control.ulf
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&MSSansBold8}Files in Use"
-msgstr ""
+msgstr "{&MSSansBold8}Datoteke u upotrebi"
#: Control.ulf
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"OOO_CONTROL_325\n"
"LngText.text"
msgid "Cancel"
-msgstr ""
+msgstr "Odustani"
#: Control.ulf
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"OOO_CONTROL_326\n"
"LngText.text"
msgid "OK"
-msgstr ""
+msgstr "U redu"
#: CustomAc.ulf
msgctxt ""
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index 13f31934a61..8b5d11f5458 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-25 22:13+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-14 19:04+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490480030.000000\n"
+"X-POOTLE-MTIME: 1492196645.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3650,7 +3650,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Uredi komentar"
+msgstr "Uređivanje komentara"
#: CalcCommands.xcu
msgctxt ""
@@ -6413,7 +6413,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Data"
-msgstr "Uredi podatake"
+msgstr "Uredi podatke"
#: DbuCommands.xcu
msgctxt ""
@@ -10049,7 +10049,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Points"
-msgstr "Uredi točke"
+msgstr "Uređivanje točaka"
#: DrawWindowState.xcu
msgctxt ""
@@ -12830,7 +12830,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bars"
-msgstr ""
+msgstr "Prugice"
#: Effects.xcu
msgctxt ""
@@ -14207,7 +14207,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Block Arc"
-msgstr "Element luka"
+msgstr "Ispunjen luk"
#: GenericCommands.xcu
msgctxt ""
@@ -22426,7 +22426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit with External Tool"
-msgstr "Uredi s vanjskim alatom"
+msgstr "Uredi vanjskim alatom"
#: GenericCommands.xcu
msgctxt ""
@@ -26152,7 +26152,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply and Edit ~Changes"
-msgstr "Primijeni i uredi pro~mjene"
+msgstr "Primjena i uređivanje ~promjena"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/hr/sc/source/ui/miscdlgs.po b/source/hr/sc/source/ui/miscdlgs.po
index 0e18b60c1ea..2f78e5186fd 100644
--- a/source/hr/sc/source/ui/miscdlgs.po
+++ b/source/hr/sc/source/ui/miscdlgs.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-01-08 19:45+0000\n"
-"Last-Translator: Mihovil <libreoffice@miho.im>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-05 20:58+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1420746357.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491425922.000000\n"
#: acredlin.src
msgctxt ""
@@ -151,7 +151,7 @@ msgctxt ""
"SC_CHANGES_COMMENT\n"
"menuitem.text"
msgid "Edit Comment..."
-msgstr "Uredi komentar..."
+msgstr "Uređivanje komentara..."
#: acredlin.src
msgctxt ""
diff --git a/source/hr/sc/source/ui/src.po b/source/hr/sc/source/ui/src.po
index e68ed47830a..aef5b2059af 100644
--- a/source/hr/sc/source/ui/src.po
+++ b/source/hr/sc/source/ui/src.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: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-03-13 18:19+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 20:58+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489429154.000000\n"
+"X-POOTLE-MTIME: 1491425934.000000\n"
#: filter.src
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"STR_UNDO_EDITSCENARIO\n"
"string.text"
msgid "Edit scenario"
-msgstr "Uredi scenario"
+msgstr "Uredi scenarij"
#: globstr.src
msgctxt ""
diff --git a/source/hr/scp2/source/draw.po b/source/hr/scp2/source/draw.po
index c88e7c01464..d684c3ad0c3 100644
--- a/source/hr/scp2/source/draw.po
+++ b/source/hr/scp2/source/draw.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-03-16 21:12+0000\n"
-"Last-Translator: Mihovil <mihovil@miho.im>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-04-05 21:01+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1426540367.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426082.000000\n"
#: folderitem_draw.ulf
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_DRAW\n"
"LngText.text"
msgid "Create and edit drawings, flow charts, and logos by using %PRODUCTNAME Draw."
-msgstr "Kreiraj i uredi ctrež, garfikon, i logotipe koristeći %PRODUCTNAME Draw."
+msgstr "Kreiraj i uredi crtež, grafikon, i logotipe koristeći %PRODUCTNAME Draw."
#: module_draw.ulf
msgctxt ""
diff --git a/source/hr/scp2/source/math.po b/source/hr/scp2/source/math.po
index d3648b86ef2..2743987543b 100644
--- a/source/hr/scp2/source/math.po
+++ b/source/hr/scp2/source/math.po
@@ -2,19 +2,19 @@
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: 2013-03-04 21:40+0000\n"
-"Last-Translator: Mihovil <mihovil.stanic@gmail.com>\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-22 23:41+0200\n"
+"PO-Revision-Date: 2017-04-05 21:01+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1362433227.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426101.000000\n"
#: folderitem_math.ulf
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_FI_TOOLTIP_MATH\n"
"LngText.text"
msgid "Create and edit scientific formulas and equations by using Math."
-msgstr "Stvorite i uredite znanstveve formule i jednadžbe."
+msgstr "Stvorite i uredite znanstvene formule i jednadžbe."
#: module_math.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_MATH\n"
"LngText.text"
msgid "Create and edit scientific formulas and equations by using %PRODUCTNAME Math."
-msgstr "Stvorite i uredite znanstveve formule i jednadžbe koristeći %PRODUCTNAME Math."
+msgstr "Stvorite i uredite znanstvene formule i jednadžbe koristeći %PRODUCTNAME Math."
#: module_math.ulf
msgctxt ""
diff --git a/source/hr/sd/source/ui/app.po b/source/hr/sd/source/ui/app.po
index 70b692608be..3b72b2ec38c 100644
--- a/source/hr/sd/source/ui/app.po
+++ b/source/hr/sd/source/ui/app.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-10 19:15+0000\n"
+"PO-Revision-Date: 2017-04-05 21:02+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489173309.000000\n"
+"X-POOTLE-MTIME: 1491426145.000000\n"
#: popup.src
msgctxt ""
@@ -812,7 +812,7 @@ msgctxt ""
"STR_POPUP_EDIT_SNAPLINE\n"
"string.text"
msgid "Edit Snap Line..."
-msgstr "Uredi crtu poravnanja..."
+msgstr "Uređivanje crte poravnanja..."
#: strings.src
msgctxt ""
@@ -820,7 +820,7 @@ msgctxt ""
"STR_POPUP_EDIT_SNAPPOINT\n"
"string.text"
msgid "Edit Snap Point..."
-msgstr "Uredi točku poravnanja..."
+msgstr "Uređivanje točke poravnanja..."
#: strings.src
msgctxt ""
diff --git a/source/hr/sfx2/source/dialog.po b/source/hr/sfx2/source/dialog.po
index 64139b79a6a..a56e0b5d947 100644
--- a/source/hr/sfx2/source/dialog.po
+++ b/source/hr/sfx2/source/dialog.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 07:48+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 00:50+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457682510.000000\n"
+"X-POOTLE-MTIME: 1480726236.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hijerarhijski"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/hr/sfx2/uiconfig/ui.po b/source/hr/sfx2/uiconfig/ui.po
index 3626bf180ee..22c650c9d4c 100644
--- a/source/hr/sfx2/uiconfig/ui.po
+++ b/source/hr/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-21 19:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-01 20:12+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490126080.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491077579.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Subject:"
-msgstr "_Subjekt:"
+msgstr "_Predmet:"
#: descriptioninfopage.ui
msgctxt ""
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME je dostupan prema uvjetima Mozilla Public License inačice 2.0. Primjerak MPL licencije se može pronaći na http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Dodatne autorske obavjesti i uvjeti licencije za kod trećih strana koji se odnosi na dio programa se nalaze u LICENSE.html datoteci; odaberite Prikaži licencu kako biste vidjeli točne detalje na engleskom jeziku.\n"
-"\n"
-"Svi zaštitni znaci i registrirani zaštitni znaci koji se ovdje spominju su vlasništvo njihovih odgovarajućih vlasnika.\n"
-"\n"
-"Autorsko pravo © 2000–2016 LibreOffice suradnici. Sva prava pridržana.\n"
-"\n"
-"Ovaj proizvod je stvoren od %OOOVENDOR, baziran na OpenOffice.org, koji je autorsko pravo 2000, 2011 Oracle i/ili njihovi suradnici. %OOOVENDOR priznaje sve članove zajednice, vidite http://www.libreoffice.org/ za više detalja."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/hr/starmath/uiconfig/smath/ui.po b/source/hr/starmath/uiconfig/smath/ui.po
index 408308643fa..b18cf40d149 100644
--- a/source/hr/starmath/uiconfig/smath/ui.po
+++ b/source/hr/starmath/uiconfig/smath/ui.po
@@ -4,17 +4,17 @@ 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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-19 17:29+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 21:30+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453224590.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491427818.000000\n"
#: alignmentdialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "Ur_eđivanje..."
+msgstr "_Uredi..."
#: catalogdialog.ui
msgctxt ""
diff --git a/source/hr/svtools/source/dialogs.po b/source/hr/svtools/source/dialogs.po
index 84b29fa41a8..81a1aeb940a 100644
--- a/source/hr/svtools/source/dialogs.po
+++ b/source/hr/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-23 14:37+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1469284662.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Oblikovani tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/hr/svtools/source/misc.po b/source/hr/svtools/source/misc.po
index a0d7e069405..083a1f82d58 100644
--- a/source/hr/svtools/source/misc.po
+++ b/source/hr/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-25 18:38+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490467083.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Mađarski (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hr/svx/source/form.po b/source/hr/svx/source/form.po
index b5f8bc9f014..b1f934937b9 100644
--- a/source/hr/svx/source/form.po
+++ b/source/hr/svx/source/form.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-12 20:17+0000\n"
+"PO-Revision-Date: 2017-04-05 21:03+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489349868.000000\n"
+"X-POOTLE-MTIME: 1491426198.000000\n"
#: datanavi.src
msgctxt ""
@@ -355,7 +355,7 @@ msgctxt ""
"RID_STR_DATANAV_EDIT_SUBMISSION\n"
"string.text"
msgid "Edit Submission"
-msgstr "Uredi prijavak"
+msgstr "Uredi podnesak"
#: datanavi.src
msgctxt ""
diff --git a/source/hr/svx/source/stbctrls.po b/source/hr/svx/source/stbctrls.po
index 6fef4f31955..4437b1fd56c 100644
--- a/source/hr/svx/source/stbctrls.po
+++ b/source/hr/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-12 20:18+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489349924.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Prilagodi slajd trenutnom prozoru."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/hr/svx/uiconfig/ui.po b/source/hr/svx/uiconfig/ui.po
index 881e9975701..8696cbc3fe7 100644
--- a/source/hr/svx/uiconfig/ui.po
+++ b/source/hr/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-03-19 11:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-05 21:05+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489922980.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491426316.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Instance"
-msgstr "Uredi instancu"
+msgstr "Uredi instanciju"
#: addinstancedialog.ui
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit Terms..."
-msgstr "_Uredi Uvijete..."
+msgstr "_Uređivanje uvjeta..."
#: chineseconversiondialog.ui
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Dictionary"
-msgstr "Uredi rječnik"
+msgstr "Uređivanje rječnika"
#: chinesedictionary.ui
msgctxt ""
@@ -3449,7 +3449,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Points"
-msgstr "Uredi točke"
+msgstr "Uređivanje točaka"
#: floatingcontour.ui
msgctxt ""
@@ -3815,7 +3815,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Points"
-msgstr "Uredi točke"
+msgstr "Uređivanje točaka"
#: imapdialog.ui
msgctxt ""
@@ -5075,20 +5075,20 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Primjeni izmjene i ponovno pokreni"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/hr/sw/source/ui/app.po b/source/hr/sw/source/ui/app.po
index 166ffb73ea7..8251d3fa431 100644
--- a/source/hr/sw/source/ui/app.po
+++ b/source/hr/sw/source/ui/app.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-12 08:05+0000\n"
+"PO-Revision-Date: 2017-04-05 21:06+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489305918.000000\n"
+"X-POOTLE-MTIME: 1491426388.000000\n"
#: app.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"STR_JAVA_EDIT\n"
"string.text"
msgid "Edit Script"
-msgstr "Uredi skriptu"
+msgstr "Uređivanje skripte"
#: app.src
msgctxt ""
@@ -1060,7 +1060,7 @@ msgctxt ""
"STR_AUTHMRK_EDIT\n"
"string.text"
msgid "Edit Bibliography Entry"
-msgstr "Uredi bibliografski unos"
+msgstr "Uređivanje bibliografskog unosa"
#: app.src
msgctxt ""
@@ -1528,7 +1528,7 @@ msgctxt ""
"FN_PAGEBREAK_EDIT\n"
"menuitem.text"
msgid "Edit Page Break..."
-msgstr "Uredi prijelom stranice..."
+msgstr "Uređivanje prijeloma stranice..."
#: mn.src
msgctxt ""
diff --git a/source/hr/sw/source/ui/dbui.po b/source/hr/sw/source/ui/dbui.po
index dffcf1c2fae..6982b994c6e 100644
--- a/source/hr/sw/source/ui/dbui.po
+++ b/source/hr/sw/source/ui/dbui.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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-06-26 10:20+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 21:06+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1466936412.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426402.000000\n"
#: dbui.src
msgctxt ""
@@ -370,7 +370,7 @@ msgctxt ""
"ST_TITLE_EDIT\n"
"string.text"
msgid "Edit Address Block"
-msgstr "Uredi oznaku adrese"
+msgstr "Uređivanje oznake adrese"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/hr/sw/source/ui/index.po b/source/hr/sw/source/ui/index.po
index 3f12875eb53..d1298995d20 100644
--- a/source/hr/sw/source/ui/index.po
+++ b/source/hr/sw/source/ui/index.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-12 08:07+0000\n"
+"PO-Revision-Date: 2017-04-05 21:07+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489306059.000000\n"
+"X-POOTLE-MTIME: 1491426458.000000\n"
#: cnttab.src
msgctxt ""
@@ -315,7 +315,7 @@ msgctxt ""
"STR_IDXMRK_EDIT\n"
"string.text"
msgid "Edit Index Entry"
-msgstr "Uredi unos indeksa"
+msgstr "Uređivanje unosa indeksa"
#: idxmrk.src
msgctxt ""
diff --git a/source/hr/sw/source/ui/shells.po b/source/hr/sw/source/ui/shells.po
index 3655befde7e..320f3987d05 100644
--- a/source/hr/sw/source/ui/shells.po
+++ b/source/hr/sw/source/ui/shells.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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-01-03 14:39+0000\n"
-"Last-Translator: Mihovil <libreoffice@miho.im>\n"
+"PO-Revision-Date: 2017-04-05 21:07+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1420295964.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426466.000000\n"
#: shells.src
msgctxt ""
@@ -180,7 +180,7 @@ msgctxt ""
"STR_REDLINE_EDIT\n"
"string.text"
msgid "Edit Changes"
-msgstr "Uredi promjene"
+msgstr "Uređivanje izmjena"
#: shells.src
msgctxt ""
diff --git a/source/hr/sw/source/ui/utlui.po b/source/hr/sw/source/ui/utlui.po
index 0d2aaa3a182..144b04c69c9 100644
--- a/source/hr/sw/source/ui/utlui.po
+++ b/source/hr/sw/source/ui/utlui.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-12 09:38+0000\n"
+"PO-Revision-Date: 2017-03-30 16:22+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489311482.000000\n"
+"X-POOTLE-MTIME: 1490890948.000000\n"
#: poolfmt.src
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"STR_POOLCOLL_TOX_CNTNTH\n"
"string.text"
msgid "Contents Heading"
-msgstr "Naslov sadržaja"
+msgstr "Naslov tablice sadržaja"
#: poolfmt.src
msgctxt ""
diff --git a/source/hr/sw/source/uibase/misc.po b/source/hr/sw/source/uibase/misc.po
index dd593e04fae..9f08f5d74f4 100644
--- a/source/hr/sw/source/uibase/misc.po
+++ b/source/hr/sw/source/uibase/misc.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-01-03 14:51+0000\n"
-"Last-Translator: Mihovil <libreoffice@miho.im>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-05 21:07+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1420296672.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491426476.000000\n"
#: redlndlg.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"MN_EDIT_COMMENT\n"
"menuitem.text"
msgid "Edit Comment..."
-msgstr "Uredi komentar..."
+msgstr "Uređivanje komentara..."
#: redlndlg.src
msgctxt ""
diff --git a/source/hr/sw/uiconfig/swriter/ui.po b/source/hr/sw/uiconfig/swriter/ui.po
index 968368a9c2d..c623a9340aa 100644
--- a/source/hr/sw/uiconfig/swriter/ui.po
+++ b/source/hr/sw/uiconfig/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-12 09:48+0000\n"
+"PO-Revision-Date: 2017-04-05 21:37+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489312128.000000\n"
+"X-POOTLE-MTIME: 1491428262.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Insert Bibliography Entry"
-msgstr "Umetni bibliografski unos"
+msgstr "Umetanje bibliografskoga unosa"
#: bibliographyentry.ui
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Concordance File"
-msgstr "Uredi datoteku podudarnosti"
+msgstr "Uređivanje datoteke konkordancije"
#: createautomarkdialog.ui
msgctxt ""
@@ -2714,7 +2714,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Space to text:"
-msgstr "_Razmaci u tekst:"
+msgstr "_Odmak od teksta:"
#: dropcapspage.ui
msgctxt ""
@@ -2849,7 +2849,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Sections"
-msgstr "Uredi odjeljke"
+msgstr "Uređivanje odjeljaka"
#: editsectiondialog.ui
msgctxt ""
@@ -4473,7 +4473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maximum footnote _height"
-msgstr "_Maksimalna veličina fusnote"
+msgstr "_Dopuštena visina prostora za fusnotu"
#: footnoteareapage.ui
msgctxt ""
@@ -4482,7 +4482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Space to text"
-msgstr "Razmaci u tekst"
+msgstr "Odmak od teksta"
#: footnoteareapage.ui
msgctxt ""
@@ -10278,7 +10278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style"
-msgstr "Uredi stil"
+msgstr "Uređivanje stila"
#: numparapage.ui
msgctxt ""
@@ -13310,7 +13310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Print text in blac_k"
-msgstr "Ispiši te_kst na crnome"
+msgstr "_Ispiši tekst samo crnom"
#: printoptionspage.ui
msgctxt ""
@@ -14255,7 +14255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "Ur_eđivanje..."
+msgstr "_Uredi..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14336,7 +14336,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "Ur_eđivanje..."
+msgstr "_Uredi..."
#: selectblockdialog.ui
msgctxt ""
@@ -14624,7 +14624,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr "Uredi konturu"
+msgstr "Uređivanje konture"
#: sidebarwrap.ui
msgctxt ""
@@ -16370,7 +16370,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Page Properties"
-msgstr "Uredi svojstava stranica"
+msgstr "Uređivanje svojstva stranice"
#: tocdialog.ui
msgctxt ""
@@ -16496,7 +16496,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "Ur_eđivanje..."
+msgstr "_Uredi..."
#: tocentriespage.ui
msgctxt ""
@@ -16865,7 +16865,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "Ur_eđivanje..."
+msgstr "_Uredi..."
#: tocindexpage.ui
msgctxt ""
@@ -17252,7 +17252,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Concordance file"
-msgstr "_Datoteka podudarnosti"
+msgstr "_Datoteka konkordancije"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 8200ec54938..6a19a51a363 100644
--- a/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -2,19 +2,19 @@
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: 2013-07-17 09:44+0000\n"
-"Last-Translator: Mihovil <mihovil.stanic@gmail.com>\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-22 23:39+0200\n"
+"PO-Revision-Date: 2017-04-05 21:36+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1374054262.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491428163.000000\n"
#: WikiExtension.xcu
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"Dlg_EditButton\n"
"value.text"
msgid "~Edit..."
-msgstr "Ur~eđivanje..."
+msgstr "~Uredi..."
#: WikiExtension.xcu
msgctxt ""
diff --git a/source/hu/cui/uiconfig/ui.po b/source/hu/cui/uiconfig/ui.po
index e1f6b667024..aae652d3d07 100644
--- a/source/hu/cui/uiconfig/ui.po
+++ b/source/hu/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-10 21:17+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484083022.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 a LibreOffice hozzájárulói."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/scalc/01.po b/source/hu/helpcontent2/source/text/scalc/01.po
index 7702eb76bc0..d6b5fff0301 100644
--- a/source/hu/helpcontent2/source/text/scalc/01.po
+++ b/source/hu/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 04:46+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483332363.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index 055f460ebe8..b26e09d56b3 100644
--- a/source/hu/helpcontent2/source/text/shared/optionen.po
+++ b/source/hu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-08-23 14:03+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/hu/sfx2/source/dialog.po b/source/hu/sfx2/source/dialog.po
index 9bdb92816e4..02e03aa2f0c 100644
--- a/source/hu/sfx2/source/dialog.po
+++ b/source/hu/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 20:44+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483908295.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchikus"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/hu/sfx2/uiconfig/ui.po b/source/hu/sfx2/uiconfig/ui.po
index 4349227c384..9dc5e6e212e 100644
--- a/source/hu/sfx2/uiconfig/ui.po
+++ b/source/hu/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 20:43+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483908220.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"A %PRODUCTNAME a Mozilla Public License 2.0-ás verziója szerint lett közreadva. Az MPL licenc egy példánya megtalálható a következő weboldalon: http://mozilla.org/MPL/2.0/\n"
-"\n"
-"A harmadik féltől származó kódok szerzői jogára vonatkozó megjegyzések és a szoftver egyes részeire vonatkozó licencfeltételek a LICENSE.html fájlban találhatóak. A Licenc megjelenítése gomb betölti az angol nyelvű licencdokumentumot.\n"
-"\n"
-"Minden ebben említett védjegy és bejegyzett védjegy a megfelelő tulajdonos tulajdona.\n"
-"\n"
-"Copyright © 2000 - 2016 a LibreOffice hozzájárulói. Minden jog fenntartva.\n"
-"\n"
-"A terméket a %OOOVENDOR készítette az OpenOffice.org alapján, amelynek szerzői joga az Oracle-t és/vagy leányvállalatait illeti, © 2000, 2011. A %OOOVENDOR köszöni minden közösségi tag hozzájárulását. További információ: http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/hu/svtools/source/dialogs.po b/source/hu/svtools/source/dialogs.po
index 81b3ddf53bf..30b17900081 100644
--- a/source/hu/svtools/source/dialogs.po
+++ b/source/hu/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-02-10 12:16+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1455106597.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formázott szöveg [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/hu/svtools/source/misc.po b/source/hu/svtools/source/misc.po
index 58ff53811e1..5f4068d870e 100644
--- a/source/hu/svtools/source/misc.po
+++ b/source/hu/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 10:31+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483957869.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Magyar (Székely-magyar rovás)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hu/svx/source/stbctrls.po b/source/hu/svx/source/stbctrls.po
index 97d76de08d0..c5fb91827be 100644
--- a/source/hu/svx/source/stbctrls.po
+++ b/source/hu/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-27 18:02+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482861733.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Dia aktuális ablakhoz igazítása."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/hu/svx/uiconfig/ui.po b/source/hu/svx/uiconfig/ui.po
index c48cae5cb63..5870e5810dd 100644
--- a/source/hu/svx/uiconfig/ui.po
+++ b/source/hu/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-30 00:44+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483058667.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Folytatás Tiszta lap módban"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Kilépés"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Változtatások végrehajtása és újraindítás"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/id/cui/uiconfig/ui.po b/source/id/cui/uiconfig/ui.po
index c078643457f..d8750e306ef 100644
--- a/source/id/cui/uiconfig/ui.po
+++ b/source/id/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-25 14:45+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482677122.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Hak Cipta © 2000 - 2016 para kontributor LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/scalc/01.po b/source/id/helpcontent2/source/text/scalc/01.po
index 60840f9fac2..48e4f787f98 100644
--- a/source/id/helpcontent2/source/text/scalc/01.po
+++ b/source/id/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo_help scalc 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 19:53+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: ID <id@li.org>\n"
@@ -5714,7 +5714,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5722,7 +5722,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index 51a33b9c7fe..3a271473e21 100644
--- a/source/id/helpcontent2/source/text/shared/optionen.po
+++ b/source/id/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-09-03 02:45+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/id/sfx2/source/dialog.po b/source/id/sfx2/source/dialog.po
index d7176914e29..0a41346df57 100644
--- a/source/id/sfx2/source/dialog.po
+++ b/source/id/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-27 06:47+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482821278.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hirarkikal"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/id/sfx2/uiconfig/ui.po b/source/id/sfx2/uiconfig/ui.po
index a9b5dcf7fd2..b35a465d76e 100644
--- a/source/id/sfx2/uiconfig/ui.po
+++ b/source/id/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-27 06:52+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482821551.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME tersedia mengikuti persyaratan Mozilla Public License, v. 2.0. Salinan MPL dapat diperoleh di http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Kode Pihak Ketiga Pemberitahuan hak cipta tambahan dan persyaratan lisensi yang berlaku untuk bagian dari Perangkat Lunak diatur dalam berkas LICENSE.html; pilih Tampilkan Lisensi untuk melihat rincian persis dalam bahasa Inggris.\n"
-"\n"
-"Semua merek dagang dan merek dagang terdaftar yang disebutkan di sini adalah milik masing-masing pemiliknya.\n"
-"\n"
-"Hak Cipta © 2000-2016 para kontributor LibreOffice. Semua hak dilindungi.\n"
-"\n"
-"Produk ini diciptakan oleh %OOOVENDOR, berdasarkan OpenOffice.org, Hak Cipta 2000, 2011 Oracle dan/atau afiliasinya. %OOOVENDOR mengakui semua anggota masyarakat, silakan lihat http://www.libreoffice.org/ untuk lebih jelasnya."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/id/svtools/source/dialogs.po b/source/id/svtools/source/dialogs.po
index b524a3a1bb3..416ccad8733 100644
--- a/source/id/svtools/source/dialogs.po
+++ b/source/id/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-16 18:43+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1463424228.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Teks berformat [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/id/svtools/source/misc.po b/source/id/svtools/source/misc.po
index 2cdbb6c7870..8faf6db03be 100644
--- a/source/id/svtools/source/misc.po
+++ b/source/id/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 11:25+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungaria (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/id/svx/source/stbctrls.po b/source/id/svx/source/stbctrls.po
index d0557b69346..cba121f72f9 100644
--- a/source/id/svx/source/stbctrls.po
+++ b/source/id/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-31 11:09+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483182554.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Paskan salindia ke jendela saat ini."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/id/svx/uiconfig/ui.po b/source/id/svx/uiconfig/ui.po
index db72863f887..9af8d49b3b6 100644
--- a/source/id/svx/uiconfig/ui.po
+++ b/source/id/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libio_ui svx uiconfig master\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-01 02:38+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483238300.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5077,20 +5077,20 @@ msgstr "_Lanjutkan dalam Mode Aman"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Keluar"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Ter_apkan Perubahan dan Start Ulang"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/is/cui/uiconfig/ui.po b/source/is/cui/uiconfig/ui.po
index a76100454f9..c3c7ff41c72 100644
--- a/source/is/cui/uiconfig/ui.po
+++ b/source/is/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 14:13+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483971195.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Höfundarréttur © 2000 - 2016, þátttakendur í LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/scalc/01.po b/source/is/helpcontent2/source/text/scalc/01.po
index 6135a1b7d4a..47d64ea65f2 100644
--- a/source/is/helpcontent2/source/text/scalc/01.po
+++ b/source/is/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 19:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5685,22 +5685,20 @@ msgid "Functions"
msgstr "Bæta við"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 0674f57816d..cd63ff3b2e6 100644
--- a/source/is/helpcontent2/source/text/shared/optionen.po
+++ b/source/is/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 07:07+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/is/sfx2/source/dialog.po b/source/is/sfx2/source/dialog.po
index 3e04d82a1ee..5a7421529c9 100644
--- a/source/is/sfx2/source/dialog.po
+++ b/source/is/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 02:14+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483928093.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Stigskipt"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/is/sfx2/uiconfig/ui.po b/source/is/sfx2/uiconfig/ui.po
index a96c6e03ed4..5ba034a8dc4 100644
--- a/source/is/sfx2/uiconfig/ui.po
+++ b/source/is/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 02:12+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483927950.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME er í boði undir skilmálum Mozilla Public License, útg. 2.0. notkunarleyfisins. Hægt er að skoða afrit af MPL leyfinu á síðunni http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Ýmis aukaleg ákvæði vegna höfundarréttar og notkunarskilmála á kóða af hálfu annarra aðila, sem átt geta við hluta af þessum hugbúnaði, má lesa um í skjalinu LICENSE.html, veldu 'Birta notkunarskilmála' til að sjá nánari útlistun á ensku.\n"
-"\n"
-"Öll vörumerki og skrásett vörumerki eru eign eigenda hvers þeirra um sig.\n"
-"\n"
-"Höfundarréttur © 2000, 2016, þátttakendur í LibreOffice og tengdir aðilar. Öll réttindi áskilin.\n"
-"\n"
-"Þessi hugbúnaður var gerður af %OOOVENDOR, byggður á OpenOffice.org, sem aftur er undir klausunni 'Höfundarréttur 2000, 2011 Oracle og/eða tengdir aðilar'. %OOOVENDOR þakkar öllum þátttakendum í verkefninu, endilega skoðaðu http://www.libreoffice.org/ til að fá nánari upplýsingar."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/is/svtools/source/dialogs.po b/source/is/svtools/source/dialogs.po
index 01c12ef925d..cdcc15c0d35 100644
--- a/source/is/svtools/source/dialogs.po
+++ b/source/is/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-09-23 21:39+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1443044349.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Sniðinn texti [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/is/svtools/source/misc.po b/source/is/svtools/source/misc.po
index f937e6c5332..b81f707b1a1 100644
--- a/source/is/svtools/source/misc.po
+++ b/source/is/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 15:02+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483974169.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungverska (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/is/svx/source/stbctrls.po b/source/is/svx/source/stbctrls.po
index 26f6db4b262..193126b210d 100644
--- a/source/is/svx/source/stbctrls.po
+++ b/source/is/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: stbctrls\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-09 01:54+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483926874.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Láta skyggnu passa í núverandi glugga."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/is/svx/uiconfig/ui.po b/source/is/svx/uiconfig/ui.po
index 6dceb5d6709..accbe2a5eaf 100644
--- a/source/is/svx/uiconfig/ui.po
+++ b/source/is/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-23 09:28+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490261284.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5072,20 +5072,20 @@ msgstr "Halda áfram í öryggisham"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Hætta"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Virkj_a breytingar og endurræsa"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/it/chart2/uiconfig/ui.po b/source/it/chart2/uiconfig/ui.po
index 305653fdd79..80252cdc0b2 100644
--- a/source/it/chart2/uiconfig/ui.po
+++ b/source/it/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-10 18:11+0000\n"
+"PO-Revision-Date: 2017-04-03 12:31+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481393515.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491222663.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_None"
-msgstr "_Nessuno"
+msgstr "_Nessuna"
#: dlg_InsertErrorBars.ui
msgctxt ""
diff --git a/source/it/cui/uiconfig/ui.po b/source/it/cui/uiconfig/ui.po
index 54c54e06810..fd865bb3b6f 100644
--- a/source/it/cui/uiconfig/ui.po
+++ b/source/it/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-23 19:34+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-03 12:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485200058.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491222985.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Contributori di LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr "Nessuno"
+msgstr "Senza"
#: areatabpage.ui
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_None"
-msgstr "_Nessuno"
+msgstr "_Nessuna"
#: distributionpage.ui
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/01.po b/source/it/helpcontent2/source/text/scalc/01.po
index e8fa7f04e82..322a40ac71b 100644
--- a/source/it/helpcontent2/source/text/scalc/01.po
+++ b/source/it/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 18:42+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485196979.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/02.po b/source/it/helpcontent2/source/text/scalc/02.po
index 83a8e060066..a335b023eed 100644
--- a/source/it/helpcontent2/source/text/scalc/02.po
+++ b/source/it/helpcontent2/source/text/scalc/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2017-01-16 20:38+0000\n"
+"PO-Revision-Date: 2017-04-03 15:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484599087.000000\n"
+"X-POOTLE-MTIME: 1491232988.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -738,7 +738,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
-msgstr "Per cambiare la formula predefinita visualizzata, fate clic con il pulsante destro del mouse sul campo Somma in fondo alla finestra, quindi scegliete la formula desiderata. Le formule disponibili sono: Valore medio, Numero2 (conteggio di valori), Numero (conteggio di numeri), Massimo, Minimo, Somma o Senza."
+msgstr "Per cambiare la formula predefinita visualizzata, fate clic col pulsante destro del mouse sul campo Somma in fondo alla finestra, quindi scegliete la formula desiderata. Le formule disponibili sono: Valore medio, Numero2 (conteggio di valori), Numero (conteggio di numeri), Massimo, Minimo, Somma o Senza."
#: 08080000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/guide.po b/source/it/helpcontent2/source/text/scalc/guide.po
index e1183f42381..fdc1cc243d7 100644
--- a/source/it/helpcontent2/source/text/scalc/guide.po
+++ b/source/it/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-23 18:46+0000\n"
+"PO-Revision-Date: 2017-04-03 15:23+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197180.000000\n"
+"X-POOTLE-MTIME: 1491233001.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -3320,7 +3320,7 @@ msgctxt ""
"par_id8444166\n"
"help.text"
msgid "Right-click a column in the preview to set the format or to hide the column."
-msgstr "Fate clic con il pulsante destro del mouse su una colonna nell'anteprima per impostare il formato o nascondere la colonna."
+msgstr "Fate clic col pulsante destro del mouse su una colonna nell'anteprima per impostare il formato o nascondere la colonna."
#: csv_files.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sdraw/guide.po b/source/it/helpcontent2/source/text/sdraw/guide.po
index 4e19f7e55b4..f0adc5e97ae 100644
--- a/source/it/helpcontent2/source/text/sdraw/guide.po
+++ b/source/it/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-05-23 12:10+0000\n"
+"PO-Revision-Date: 2017-04-03 15:24+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1464005402.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491233049.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -1705,7 +1705,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Right-click and choose <emph>Modify - Connect</emph>."
-msgstr "Fate clic con il pulsante destro del mouse e scegliete <emph>Collega</emph>."
+msgstr "Fate clic col pulsante destro del mouse e scegliete <emph>Modifica - Collega</emph>."
#: join_objects.xhp
msgctxt ""
@@ -1714,7 +1714,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
-msgstr "Per creare un oggetto chiuso, fate clic con il pulsante destro del mouse su una riga e scegliete <emph>Chiudi oggetto</emph>."
+msgstr "Per creare un oggetto chiuso, fate clic col pulsante destro del mouse su una riga e scegliete <emph>Chiudi oggetto</emph>."
#: join_objects.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index b4b9bd5626e..63e0e19405b 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-01-22 22:22+0000\n"
+"PO-Revision-Date: 2017-04-03 15:25+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485123774.000000\n"
+"X-POOTLE-MTIME: 1491233103.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -162,7 +162,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
-msgstr "<variable id=\"context\">Per attivare il menu di contesto di un oggetto, fate clic sull'oggetto con il pulsante <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>sinistro</defaultinline></switchinline> del mouse per selezionarlo; quindi, <switchinline select=\"sys\"><caseinline select=\"MAC\">tenendo premuto il tasto Ctrl o i tasti Comando e Opzione, fate nuovamente clic con il pulsante del mouse</caseinline><defaultinline>fate clic con il pulsante destro del mouse</defaultinline></switchinline>. Alcuni menu di contesto possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu di contesto per un grande numero di funzioni. </variable>"
+msgstr "<variable id=\"context\">Per attivare il menu di contesto di un oggetto, fate clic sull'oggetto col pulsante <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>sinistro</defaultinline></switchinline> del mouse per selezionarlo; quindi, <switchinline select=\"sys\"><caseinline select=\"MAC\">tenendo premuto il tasto Ctrl o i tasti Comando e Opzione, fate nuovamente clic col pulsante del mouse</caseinline><defaultinline>fate clic con il pulsante destro del mouse</defaultinline></switchinline>. Alcuni menu di contesto possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu di contesto per un grande numero di funzioni. </variable>"
#: 00000001.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index 0ecddaf850f..37cc099aba3 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-23 18:47+0000\n"
+"PO-Revision-Date: 2017-04-05 12:55+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197249.000000\n"
+"X-POOTLE-MTIME: 1491396923.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -12476,7 +12476,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "To delete a record in the current table, right-click the row header of the record, and then select <emph>Delete</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Deletes the selected record.</ahelp>"
-msgstr "Per eliminare un record nella tabella attiva, fate clic con il pulsante destro del mouse sull'intestazione di riga del record, quindi selezionate <emph>Cancella</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Elimina il record selezionato.</ahelp>"
+msgstr "Per eliminare un record nella tabella attiva, fate clic col pulsante destro del mouse sull'intestazione di riga del record, quindi selezionate <emph>Cancella</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Elimina il record selezionato.</ahelp>"
#: 02250000.xhp
msgctxt ""
@@ -14545,7 +14545,7 @@ msgctxt ""
"par_idN10CD6\n"
"help.text"
msgid "To undo the last change, right-click."
-msgstr "Per annullare l'ultima modifica, fate clic con il pulsante destro del mouse."
+msgstr "Per annullare l'ultima modifica, fate clic col pulsante destro del mouse."
#: 05020200.xhp
msgctxt ""
@@ -20258,7 +20258,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab. To modify the border of a table cell, select the cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab."
-msgstr "Per modificare il bordo di un'intera tabella, posizionate il cursore in una cella, fate clic con il pulsante destro del mouse, scegliete <emph>Tabella</emph> e fate clic sulla scheda <emph>Bordo</emph>. Per modificare il bordo di una cella, selezionatela, fate clic con il pulsante destro del mouse, scegliete <emph>Tabella</emph> e fate clic sulla scheda <emph>Bordo</emph>."
+msgstr "Per modificare il bordo di un'intera tabella, posizionate il cursore in una cella, fate clic col pulsante destro del mouse, scegliete <emph>Tabella</emph> e fate clic sulla scheda <emph>Bordo</emph>. Per modificare il bordo di una cella, selezionatela, fate clic col pulsante destro del mouse, scegliete <emph>Tabella</emph> e fate clic sulla scheda <emph>Bordo</emph>."
#: 05030500.xhp
msgctxt ""
@@ -28864,7 +28864,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
-msgstr "Per modificare i singoli oggetti di un gruppo, selezionatelo, fate clic con il pulsante destro del mouse, quindi scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Modifica gruppo</emph></caseinline><defaultinline><emph>Gruppo - Modifica gruppo</emph></defaultinline></switchinline>"
+msgstr "Per modificare i singoli oggetti di un gruppo, selezionatelo, fate clic col pulsante destro del mouse, quindi scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Modifica gruppo</emph></caseinline><defaultinline><emph>Gruppo - Modifica gruppo</emph></defaultinline></switchinline>"
#: 05290000.xhp
msgctxt ""
@@ -28891,7 +28891,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
-msgstr "Per uscire da un gruppo, fate clic con il pulsante destro del mouse e scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Esci</emph></caseinline><defaultinline><emph>Gruppo - Esci</emph></defaultinline></switchinline>"
+msgstr "Per uscire da un gruppo, fate clic col pulsante destro del mouse e scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Esci</emph></caseinline><defaultinline><emph>Gruppo - Esci</emph></defaultinline></switchinline>"
#: 05290000.xhp
msgctxt ""
@@ -30626,7 +30626,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "To access the commands for formatting the table, right-click a column header, or a row header."
-msgstr "Per accedere ai comandi di formattazione della tabella, fate clic con il pulsante destro del mouse sull'intestazione di una colonna o di una riga."
+msgstr "Per accedere ai comandi di formattazione della tabella, fate clic col pulsante destro del mouse sull'intestazione di una colonna o di una riga."
#: 05340400.xhp
msgctxt ""
@@ -34920,7 +34920,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, choose <emph>Tools - Automatic Spell Checking</emph>."
-msgstr "Per accedere a questo menu, fate clic con il pulsante destro del mouse su una parola scritta in modo errato nel documento. Per visualizzare le parole con errori ortografici presenti nel documento, scegliete <emph>Strumenti - Controllo ortografico automatico</emph>."
+msgstr "Per accedere a questo menu, fate clic col pulsante destro del mouse su una parola scritta in modo errato nel documento. Per visualizzare le parole con errori ortografici presenti nel documento, scegliete <emph>Strumenti - Controllo ortografico automatico</emph>."
#: 06040500.xhp
msgctxt ""
@@ -42445,7 +42445,7 @@ msgctxt ""
"par_id9313638\n"
"help.text"
msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
-msgstr "Apparirà la finestra di dialogo <link href=\"text/shared/01/online_update_dialog.xhp\">Controlla aggiornamenti</link> con informazioni sull'aggiornamento online di %PRODUCTNAME."
+msgstr "Apparirà la finestra di dialogo <link href=\"text/shared/01/online_update_dialog.xhp\">Controlla aggiornamenti</link> con informazioni sull'aggiornamento in linea di %PRODUCTNAME."
#: online_update.xhp
msgctxt ""
@@ -42461,7 +42461,7 @@ msgctxt ""
"par_id6479384\n"
"help.text"
msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
-msgstr "Se usate un server Proxy, verificate le impostazioni proxy in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet - Proxy."
+msgstr "Se usate un server proxy, verificatene le impostazioni in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet - Proxy."
#: online_update.xhp
msgctxt ""
@@ -42477,7 +42477,7 @@ msgctxt ""
"par_id3722342\n"
"help.text"
msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
-msgstr "Se è disponibile una nuova versione e %PRODUCTNAME non è impostato per il download automatico, potete allora scegliere una delle azioni seguenti:"
+msgstr "Se è disponibile una nuova versione e %PRODUCTNAME non è impostato per lo scaricamento automatico, potete allora scegliere una delle azioni seguenti:"
#: online_update.xhp
msgctxt ""
@@ -42501,7 +42501,7 @@ msgctxt ""
"par_id9168980\n"
"help.text"
msgid "Abort this check for updates for now."
-msgstr "Annullate, per adesso, il controllo aggiornamenti."
+msgstr "Annulla, per adesso, il controllo aggiornamenti."
#: online_update.xhp
msgctxt ""
@@ -42509,7 +42509,7 @@ msgctxt ""
"par_id9766533\n"
"help.text"
msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
-msgstr "Se %PRODUCTNAME è configurato per scaricare automaticamente i file, il download partirà immediatamente. Il download continua anche se riducete a icona la finestra."
+msgstr "Se %PRODUCTNAME è configurato per scaricare automaticamente i file, lo scaricamento partirà immediatamente. Lo scaricamento continua anche se riducete a icona la finestra."
#: online_update.xhp
msgctxt ""
@@ -42533,7 +42533,7 @@ msgctxt ""
"par_id9219641\n"
"help.text"
msgid "You need Administrator rights to update %PRODUCTNAME."
-msgstr "Per aggiornare %PRODUCTNAME, sono necessari i diritti di amministratore."
+msgstr "Per aggiornare %PRODUCTNAME sono necessari i diritti di amministratore."
#: online_update_dialog.xhp
msgctxt ""
@@ -42565,7 +42565,7 @@ msgctxt ""
"par_id4799340\n"
"help.text"
msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
-msgstr "Una volta iniziato il download, nella finestra di dialogo saranno visualizzati una barra di avanzamento e tre pulsanti. Potete mettere in pausa e riprendere il download facendo clic sui pulsanti Pausa e Riprendi. Fate clic su Annulla per interrompere il download ed eliminare la parte già scaricata del file."
+msgstr "Una volta avviato lo scaricamento, nella finestra di dialogo saranno visualizzati una barra di avanzamento e tre pulsanti. Potete mettere in pausa e riprendere lo scaricamento facendo clic sui pulsanti Pausa e Riprendi. Fate clic su Annulla per interrompere lo scaricamento ed eliminare la parte già scaricata del file."
#: online_update_dialog.xhp
msgctxt ""
@@ -42581,7 +42581,7 @@ msgctxt ""
"par_id8266853\n"
"help.text"
msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
-msgstr "Una volta terminato il download, potete fare clic su Installa per avviare l'installazione dell'aggiornamento. Vi apparirà una finestra di dialogo in cui potete scegliere di chiudere %PRODUCTNAME."
+msgstr "Una volta completato lo scaricamento, potete fare clic su Installa per avviare l'installazione dell'aggiornamento. Vi apparirà una finestra di dialogo in cui potete scegliere di chiudere %PRODUCTNAME."
#: online_update_dialog.xhp
msgctxt ""
@@ -42589,7 +42589,7 @@ msgctxt ""
"par_id2871181\n"
"help.text"
msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
-msgstr "In alcuni sistemi operativi potrebbe essere necessario spostarsi nella cartella di download, decomprimere i file scaricati e avviare manualmente lo script di installazione."
+msgstr "In alcuni sistemi operativi potrebbe essere necessario spostarsi nella cartella di scaricamento, decomprimere i file scaricati e avviare manualmente lo script d'installazione."
#: online_update_dialog.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/02.po b/source/it/helpcontent2/source/text/shared/02.po
index 6ac46197c95..7ea2324ed70 100644
--- a/source/it/helpcontent2/source/text/shared/02.po
+++ b/source/it/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-23 18:53+0000\n"
+"PO-Revision-Date: 2017-04-03 15:27+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197626.000000\n"
+"X-POOTLE-MTIME: 1491233220.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -768,7 +768,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Right-click the control and choose <emph>Control</emph>. A dialog opens where you can define the properties of the control."
-msgstr "Fate clic con il pulsante destro del mouse sul campo di controllo e scegliete <emph>Campo di controllo</emph>. Si apre una finestra di dialogo in cui potete definite le proprietà del campo di controllo."
+msgstr "Fate clic col pulsante destro del mouse sul campo di controllo e scegliete <emph>Campo di controllo</emph>. Si apre una finestra di dialogo in cui potete definite le proprietà del campo di controllo."
#: 01170000.xhp
msgctxt ""
@@ -10047,7 +10047,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "After you have finished editing your form, right-click \"Forms\" in the <emph>Form Navigator</emph> and deselect <emph>Open in Design Mode</emph>. Save your form when you are finished."
-msgstr "Dopo avere apportato tutte le modifiche desiderate al formulario, fate clic con il pulsante destro del mouse su \"Formulari\" nel <emph>Navigatore formulario</emph> e deselezionate <emph>Apri nel modo bozza</emph>. Al termine, salvate il formulario."
+msgstr "Dopo avere apportato tutte le modifiche desiderate al formulario, fate clic col pulsante destro del mouse su \"Formulari\" nel <emph>Navigatore formulario</emph> e deselezionate <emph>Apri nel modo bozza</emph>. Al termine, salvate il formulario."
#: 01171000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/04.po b/source/it/helpcontent2/source/text/shared/04.po
index 8ba1c8a2a5a..73f85b3c583 100644
--- a/source/it/helpcontent2/source/text/shared/04.po
+++ b/source/it/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-22 23:39+0200\n"
-"PO-Revision-Date: 2017-01-23 18:54+0000\n"
+"PO-Revision-Date: 2017-04-03 15:13+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197667.000000\n"
+"X-POOTLE-MTIME: 1491232431.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1521,7 +1521,7 @@ msgctxt ""
"355\n"
"help.text"
msgid "Page Down"
-msgstr "(PagGiù)"
+msgstr "PagGiù"
#: 01010000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/05.po b/source/it/helpcontent2/source/text/shared/05.po
index 8b776ebdc67..d869c0b8503 100644
--- a/source/it/helpcontent2/source/text/shared/05.po
+++ b/source/it/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2017-01-18 21:02+0000\n"
+"PO-Revision-Date: 2017-04-05 12:55+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484773363.000000\n"
+"X-POOTLE-MTIME: 1491396931.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -129,7 +129,7 @@ msgctxt ""
"hd_id3168534\n"
"help.text"
msgid "Downloads"
-msgstr "Download"
+msgstr "Scaricamenti"
#: 00000001.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/guide.po b/source/it/helpcontent2/source/text/shared/guide.po
index 66038699c44..92b9b9390e9 100644
--- a/source/it/helpcontent2/source/text/shared/guide.po
+++ b/source/it/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-01-23 18:57+0000\n"
+"PO-Revision-Date: 2017-04-03 15:53+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197846.000000\n"
+"X-POOTLE-MTIME: 1491234817.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\" name=\"Defining Borders for Paragraphs\">Defining Borders for Paragraphs</link> </variable>"
-msgstr "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\" name=\"Definire bordi per i paragrafi\">Definire bordi per i paragrafi</link></variable>"
+msgstr "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\" name=\"Definire i bordi per i paragrafi\">Definire i bordi per i paragrafi</link></variable>"
#: border_paragraph.xhp
msgctxt ""
@@ -1119,7 +1119,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\" name=\"Defining Borders for Tables and Table Cells\">Defining Borders for Tables and Table Cells</link></variable>"
-msgstr "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\" name=\"Definire bordi per tabelle e celle di tabella\">Definire bordi per tabelle e celle di tabella</link></variable>"
+msgstr "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\" name=\"Definire bordi per le tabelle e le celle di tabella\">Definire bordi per le tabelle e le celle di tabella</link></variable>"
#: border_table.xhp
msgctxt ""
@@ -4379,7 +4379,7 @@ msgctxt ""
"par_id1331217\n"
"help.text"
msgid "In the Base window, right-click the name of the table to export. Choose <emph>Copy</emph> from the context menu."
-msgstr "Nella finestra Base fate clic con il pulsante destro del mouse sul nome della tabella da esportare. Scegliete <emph>Copia</emph> dal menu di contesto."
+msgstr "Nella finestra Base fate clic col pulsante destro del mouse sul nome della tabella da esportare. Scegliete <emph>Copia</emph> dal menu di contesto."
#: data_im_export.xhp
msgctxt ""
@@ -9202,7 +9202,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Right-click the button and choose <emph>Control</emph>."
-msgstr "Fate clic con il pulsante destro del mouse e scegliete <emph>Campo di controllo</emph>."
+msgstr "Fate clic col pulsante destro del mouse e scegliete <emph>Campo di controllo</emph>."
#: formfields.xhp
msgctxt ""
@@ -9253,7 +9253,7 @@ msgctxt ""
"par_idN10828\n"
"help.text"
msgid "Right-click the button and choose <emph>Form</emph>."
-msgstr "Fate clic con il pulsante destro del mouse e scegliete <emph>Formulario</emph>."
+msgstr "Fate clic col pulsante destro del mouse e scegliete <emph>Formulario</emph>."
#: formfields.xhp
msgctxt ""
@@ -9834,7 +9834,7 @@ msgctxt ""
"par_idN1082C\n"
"help.text"
msgid "Right-click the \"Internet Link\" or \"Visited Internet Link\" character style, and choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di carattere \"Link Internet\" o \"Link Internet visitato\" e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di carattere \"Collegamento Internet\" o \"Collegamento Internet visitato\" e scegliete <emph>Modifica</emph>."
#: hyperlink_edit.xhp
msgctxt ""
@@ -17877,7 +17877,7 @@ msgctxt ""
"par_idN10B7F\n"
"help.text"
msgid "Right-click the control, then choose <emph>Properties</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sul controllo e scegliete <emph>Proprietà</emph>."
+msgstr "Fate clic col pulsante destro del mouse sul controllo e scegliete <emph>Proprietà</emph>."
#: scripting.xhp
msgctxt ""
@@ -19934,7 +19934,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Right-click and choose<emph> Properties</emph>."
-msgstr "Fate clic con il pulsante destro del mouse e scegliete <emph>Proprietà</emph>."
+msgstr "Fate clic col pulsante destro del mouse e scegliete <emph>Proprietà</emph>."
#: workfolder.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 07c2633b998..a2254d99cbe 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-01-22 22:26+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485123967.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Preleva\">Preleva</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress.po b/source/it/helpcontent2/source/text/simpress.po
index ed4441c46f4..5cc6ab3f99e 100644
--- a/source/it/helpcontent2/source/text/simpress.po
+++ b/source/it/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-05-09 13:07+0000\n"
+"PO-Revision-Date: 2017-04-03 15:29+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1462799255.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491233365.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1101,7 +1101,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "To specify the measurement units for a ruler, right-click the ruler, and then choose a new unit from the list."
-msgstr "Per specificare l'unità di misura per un righello, fate clic con il pulsante destro del mouse sul righello e scegliete l'unità di misura dall'elenco."
+msgstr "Per specificare l'unità di misura per un righello, fate clic col pulsante destro del mouse sul righello e scegliete l'unità di misura dall'elenco."
#: main0209.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/01.po b/source/it/helpcontent2/source/text/simpress/01.po
index f6daae52ce9..4b2ce327b94 100644
--- a/source/it/helpcontent2/source/text/simpress/01.po
+++ b/source/it/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-22 22:27+0000\n"
+"PO-Revision-Date: 2017-04-03 15:29+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485124030.000000\n"
+"X-POOTLE-MTIME: 1491233391.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -5019,7 +5019,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Select the object(s) that you want to move to the foreground. Right-click and choose <emph>Arrange – In Front of Object</emph>, and then click an object in your slide."
-msgstr "Selezionate l'oggetto o gli oggetti da spostare in primo piano. Fate clic con il pulsante destro del mouse e scegliete <emph>Disponi - Davanti all'oggetto</emph>, quindi fate clic su un oggetto nella diapositiva."
+msgstr "Selezionate l'oggetto o gli oggetti da spostare in primo piano. Fate clic col pulsante destro del mouse e scegliete <emph>Disponi - Davanti all'oggetto</emph>, quindi fate clic su un oggetto nella diapositiva."
#: 05250600.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Select the object(s) that you want to move behind an other object. Right-click and choose <emph>Arrange - Behind Object</emph>, and then click an object in your slide."
-msgstr "Selezionate l'oggetto o gli oggetti da spostare dietro un altro oggetto. Fate clic con il pulsante destro del mouse e scegliete <emph>Disponi - Dietro l'oggetto</emph>, quindi fate clic su un oggetto nella diapositiva."
+msgstr "Selezionate l'oggetto o gli oggetti da spostare dietro un altro oggetto. Fate clic col pulsante destro del mouse e scegliete <emph>Disponi - Dietro l'oggetto</emph>, quindi fate clic su un oggetto nella diapositiva."
#: 05250600.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/guide.po b/source/it/helpcontent2/source/text/simpress/guide.po
index 0017e11032c..69b2c91fff9 100644
--- a/source/it/helpcontent2/source/text/simpress/guide.po
+++ b/source/it/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-23 18:57+0000\n"
+"PO-Revision-Date: 2017-04-03 15:30+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485197875.000000\n"
+"X-POOTLE-MTIME: 1491233452.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -135,7 +135,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "Right-click the object and choose <emph>Convert - To Curve</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In curva</emph>."
+msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In curva</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "Right-click the object and choose <emph>Convert - To Polygon.</emph>"
-msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In poligono</emph>."
+msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In poligono</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN1088B\n"
"help.text"
msgid "Click the <emph>Extrusion On/Off</emph> icon<image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Icon</alt></image> on the <emph>Drawing</emph> bar, or right-click the object and choose <emph>Convert - To 3D</emph>."
-msgstr "Fate clic sull'icona <emph>Estrusione on/off</emph><image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Icona</alt></image> nella barra <emph>Disegno</emph> oppure fate clic con il pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In 3D</emph>."
+msgstr "Fate clic sull'icona <emph>Estrusione on/off</emph><image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Icona</alt></image> nella barra <emph>Disegno</emph> oppure fate clic col pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In 3D</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -259,7 +259,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Right-click the object and choose <emph>Convert - To 3D Rotation Object</emph>"
-msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In solido di rotazione 3D</emph>."
+msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete <emph>Converti - In solido di rotazione 3D</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "To temporarily remove a slide from your presentation, go to <emph>Slide Sorter</emph>, right-click the slide, and then choose <emph>Show/Hide Slide</emph>. The number of the hidden slide is crossed out. To show the slide, right-click the slide, and then choose <emph>Show/Hide Slide</emph>."
-msgstr "Per rimuovere temporaneamente una diapositiva dalla presentazione, accedete all'<emph>Ordine diapositive</emph>, fate clic con il pulsante destro del mouse sulla diapositiva e scegliete <emph>Mostra/nascondi diapositiva</emph>. Il numero della diapositiva nascosta appare barrato. Per mostrare la diapositiva, fate clic col pulsante destro del mouse sulla stessa e selezionate <emph>Mostra/nascondi diapositiva</emph>."
+msgstr "Per rimuovere temporaneamente una diapositiva dalla presentazione, accedete all'<emph>Ordine diapositive</emph>, fate clic col pulsante destro del mouse sulla diapositiva e scegliete <emph>Mostra/nascondi diapositiva</emph>. Il numero della diapositiva nascosta appare barrato. Per mostrare la diapositiva, fate clic col pulsante destro del mouse sulla stessa e selezionate <emph>Mostra/nascondi diapositiva</emph>."
#: background.xhp
msgctxt ""
@@ -2440,7 +2440,7 @@ msgctxt ""
"par_idN10643\n"
"help.text"
msgid "Right-click the layer tab area at the bottom."
-msgstr "Fate clic con il pulsante destro del mouse nell'area inferiore della scheda del livello."
+msgstr "Fate clic col pulsante destro del mouse nell'area inferiore della scheda del livello."
#: layer_new.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/01.po b/source/it/helpcontent2/source/text/swriter/01.po
index 632f631a232..dbddba39992 100644
--- a/source/it/helpcontent2/source/text/swriter/01.po
+++ b/source/it/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-23 19:01+0000\n"
+"PO-Revision-Date: 2017-04-05 12:56+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1485198119.000000\n"
+"X-POOTLE-MTIME: 1491397013.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_id7174596\n"
"help.text"
msgid "Right-click the field on the status line that shows \"Envelope\"."
-msgstr "Fate clic con il pulsante destro del mouse sul campo nella barra di stato che contiene \"Busta\"."
+msgstr "Fate clic col pulsante destro del mouse sul campo nella barra di stato che contiene \"Busta\"."
#: 04070000.xhp
msgctxt ""
@@ -18477,7 +18477,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "loading of the graphic is terminated by the user (for example, when downloading)"
-msgstr "L'utente interrompe il caricamento dell'immagine (ad esempio, durante un download)"
+msgstr "L'utente interrompe il caricamento dell'immagine (ad esempio, durante uno scaricamento)"
#: 05060700.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/04.po b/source/it/helpcontent2/source/text/swriter/04.po
index 827383769e8..aff11aba215 100644
--- a/source/it/helpcontent2/source/text/swriter/04.po
+++ b/source/it/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-07-04 16:53+0200\n"
-"PO-Revision-Date: 2017-03-02 16:09+0000\n"
+"PO-Revision-Date: 2017-04-03 15:14+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1488470946.000000\n"
+"X-POOTLE-MTIME: 1491232460.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"187\n"
"help.text"
msgid "PageDown"
-msgstr "(PagGiù)"
+msgstr "PagGiù"
#: 01020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index 6bb6b2e83cf..cc8d867a098 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-01-23 19:10+0000\n"
+"PO-Revision-Date: 2017-04-03 16:25+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1485198611.000000\n"
+"X-POOTLE-MTIME: 1491236737.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\" name=\"Defining Borders for Objects\">Defining Borders for Objects</link></variable>"
-msgstr "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\" name=\"Definire bordi per gli oggetti\">Definire bordi per gli oggetti</link></variable>"
+msgstr "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\" name=\"Definire i bordi per gli oggetti\">Definire i bordi per gli oggetti</link></variable>"
#: border_object.xhp
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "In Writer, you can define borders around OLE objects, plug-ins, diagrams/charts, graphics and frames. The name of the menu to be used depends on the object selected."
-msgstr "In Writer potete definire bordi attorno ad oggetti OLE, plugin, diagrammi/grafici, immagini e cornici. Il nome del menu da utilizzare dipende dall'oggetto selezionato."
+msgstr "In Writer potete definire bordi attorno a oggetti OLE, plugin, diagrammi/grafici, immagini e cornici. Il nome del menu da utilizzare dipende dall'oggetto selezionato."
#: border_object.xhp
msgctxt ""
@@ -1515,7 +1515,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Click one of the predefined border styles. This replaces the current border style of the object with the selected style."
-msgstr "Fate clic su uno degli stili bordo predefiniti. Lo stile bordo attuale dell'oggetto verrà sostituito con lo stile selezionato."
+msgstr "Fate clic su uno degli stili bordo predefiniti. Lo stile bordo attuale dell'oggetto sarà sostituito con lo stile selezionato."
#: border_object.xhp
msgctxt ""
@@ -1612,7 +1612,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Defining Borders for Pages\">Defining Borders for Pages</link> </variable>"
-msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Definire bordi per le pagine\">Definire bordi per le pagine</link></variable>"
+msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Definire i bordi per le pagine\">Definire i bordi per le pagine</link></variable>"
#: border_page.xhp
msgctxt ""
@@ -3639,7 +3639,7 @@ msgctxt ""
"par_id3153153\n"
"help.text"
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
-msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Modifica</emph>."
+msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Modifica</emph>."
#: even_odd_sdw.xhp
msgctxt ""
@@ -3663,7 +3663,7 @@ msgctxt ""
"par_id3145299\n"
"help.text"
msgid "In the list of page styles, right-click \"Right Page\" and choose <emph>Modify</emph>."
-msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su \"Pagina destra\" e scegliete <emph>Modifica</emph>."
+msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su \"Pagina destra\" e scegliete <emph>Modifica</emph>."
#: even_odd_sdw.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id3145029\n"
"help.text"
msgid "To change the format of a footnote, click in the footnote, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles and Formatting window, right-click \"Footnote\" in the list, and then choose <emph>Modify</emph>."
-msgstr "Per cambiare il formato di una nota a piè pagina, fate clic all'interno della nota, premete <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+T</caseinline><defaultinline>F11</defaultinline></switchinline> per aprire la finestra Stili e Formattazione, fate clic con il pulsante destro del mouse su \"Nota a piè di pagina\" e scegliete <emph>Modifica</emph>."
+msgstr "Per cambiare il formato di una nota a piè pagina, fate clic all'interno della nota, premete <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+T</caseinline><defaultinline>F11</defaultinline></switchinline> per aprire la finestra Stili e Formattazione, fate clic col pulsante destro del mouse su \"Nota a piè di pagina\" e scegliete <emph>Modifica</emph>."
#: footnote_usage.xhp
msgctxt ""
@@ -5358,7 +5358,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Right-click the Paragraph Style that you want to modify, for example, \"Footnote\", and choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo da modificare, ad esempio \"Nota a piè pagina\", e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo da modificare, ad esempio \"Nota a piè pagina\", e scegliete <emph>Modifica</emph>."
#: footnote_with_line.xhp
msgctxt ""
@@ -5868,7 +5868,7 @@ msgctxt ""
"par_id3153022\n"
"help.text"
msgid "To add an index, such as a table of contents, right-click in the Navigator list, and then choose <emph>Insert - Index</emph>."
-msgstr "Per aggiungere un indice, ad esempio un indice generale, fate clic con il pulsante destro del mouse nell'elenco del Navigatore e scegliete <emph>Inserisci - Indice</emph>."
+msgstr "Per aggiungere un indice, ad esempio un indice generale, fate clic col pulsante destro del mouse nell'elenco del Navigatore e scegliete <emph>Inserisci - Indice</emph>."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5924,7 +5924,7 @@ msgctxt ""
"par_id3153907\n"
"help.text"
msgid "Right-click \"Heading 1\" and choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse su \"Intestazione 1\" e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse su \"Intestazione 1\" e scegliete <emph>Modifica</emph>."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6164,7 +6164,7 @@ msgctxt ""
"par_id3150510\n"
"help.text"
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse su \"Pagina destra\" e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse su \"Pagina destra\" e scegliete <emph>Modifica</emph>."
#: header_pagestyles.xhp
msgctxt ""
@@ -6204,7 +6204,7 @@ msgctxt ""
"par_id3150714\n"
"help.text"
msgid "In the <emph>Styles and Formatting</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "Nella finestra <emph>Stili e formattazione</emph>, fate clic con il pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Modifica</emph>."
+msgstr "Nella finestra <emph>Stili e formattazione</emph>, fate clic col pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Modifica</emph>."
#: header_pagestyles.xhp
msgctxt ""
@@ -7156,7 +7156,7 @@ msgctxt ""
"par_id4013794\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Scegliete <item type=\"menuitem\">Formato - Paragrafo - Rientro e spaziatura</item>per cambiare i rientri del paragrafo attivo o per tutti i paragrafi selezionati. Potete anche <link href=\"text/swriter/guide/ruler.xhp\" name=\"Righello\">impostare i rientri usando il righello</link>."
+msgstr "Scegliete <item type=\"menuitem\">Formato - Paragrafo - Rientro e spaziatura</item> per cambiare i rientri del paragrafo attivo o per tutti i paragrafi selezionati. Potete anche <link href=\"text/swriter/guide/ruler.xhp\" name=\"Righello\">impostare i rientri usando il righello</link>."
#: indenting.xhp
msgctxt ""
@@ -7164,7 +7164,7 @@ msgctxt ""
"par_id1631824\n"
"help.text"
msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Fate clic con il pulsante destro del mouse su un paragrafo e scegliete <item type=\"menuitem\">Modifica modello paragrafo - Rientri e spaziatura</item> per cambiare i rientri per tutti i paragrafi che hanno il medesimo Modello di paragrafo."
+msgstr "Fate clic col pulsante destro del mouse su un paragrafo e scegliete <item type=\"menuitem\">Modifica modello paragrafo - Rientri e spaziatura</item> per cambiare i rientri per tutti i paragrafi che hanno il medesimo Modello di paragrafo."
#: indenting.xhp
msgctxt ""
@@ -7319,7 +7319,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "Right-click and choose an editing option from the menu."
-msgstr "Fate clic con il pulsante destro del mouse su un'opzione di modifica del menu."
+msgstr "Fate clic col pulsante destro del mouse su un'opzione di modifica del menu."
#: indices_edit.xhp
msgctxt ""
@@ -9654,7 +9654,7 @@ msgctxt ""
"par_id3154853\n"
"help.text"
msgid "Right-click the \"Default\" paragraph style and choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo \"Predefinito\" e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo \"Predefinito\" e scegliete <emph>Modifica</emph>."
#: numbering_lines.xhp
msgctxt ""
@@ -10043,7 +10043,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Right-click in the table, and choose <emph>Table</emph>."
-msgstr "Fate clic con il pulsante destro del mouse nella tabella e scegliete <emph>Tabella</emph>."
+msgstr "Fate clic col pulsante destro del mouse nella tabella e scegliete <emph>Tabella</emph>."
#: page_break.xhp
msgctxt ""
@@ -10134,7 +10134,7 @@ msgctxt ""
"par_idN10837\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
+msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
#: pagebackground.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_idN10749\n"
"help.text"
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
-msgstr "Fate clic con il pulsante destro del mouse su un modello di pagina e scegliete <emph>Nuovo</emph>. Al nuovo modello di pagina inizialmente vengono assegnate le proprietà del modello di pagina selezionato."
+msgstr "Fate clic col pulsante destro del mouse su un modello di pagina e scegliete <emph>Nuovo</emph>. Al nuovo modello di pagina inizialmente vengono assegnate le proprietà del modello di pagina selezionato."
#: pageorientation.xhp
msgctxt ""
@@ -11014,7 +11014,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
+msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
#: pagestyles.xhp
msgctxt ""
@@ -11467,7 +11467,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "Right-click the page style in the list that you want to specify the paper source for, and then choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di pagina per il quale volete specificare un determinato cassetto di alimentazione della stampante e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di pagina per il quale volete specificare un determinato cassetto di alimentazione della stampante e scegliete <emph>Modifica</emph>."
#: printer_tray.xhp
msgctxt ""
@@ -12345,7 +12345,7 @@ msgctxt ""
"par_idN1068C\n"
"help.text"
msgid "Open the Styles and Formatting window, click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <emph>Indents & Spacing</emph> tab."
-msgstr "Aprite la finestra Stili e formattazione, fate clic con il pulsante destro del mouse sullo stile di paragrafo da escludere e scegliete <emph>Modifica</emph>. Nella finestra di dialogo, fate clic sulla scheda <emph>Rientro e spaziatura</emph>."
+msgstr "Aprite la finestra Stili e formattazione, fate clic col pulsante destro del mouse sullo stile di paragrafo da escludere e scegliete <emph>Modifica</emph>. Nella finestra di dialogo, fate clic sulla scheda <emph>Rientro e spaziatura</emph>."
#: registertrue.xhp
msgctxt ""
@@ -15455,7 +15455,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Select the text that you want to capitalize."
-msgstr "Selezionate il testo da formattare con lettere maiuscole."
+msgstr "Selezionate il testo da formattare in lettere maiuscole."
#: text_capital.xhp
msgctxt ""
@@ -15498,7 +15498,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Select the text that you want to change to lowercase."
-msgstr "Selezionate il testo da formattare a lettere minuscole."
+msgstr "Selezionate il testo da formattare in lettere minuscole."
#: text_capital.xhp
msgctxt ""
@@ -15754,7 +15754,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Right-click in a paragraph, choose <emph>Paragraph, </emph>set the options that you want, for example, the background color, and then click <emph>OK</emph>."
-msgstr "Fate clic con il pulsante destro del mouse in un paragrafo, scegliete <emph>Paragrafo</emph>, impostate le opzioni desiderate, ad esempio il colore di sfondo, e fate clic su <emph>OK</emph>."
+msgstr "Fate clic col pulsante destro del mouse in un paragrafo, scegliete <emph>Paragrafo</emph>, impostate le opzioni desiderate, ad esempio il colore di sfondo, e fate clic su <emph>OK</emph>."
#: text_emphasize.xhp
msgctxt ""
@@ -15867,7 +15867,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "To edit a frame, select the frame, right-click, and then choose a formatting option. You can also right-click the selected frame, and choose <emph>Frame</emph>."
-msgstr "Per modificare una cornice, selezionatela, fate clic con il pulsante destro del mouse e scegliete un'opzione di formattazione. In alternativa, potete fare clic con il pulsante destro del mouse sulla cornice selezionata e scegliere <emph>Cornice</emph>."
+msgstr "Per modificare una cornice, selezionatela, fate clic col pulsante destro del mouse e scegliete un'opzione di formattazione. In alternativa, potete fare clic col pulsante destro del mouse sulla cornice selezionata e scegliere <emph>Cornice</emph>."
#: text_frame.xhp
msgctxt ""
@@ -16329,7 +16329,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "PgDn"
-msgstr "(PagGiù)"
+msgstr "PagGiù"
#: text_nav_keyb.xhp
msgctxt ""
@@ -16654,7 +16654,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "Right-click in a paragraph, and choose <emph>Paragraph</emph>."
-msgstr "Fate clic con il pulsante destro del mouse in un paragrafo e scegliete <emph>Paragrafo</emph>."
+msgstr "Fate clic col pulsante destro del mouse in un paragrafo e scegliete <emph>Paragrafo</emph>."
#: using_hyphen.xhp
msgctxt ""
@@ -16725,7 +16725,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "Right-click the paragraph style that you want to hyphenate, and then choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo da sillabare e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo da sillabare e scegliete <emph>Modifica</emph>."
#: using_hyphen.xhp
msgctxt ""
@@ -17151,7 +17151,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Right-click the paragraph style that you want to apply numbering to, and then choose <emph>Modify</emph>."
-msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo a cui applicare la numerazione e scegliete <emph>Modifica</emph>."
+msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo a cui applicare la numerazione e scegliete <emph>Modifica</emph>."
#: using_numbering.xhp
msgctxt ""
diff --git a/source/it/reportdesign/source/ui/inspection.po b/source/it/reportdesign/source/ui/inspection.po
index 5cb21cb10dd..226d52b2ab4 100644
--- a/source/it/reportdesign/source/ui/inspection.po
+++ b/source/it/reportdesign/source/ui/inspection.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-14 21:31+0000\n"
+"PO-Revision-Date: 2017-04-03 12:27+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481751087.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491222445.000000\n"
#: inspection.src
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr "Nessuno"
+msgstr "Nessuna"
#: inspection.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr "Nessuno"
+msgstr "Nessuna"
#: inspection.src
msgctxt ""
diff --git a/source/it/sfx2/source/dialog.po b/source/it/sfx2/source/dialog.po
index 7e2bbdc238b..0dbf593bc88 100644
--- a/source/it/sfx2/source/dialog.po
+++ b/source/it/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 19:24+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485717876.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Gerarchico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/it/sfx2/uiconfig/ui.po b/source/it/sfx2/uiconfig/ui.po
index 9b5d37b6cc9..fa81f25f319 100644
--- a/source/it/sfx2/uiconfig/ui.po
+++ b/source/it/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 19:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485719106.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME è reso disponibile nei termini della Mozilla Public License, versione 2.0. È possibile consultare una copia della MPL all'indirizzo http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"I termini della licenza e gli avvisi di copyright sul codice aggiuntivo di terze parti applicabile a varie porzioni del software sono contenuti nel file LICENSE.html; per visualizzare gli esatti dettagli in inglese, premi il pulsante \"Mostra Licenza\".\n"
-"\n"
-"Tutti i marchi, registrati e non registrati, qui menzionati sono di proprietà dei loro rispettivi proprietari.\n"
-"\n"
-"Copyright © 2000-2016 Contributori di LibreOffice. Tutti i diritti riservati.\n"
-"\n"
-"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o suoi affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/it/svtools/source/dialogs.po b/source/it/svtools/source/dialogs.po
index 789ca44a80f..a4011505c2a 100644
--- a/source/it/svtools/source/dialogs.po
+++ b/source/it/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 20:13+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485720829.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testo formattato [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/it/svtools/source/misc.po b/source/it/svtools/source/misc.po
index ddb8d0eb837..266f226ef86 100644
--- a/source/it/svtools/source/misc.po
+++ b/source/it/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 20:20+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485721259.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungherese antico (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/it/svtools/uiconfig/ui.po b/source/it/svtools/uiconfig/ui.po
index 8f0fe46fc1d..94a94cc6e62 100644
--- a/source/it/svtools/uiconfig/ui.po
+++ b/source/it/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-11 20:17+0000\n"
+"PO-Revision-Date: 2017-04-03 12:28+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484165857.000000\n"
+"X-POOTLE-MTIME: 1491222516.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr "Nessuno"
+msgstr "Nessuna"
#: graphicexport.ui
msgctxt ""
diff --git a/source/it/svx/source/stbctrls.po b/source/it/svx/source/stbctrls.po
index 7e74db6acaf..1a5fce68cb4 100644
--- a/source/it/svx/source/stbctrls.po
+++ b/source/it/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-31 12:21+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1483186881.000000\n"
@@ -153,6 +153,14 @@ msgstr "Adatta la diapositiva alla finestra attiva."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/it/svx/uiconfig/ui.po b/source/it/svx/uiconfig/ui.po
index fae8bcb947f..33c31029cb4 100644
--- a/source/it/svx/uiconfig/ui.po
+++ b/source/it/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-29 22:12+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485727975.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Continua in modalità sicura"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Esci"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Applica le modifiche e riavvia"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ja/cui/uiconfig/ui.po b/source/ja/cui/uiconfig/ui.po
index bb6681c5f80..38e644affb8 100644
--- a/source/ja/cui/uiconfig/ui.po
+++ b/source/ja/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-18 02:17+0000\n"
"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489803465.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/scalc/01.po b/source/ja/helpcontent2/source/text/scalc/01.po
index 727700ab000..af6b7f049b5 100644
--- a/source/ja/helpcontent2/source/text/scalc/01.po
+++ b/source/ja/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 11:07+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483873664.000000\n"
#: 01120000.xhp
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5727,7 +5727,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index c5d9d2b92d7..6272000938a 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-01-09 11:22+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483960926.000000\n"
#: 01000000.xhp
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
index 3f35190af0f..c9313cdee6e 100644
--- a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ja/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-18 02:38+0000\n"
-"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
+"PO-Revision-Date: 2017-04-01 16:53+0000\n"
+"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489804698.000000\n"
+"X-POOTLE-MTIME: 1491065633.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -17791,7 +17791,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Highlight Color"
-msgstr "ハイライトの色"
+msgstr "ラインマーカーの色"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/ja/sd/source/ui/app.po b/source/ja/sd/source/ui/app.po
index 820215d2e97..0aa41d214ee 100644
--- a/source/ja/sd/source/ui/app.po
+++ b/source/ja/sd/source/ui/app.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-23 08:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-01 16:54+0000\n"
+"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1469263384.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491065670.000000\n"
#: popup.src
msgctxt ""
@@ -2447,7 +2447,7 @@ msgctxt ""
"STR_CUSTOMANIMATIONPANE\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "アニメーション"
#: strings.src
msgctxt ""
diff --git a/source/ja/sd/uiconfig/simpress/ui.po b/source/ja/sd/uiconfig/simpress/ui.po
index 1b8d9295b6c..8cb9ca920ac 100644
--- a/source/ja/sd/uiconfig/simpress/ui.po
+++ b/source/ja/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-30 10:52+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-04-01 16:56+0000\n"
+"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: none\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485773535.000000\n"
+"X-POOTLE-MTIME: 1491065778.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation Deck"
-msgstr ""
+msgstr "アニメーションデッキ"
#: customanimationspanel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation List"
-msgstr ""
+msgstr "アニメーションリスト"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "アニメーションの速度を選択します。"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "アニメーションの速度を選択します。"
#: customanimationtimingtab.ui
msgctxt ""
@@ -1751,7 +1751,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "アニメーション"
#: notebookbar.ui
msgctxt ""
@@ -2057,7 +2057,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "アニメーション"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/ja/sfx2/source/dialog.po b/source/ja/sfx2/source/dialog.po
index 0006011d179..7347a302a10 100644
--- a/source/ja/sfx2/source/dialog.po
+++ b/source/ja/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 13:53+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483883609.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "階層"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ja/sfx2/uiconfig/ui.po b/source/ja/sfx2/uiconfig/ui.po
index 27c5e57bf6a..4bede569366 100644
--- a/source/ja/sfx2/uiconfig/ui.po
+++ b/source/ja/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 09:32+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484472757.000000\n"
#: alienwarndialog.ui
@@ -794,10 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
-msgstr "%PRODUCTNAME は Mozilla Public License (MPL) バージョン 2.0 の下で利用できます。MPL ライセンスの写しは次で見ることができます。http://mozilla.org/MPL/2.0/このソフトウェアの一部に適用されるサードパーティコードの追加の著作権通知とライセンス条件は LICENSE.html ファイルに分けられています。 英語で正確な詳細を見るには「ライセンスを表示(Show License)」をクリックしてください。ここで言及されている全ての商標および登録商標はそれぞれの所有者の所有物です。Copyright © 2000-2016 LibreOffice contributors. All rights reserved.This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
+msgstr ""
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ja/svtools/source/dialogs.po b/source/ja/svtools/source/dialogs.po
index 0642076539d..3b308585049 100644
--- a/source/ja/svtools/source/dialogs.po
+++ b/source/ja/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-04 11:44+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462362263.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "書式設定されたテキスト [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ja/svtools/source/misc.po b/source/ja/svtools/source/misc.po
index 2cf083991cb..dcfc1e33f7c 100644
--- a/source/ja/svtools/source/misc.po
+++ b/source/ja/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-23 01:02+0000\n"
-"Last-Translator: nishbone <ml.nishibori.kiyotaka@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 06:17+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1469235769.000000\n"
+"X-POOTLE-MTIME: 1481177825.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ja/svx/source/stbctrls.po b/source/ja/svx/source/stbctrls.po
index 3f79bb6ebdf..2d2eda94817 100644
--- a/source/ja/svx/source/stbctrls.po
+++ b/source/ja/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 15:02+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449855323.000000\n"
+"X-POOTLE-MTIME: 1481209352.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "スライドを現在のウィンドウのサイズに合わせます。
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ja/svx/uiconfig/ui.po b/source/ja/svx/uiconfig/ui.po
index e946bd7a5d7..c4ab320747e 100644
--- a/source/ja/svx/uiconfig/ui.po
+++ b/source/ja/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 12:12+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485000747.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,16 +5075,16 @@ msgstr "セーフモードを続ける(_C)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "終了(_Q)"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ka/cui/uiconfig/ui.po b/source/ka/cui/uiconfig/ui.po
index 2f05318c58c..8bda53ad07b 100644
--- a/source/ka/cui/uiconfig/ui.po
+++ b/source/ka/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 01:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ka\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476798893.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480729371.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ka/helpcontent2/source/text/scalc/01.po b/source/ka/helpcontent2/source/text/scalc/01.po
index 45ec21e1bf4..32579d19da8 100644
--- a/source/ka/helpcontent2/source/text/scalc/01.po
+++ b/source/ka/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 08:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5727,7 +5727,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index d9c92af98ea..86254d4a3e4 100644
--- a/source/ka/helpcontent2/source/text/shared/optionen.po
+++ b/source/ka/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 07:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2465,7 +2465,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ka/sfx2/source/dialog.po b/source/ka/sfx2/source/dialog.po
index 0fe4b2f55a2..2346a9ee062 100644
--- a/source/ka/sfx2/source/dialog.po
+++ b/source/ka/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 09:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457690035.000000\n"
+"X-POOTLE-MTIME: 1457690033.000000\n"
#: dialog.src
msgctxt ""
@@ -726,6 +726,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "იერარქიული"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ka/sfx2/uiconfig/ui.po b/source/ka/sfx2/uiconfig/ui.po
index 101028afa22..091cda6ff67 100644
--- a/source/ka/sfx2/uiconfig/ui.po
+++ b/source/ka/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 00:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467679078.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467679073.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ka/svtools/source/dialogs.po b/source/ka/svtools/source/dialogs.po
index fa356bfb684..9faf2e09a19 100644
--- a/source/ka/svtools/source/dialogs.po
+++ b/source/ka/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 16:48+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:24+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385484513.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449854681.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "ფორმატირებული ტექსტი [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ka/svtools/source/misc.po b/source/ka/svtools/source/misc.po
index aab4d361c56..1d83287aa8d 100644
--- a/source/ka/svtools/source/misc.po
+++ b/source/ka/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 16:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3924,6 +3924,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ka/svx/source/stbctrls.po b/source/ka/svx/source/stbctrls.po
index df2bf1aae8e..14d021ab71d 100644
--- a/source/ka/svx/source/stbctrls.po
+++ b/source/ka/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 19:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ka\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449854993.000000\n"
+"X-POOTLE-MTIME: 1431458900.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ka/svx/uiconfig/ui.po b/source/ka/svx/uiconfig/ui.po
index d1dedc1244b..559f1a4fb80 100644
--- a/source/ka/svx/uiconfig/ui.po
+++ b/source/ka/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 00:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5080,16 +5080,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/kk/cui/uiconfig/ui.po b/source/kk/cui/uiconfig/ui.po
index f88df078aae..f1803509921 100644
--- a/source/kk/cui/uiconfig/ui.po
+++ b/source/kk/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-12 14:35+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 03:57+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: none\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484231750.000000\n"
+"X-POOTLE-MTIME: 1492315060.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice үлесін қосушылары."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000–2017 LibreOffice үлесін қосушылары."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/kk/librelogo/source/pythonpath.po b/source/kk/librelogo/source/pythonpath.po
index d0d464de6d8..e17163245be 100644
--- a/source/kk/librelogo/source/pythonpath.po
+++ b/source/kk/librelogo/source/pythonpath.po
@@ -1,19 +1,20 @@
+#. extracted from librelogo/source/pythonpath
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-18 13:09+0000\n"
-"Last-Translator: Baurzhan <baurthefirst@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-14 12:10+0000\n"
+"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: none\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1400418595.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492171805.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1053,7 +1054,7 @@ msgctxt ""
"ERR_NAME\n"
"property.text"
msgid "Unknown name: ‘%s”."
-msgstr "Аты белгісіз: ‘%s”."
+msgstr "Аты белгісіз: \"%s\"."
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/kk/sfx2/source/dialog.po b/source/kk/sfx2/source/dialog.po
index 0cef143a01c..45eaa806497 100644
--- a/source/kk/sfx2/source/dialog.po
+++ b/source/kk/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-17 08:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 04:01+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484640380.000000\n"
+"X-POOTLE-MTIME: 1492315303.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Иерархия бойынша"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Бояу пішімінің режимі"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Таңдалғаннан жаңа стильді жасау"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Стильді жаңарту"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/kk/sfx2/uiconfig/ui.po b/source/kk/sfx2/uiconfig/ui.po
index 40f38cf154b..99b9b36ab86 100644
--- a/source/kk/sfx2/uiconfig/ui.po
+++ b/source/kk/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-17 08:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 04:01+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: none\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484640245.000000\n"
+"X-POOTLE-MTIME: 1492315264.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Осында аталатын барлық сауда белгілері және тіркелген сауда белгілері өз cәйкес иелерінің жеке меншігі болып табылады.\n"
"\n"
-"Copyright © 2000-2016 LibreOffice үлесін қосушылар. Барлық құқықтары қорғалған.\n"
+"Copyright © 2000–2017 LibreOffice үлесін қосушылар. Барлық құқықтары қорғалған.\n"
"\n"
"Бұл өнімді %OOOVENDOR жасады, ол OpenOffice.org өніміне негізделген, ол болса, Copyright 2000, 2011 Oracle және/немесе оның аффиляцияланған өкілдерінің жеке меншігі болып табылады. %OOOVENDOR қоғамдастықтың барлық мүшелерін мойындайды, көбірек білу үшін, http://www.libreoffice.org/ қараңыз."
diff --git a/source/kk/svtools/source/dialogs.po b/source/kk/svtools/source/dialogs.po
index 620a0145e58..c9b631d519c 100644
--- a/source/kk/svtools/source/dialogs.po
+++ b/source/kk/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-15 09:15+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 03:58+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450170930.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492315095.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Пішімделген мәтін [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Пішімделген мәтін [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/kk/svtools/source/misc.po b/source/kk/svtools/source/misc.po
index bbefceb9a1b..23b9155f574 100644
--- a/source/kk/svtools/source/misc.po
+++ b/source/kk/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-27 05:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 03:58+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482816492.000000\n"
+"X-POOTLE-MTIME: 1492315108.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Венгрлық (венгрлық руналар)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Ағылшын (Малайзия)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/kk/svx/source/stbctrls.po b/source/kk/svx/source/stbctrls.po
index c46d4e40a52..52057a209ac 100644
--- a/source/kk/svx/source/stbctrls.po
+++ b/source/kk/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-14 12:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 03:59+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484396612.000000\n"
+"X-POOTLE-MTIME: 1492315163.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Слайды ағымдағы терезеге келтіру."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Барлық SmartArt жүктеу мүмкін емес. Microsoft Office 2010 немесе кейінірек шыққан нұсқасында сақтау бұл мәселені шешеді."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/kk/svx/uiconfig/ui.po b/source/kk/svx/uiconfig/ui.po
index 5ea32863c88..8ce50e03df9 100644
--- a/source/kk/svx/uiconfig/ui.po
+++ b/source/kk/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-01-18 04:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-16 03:59+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484712177.000000\n"
+"X-POOTLE-MTIME: 1492315180.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "Қауіпсіз режимде жалға_стыру"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Шығу"
+msgid "_Restart in Normal Mode"
+msgstr "Қалыпты режимде қа_йта іске қосу"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/km/cui/uiconfig/ui.po b/source/km/cui/uiconfig/ui.po
index 85017619091..ef44174eab6 100644
--- a/source/km/cui/uiconfig/ui.po
+++ b/source/km/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:08+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 03:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: km\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799681.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480737120.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME ទំនើប ងាយស្រួល​ប្រើ ឈុត​កម្មវិធី​ការិយាល័យ​ឥត​គិត​ថ្លៃ​សម្រាប់​ កម្មវិធី​វាយ​អត្ថបទ សៀវភៅ​បញ្ជី បទ​បង្ហាញ និង​ផ្សេងៗ​ទៀត។"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "រក្សាសិទ្ធិ​ឆ្នាំ ២០០០-២០១៤ ដោយ​អ្នក​ចែកចាយ LibreOffice ។"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/scalc/01.po b/source/km/helpcontent2/source/text/scalc/01.po
index 29be684bb3c..b3fff919835 100644
--- a/source/km/helpcontent2/source/text/scalc/01.po
+++ b/source/km/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 10:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -5724,7 +5724,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5732,7 +5732,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index 02247d3b293..fdec07d1ae6 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -2456,7 +2456,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/km/sfx2/source/dialog.po b/source/km/sfx2/source/dialog.po
index 2edded2c2c5..eb76891b29b 100644
--- a/source/km/sfx2/source/dialog.po
+++ b/source/km/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 12:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: km-KH\n"
-"X-POOTLE-MTIME: 1457701184.000000\n"
+"X-POOTLE-MTIME: 1457701182.000000\n"
#: dialog.src
msgctxt ""
@@ -726,6 +726,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "​ឋានានុក្រម"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/km/sfx2/uiconfig/ui.po b/source/km/sfx2/uiconfig/ui.po
index a1819f6eb93..5f794b57b79 100644
--- a/source/km/sfx2/uiconfig/ui.po
+++ b/source/km/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 01:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467682253.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467682234.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -812,7 +812,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/km/svtools/source/dialogs.po b/source/km/svtools/source/dialogs.po
index d4476e8713c..efad43eb011 100644
--- a/source/km/svtools/source/dialogs.po
+++ b/source/km/svtools/source/dialogs.po
@@ -3,19 +3,19 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-27 07:55+0000\n"
-"Last-Translator: Sokhem Khoem <sokhem@open.org.kh>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:51+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
"Language: km\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: km-KH\n"
-"X-POOTLE-MTIME: 1385538949.000000\n"
+"X-POOTLE-MTIME: 1449856283.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -340,6 +340,14 @@ msgstr "អត្ថបទ​មាន​ទ្រង់ទ្រាយ​ [RTF]
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/km/svtools/source/misc.po b/source/km/svtools/source/misc.po
index a7e95c34ccd..d648ce6dfc2 100644
--- a/source/km/svtools/source/misc.po
+++ b/source/km/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 18:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: km-KH\n"
-"X-POOTLE-MTIME: 1462731433.000000\n"
+"X-POOTLE-MTIME: 1462731431.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/km/svx/source/stbctrls.po b/source/km/svx/source/stbctrls.po
index 88ed8ba183e..44adb42bf4e 100644
--- a/source/km/svx/source/stbctrls.po
+++ b/source/km/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:55+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 20:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: km\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449856543.000000\n"
+"X-POOTLE-MTIME: 1431464115.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "ស្លាយ​ត្រូវ​ហ្នឹង​វីនដូ​
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/km/svx/uiconfig/ui.po b/source/km/svx/uiconfig/ui.po
index 8f44b969554..a89c7f27e2d 100644
--- a/source/km/svx/uiconfig/ui.po
+++ b/source/km/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 01:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5126,16 +5126,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/kmr-Latn/cui/uiconfig/ui.po b/source/kmr-Latn/cui/uiconfig/ui.po
index 94703079d7a..ecaada32c4a 100644
--- a/source/kmr-Latn/cui/uiconfig/ui.po
+++ b/source/kmr-Latn/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:01+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 10:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: kmr-Latn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799297.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480760561.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/kmr-Latn/sfx2/source/dialog.po b/source/kmr-Latn/sfx2/source/dialog.po
index 67363eed818..32278cce580 100644
--- a/source/kmr-Latn/sfx2/source/dialog.po
+++ b/source/kmr-Latn/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 13:08+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-11 13:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457701697.000000\n"
+"X-POOTLE-MTIME: 1457701672.000000\n"
#: dialog.src
msgctxt ""
@@ -733,6 +733,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiyerarşîk"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/kmr-Latn/sfx2/uiconfig/ui.po b/source/kmr-Latn/sfx2/uiconfig/ui.po
index 4e4c07fd57c..a6ee7dd4d5f 100644
--- a/source/kmr-Latn/sfx2/uiconfig/ui.po
+++ b/source/kmr-Latn/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 01:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467682039.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467682038.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/kmr-Latn/svtools/source/dialogs.po b/source/kmr-Latn/svtools/source/dialogs.po
index 72ef5394c12..e59882653e1 100644
--- a/source/kmr-Latn/svtools/source/dialogs.po
+++ b/source/kmr-Latn/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 17:22+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kmr-Latn\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385486521.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449855809.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Nivîsa teşekirî [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/kmr-Latn/svtools/source/misc.po b/source/kmr-Latn/svtools/source/misc.po
index 7093d541cdd..51b314708e2 100644
--- a/source/kmr-Latn/svtools/source/misc.po
+++ b/source/kmr-Latn/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 17:26+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-08 17:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462728361.000000\n"
+"X-POOTLE-MTIME: 1462728309.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3917,6 +3917,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/kmr-Latn/svx/source/stbctrls.po b/source/kmr-Latn/svx/source/stbctrls.po
index d20b25ced5a..d9b2beff2f9 100644
--- a/source/kmr-Latn/svx/source/stbctrls.po
+++ b/source/kmr-Latn/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 21:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449855986.000000\n"
+"X-POOTLE-MTIME: 1431465607.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/kmr-Latn/svx/uiconfig/ui.po b/source/kmr-Latn/svx/uiconfig/ui.po
index 846f247497a..9daa18d144e 100644
--- a/source/kmr-Latn/svx/uiconfig/ui.po
+++ b/source/kmr-Latn/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 01:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/kn/cui/uiconfig/ui.po b/source/kn/cui/uiconfig/ui.po
index 123bd82bc4c..54d90877cd5 100644
--- a/source/kn/cui/uiconfig/ui.po
+++ b/source/kn/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:09+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 21:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
"Language: kn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799757.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480799222.000000\n"
#: aboutconfigdialog.ui
#, fuzzy
@@ -180,14 +180,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME ಎನ್ನುವುದು ಪದ ಸಂಸ್ಕರಣೆ, ಸ್ಪ್ರೆಡ್‌ಶೀಟ್‌ಗಳು, ಪ್ರಸ್ತುತಿಗಳು ಮತ್ತು ಇನ್ನೂ ಹೆಚ್ಚಿನದಕ್ಕಾಗಿನ ಆಧುನಿಕ, ಸುಲಭವಾಗಿ ಬಳಸಬಹುದಾದ, ಮುಕ್ತ ತಂತ್ರಾಂಶ ಉತ್ಪನ್ನ ಸೂಟ್ ಆಗಿದೆ."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "ಹಕ್ಕು © 2000 - 2014 LibreOffice ಗೆ ನೆರವಾದವರು."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/kn/sfx2/source/dialog.po b/source/kn/sfx2/source/dialog.po
index 0e88f0c730a..6e9d432f2f8 100644
--- a/source/kn/sfx2/source/dialog.po
+++ b/source/kn/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 14:55+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-11 14:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
"Language: kn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457708114.000000\n"
+"X-POOTLE-MTIME: 1457708074.000000\n"
#: dialog.src
msgctxt ""
@@ -731,6 +731,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ಶ್ರೇಣೀಕೃತ"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/kn/sfx2/uiconfig/ui.po b/source/kn/sfx2/uiconfig/ui.po
index 9a85ef8dd3d..463b5337804 100644
--- a/source/kn/sfx2/uiconfig/ui.po
+++ b/source/kn/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 01:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467683688.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467683672.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,6 @@ msgid "_Show License"
msgstr "ಪರವಾನಗಿಯನ್ನು ತೋರಿಸು (_S)"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -814,19 +813,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n"
-"\n"
-"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
-"\n"
-"Copyright © 2000, 2014 LibreOffice contributors. All rights reserved.\n"
-"\n"
-"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/kn/svtools/source/dialogs.po b/source/kn/svtools/source/dialogs.po
index 15c488c8f5e..25343712c9a 100644
--- a/source/kn/svtools/source/dialogs.po
+++ b/source/kn/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-10-29 06:53+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:41+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: RHEL7_Tier1 <kde-i18n-doc@kde.org>\n"
"Language: kn\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1414565587.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449855704.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "ರೂಪಿಸಲಾದ ಪಠ್ಯ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/kn/svtools/source/misc.po b/source/kn/svtools/source/misc.po
index 695536df3ca..cd86796a1dd 100644
--- a/source/kn/svtools/source/misc.po
+++ b/source/kn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 18:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462732382.000000\n"
+"X-POOTLE-MTIME: 1462732380.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/kn/svx/source/stbctrls.po b/source/kn/svx/source/stbctrls.po
index d3dcdc9ce10..92e1e358a20 100644
--- a/source/kn/svx/source/stbctrls.po
+++ b/source/kn/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:43+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-11-11 23:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
"Language: kn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449855799.000000\n"
+"X-POOTLE-MTIME: 1447284328.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "ಪ್ರಸಕ್ತ ಕಿಟಕಿಗೆ ಜಾರುಫಲಕವನ
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/kn/svx/uiconfig/ui.po b/source/kn/svx/uiconfig/ui.po
index 7ab56b08b16..f821a8ed657 100644
--- a/source/kn/svx/uiconfig/ui.po
+++ b/source/kn/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -5151,16 +5151,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ko/cui/uiconfig/ui.po b/source/ko/cui/uiconfig/ui.po
index c1e2858c6e2..3e1b00f181a 100644
--- a/source/ko/cui/uiconfig/ui.po
+++ b/source/ko/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:05+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-03 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ko\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799542.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480806051.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME 는 사용하기 편리한 최신 오픈소스 오피스 프로그램으로, 워드프로세서, 스트레드시트, 프레젠테이션 등 다양한 기능을 제공합니다."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "저작권 © 2000-2015 LibreOffice 기여자."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/scalc/01.po b/source/ko/helpcontent2/source/text/scalc/01.po
index 1976d183b9a..17db73be35d 100644
--- a/source/ko/helpcontent2/source/text/scalc/01.po
+++ b/source/ko/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 13:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5724,7 +5724,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5732,7 +5732,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index 82bcc899fe3..ada9d15b9cb 100644
--- a/source/ko/helpcontent2/source/text/shared/optionen.po
+++ b/source/ko/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-12-22 13:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ko/sfx2/source/dialog.po b/source/ko/sfx2/source/dialog.po
index c2e6fb0019c..682137d169b 100644
--- a/source/ko/sfx2/source/dialog.po
+++ b/source/ko/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 13:57+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-11 13:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457704677.000000\n"
+"X-POOTLE-MTIME: 1457704581.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "계층"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ko/sfx2/uiconfig/ui.po b/source/ko/sfx2/uiconfig/ui.po
index 88617ac4849..16310d13272 100644
--- a/source/ko/sfx2/uiconfig/ui.po
+++ b/source/ko/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:12+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 02:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ko\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467684725.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467684701.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -784,7 +784,6 @@ msgid "_Show License"
msgstr "라이선스 표시(_S)"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -797,19 +796,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME 은(는) 모질라 공개 라이센스(Mozilla Public License) v. 2.0 에 근거하여 배포됩니다. MPL의 복사본은 http://mozilla.org/MPL/2.0/ 에서 볼 수 있습니다.\n"
-"\n"
-"응용 프로그램의 일부에 포함된 제3사 코드에 대한 추가적인 저작권 공지와 라이센스 내용은 LICENSE.html 파일에 명시되어 있습니다. 자세한 내용을 보려면 [라이센스 보기] 를 클릭하십시오.\n"
-"\n"
-"모든 상표 및 본 문서에 언급된 등록 상표는 해당 소유자의 자산입니다.\n"
-"\n"
-"저작권 © 2000, 2015 리브레오피스 제공자. 판권 소유.\n"
-"\n"
-"이 제품은 %OOOVENDOR 의 OpenOffice.org 를 기반으로 제작되었습니다.(Oracle 및 그 자회사의 2000, 2011년 판권 버전) %OOOVENDOR 은(는) 모든 커뮤니티 회원들을 존중합니다. 더 자세한 내용은 http://www.libreoffice.org/ 를 참조하십시오."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ko/svtools/source/dialogs.po b/source/ko/svtools/source/dialogs.po
index 91064db1110..fd187492327 100644
--- a/source/ko/svtools/source/dialogs.po
+++ b/source/ko/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-07-03 07:27+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 17:56+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435908433.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449856572.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "포맷된 텍스트 [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ko/svtools/source/misc.po b/source/ko/svtools/source/misc.po
index 1cfe5183ece..d567d065479 100644
--- a/source/ko/svtools/source/misc.po
+++ b/source/ko/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 19:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-08 19:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462734375.000000\n"
+"X-POOTLE-MTIME: 1462734357.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3907,6 +3907,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ko/svx/source/stbctrls.po b/source/ko/svx/source/stbctrls.po
index fbda35b95b4..be49f0bff59 100644
--- a/source/ko/svx/source/stbctrls.po
+++ b/source/ko/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 17:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 21:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449856758.000000\n"
+"X-POOTLE-MTIME: 1431467134.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ko/svx/uiconfig/ui.po b/source/ko/svx/uiconfig/ui.po
index eb5f2ff4b4a..bbd0ef9b0bf 100644
--- a/source/ko/svx/uiconfig/ui.po
+++ b/source/ko/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5083,16 +5083,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/kok/cui/uiconfig/ui.po b/source/kok/cui/uiconfig/ui.po
index 1415818e6b9..0572cc7792b 100644
--- a/source/kok/cui/uiconfig/ui.po
+++ b/source/kok/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:07+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-04 08:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: kok\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799644.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480841781.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/kok/sfx2/source/dialog.po b/source/kok/sfx2/source/dialog.po
index 428391b2bb5..59201c032a7 100644
--- a/source/kok/sfx2/source/dialog.po
+++ b/source/kok/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-02 00:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 05:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462148584.000000\n"
+"X-POOTLE-MTIME: 1481174201.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "क्रमान रचिल्ले"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/kok/sfx2/uiconfig/ui.po b/source/kok/sfx2/uiconfig/ui.po
index 5be69ff2b49..4be8f72c841 100644
--- a/source/kok/sfx2/uiconfig/ui.po
+++ b/source/kok/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:11+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 06:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: kok\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467684713.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481179601.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/kok/svtools/source/dialogs.po b/source/kok/svtools/source/dialogs.po
index 194d6a5573f..1b2c8d08c8d 100644
--- a/source/kok/svtools/source/dialogs.po
+++ b/source/kok/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-09-26 09:21+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:04+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411723309.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857084.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "रचना केल्लो मजकूर (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/kok/svtools/source/misc.po b/source/kok/svtools/source/misc.po
index 02bba85a13a..3d816c517e1 100644
--- a/source/kok/svtools/source/misc.po
+++ b/source/kok/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 18:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 11:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462730431.000000\n"
+"X-POOTLE-MTIME: 1481194858.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/kok/svx/source/stbctrls.po b/source/kok/svx/source/stbctrls.po
index e723504391f..5d17d6f0533 100644
--- a/source/kok/svx/source/stbctrls.po
+++ b/source/kok/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:11+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-08 16:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449857476.000000\n"
+"X-POOTLE-MTIME: 1481215834.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/kok/svx/uiconfig/ui.po b/source/kok/svx/uiconfig/ui.po
index a739337b5af..622d0aba235 100644
--- a/source/kok/svx/uiconfig/ui.po
+++ b/source/kok/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-08 22:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ks/cui/uiconfig/ui.po b/source/ks/cui/uiconfig/ui.po
index 4ee2e02f8df..2c370dab1ad 100644
--- a/source/ks/cui/uiconfig/ui.po
+++ b/source/ks/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:08+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-04 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ks\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476799710.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480852589.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ks/sfx2/source/dialog.po b/source/ks/sfx2/source/dialog.po
index 94266098430..6e054b1ea39 100644
--- a/source/ks/sfx2/source/dialog.po
+++ b/source/ks/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457701295.000000\n"
+"X-POOTLE-MTIME: 1457701290.000000\n"
#: dialog.src
msgctxt ""
@@ -727,6 +727,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "درجہ وار"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/ks/sfx2/uiconfig/ui.po b/source/ks/sfx2/uiconfig/ui.po
index 6b072d6838a..34866ee20ad 100644
--- a/source/ks/sfx2/uiconfig/ui.po
+++ b/source/ks/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467684134.000000\n"
#: alienwarndialog.ui
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ks/svtools/source/dialogs.po b/source/ks/svtools/source/dialogs.po
index 164e93eb0dd..12d0bcbccbf 100644
--- a/source/ks/svtools/source/dialogs.po
+++ b/source/ks/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 17:40+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:06+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385487651.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857165.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr " (RTF) ہیئتی متن"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ks/svtools/source/misc.po b/source/ks/svtools/source/misc.po
index 93304d50eed..7bedab54e96 100644
--- a/source/ks/svtools/source/misc.po
+++ b/source/ks/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 18:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3931,6 +3931,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ks/svx/source/stbctrls.po b/source/ks/svx/source/stbctrls.po
index be81da1f0e1..bb683dc3b94 100644
--- a/source/ks/svx/source/stbctrls.po
+++ b/source/ks/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:12+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 22:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449857544.000000\n"
+"X-POOTLE-MTIME: 1431469694.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ks/svx/uiconfig/ui.po b/source/ks/svx/uiconfig/ui.po
index ad316467ac8..40a3f484d91 100644
--- a/source/ks/svx/uiconfig/ui.po
+++ b/source/ks/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/lo/cui/uiconfig/ui.po b/source/lo/cui/uiconfig/ui.po
index b418ed2f3bd..51ef8e233d5 100644
--- a/source/lo/cui/uiconfig/ui.po
+++ b/source/lo/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476799990.000000\n"
#: aboutconfigdialog.ui
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/lo/helpcontent2/source/text/scalc/01.po b/source/lo/helpcontent2/source/text/scalc/01.po
index 6b657ee7214..9087fcb13ee 100644
--- a/source/lo/helpcontent2/source/text/scalc/01.po
+++ b/source/lo/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 13:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5673,22 +5673,20 @@ msgid "Functions"
msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/lo/helpcontent2/source/text/shared/optionen.po b/source/lo/helpcontent2/source/text/shared/optionen.po
index bc5824b418b..6f3c79156b6 100644
--- a/source/lo/helpcontent2/source/text/shared/optionen.po
+++ b/source/lo/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/lo/sfx2/source/dialog.po b/source/lo/sfx2/source/dialog.po
index 65412dae6f2..cdc02ede89f 100644
--- a/source/lo/sfx2/source/dialog.po
+++ b/source/lo/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 00:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ການປົກຄອງ"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/lo/sfx2/uiconfig/ui.po b/source/lo/sfx2/uiconfig/ui.po
index ef019dfd6f2..76da8168695 100644
--- a/source/lo/sfx2/uiconfig/ui.po
+++ b/source/lo/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467685466.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467685465.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/lo/svtools/source/dialogs.po b/source/lo/svtools/source/dialogs.po
index 94851217646..6440814fc50 100644
--- a/source/lo/svtools/source/dialogs.po
+++ b/source/lo/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 22:22+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440541379.000000\n"
#: addresstemplate.src
@@ -418,6 +418,14 @@ msgstr ""
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/lo/svtools/source/misc.po b/source/lo/svtools/source/misc.po
index a6b04413270..ef8729a0138 100644
--- a/source/lo/svtools/source/misc.po
+++ b/source/lo/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 19:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4035,6 +4035,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/lo/svx/source/stbctrls.po b/source/lo/svx/source/stbctrls.po
index e26ecbe54b5..8a90833a40f 100644
--- a/source/lo/svx/source/stbctrls.po
+++ b/source/lo/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-12 22:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449856824.000000\n"
+"X-POOTLE-MTIME: 1431471505.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/lo/svx/uiconfig/ui.po b/source/lo/svx/uiconfig/ui.po
index 1d18866e686..e26506640b6 100644
--- a/source/lo/svx/uiconfig/ui.po
+++ b/source/lo/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/lt/cui/uiconfig/ui.po b/source/lt/cui/uiconfig/ui.po
index 264d755a2ff..41a45d23118 100644
--- a/source/lt/cui/uiconfig/ui.po
+++ b/source/lt/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-20 20:57+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490043474.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "© 2000–2016 „LibreOffice“ bendradarbiai."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/scalc/01.po b/source/lt/helpcontent2/source/text/scalc/01.po
index fbfcb687d82..43f16367c52 100644
--- a/source/lt/helpcontent2/source/text/scalc/01.po
+++ b/source/lt/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-21 00:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5673,22 +5673,20 @@ msgid "Functions"
msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/optionen.po b/source/lt/helpcontent2/source/text/shared/optionen.po
index 893be796867..9bde09a9aa3 100644
--- a/source/lt/helpcontent2/source/text/shared/optionen.po
+++ b/source/lt/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-03-20 21:10+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490044237.000000\n"
#: 01000000.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/lt/sfx2/source/dialog.po b/source/lt/sfx2/source/dialog.po
index 3a4a25cbd9f..e4609561017 100644
--- a/source/lt/sfx2/source/dialog.po
+++ b/source/lt/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-06 09:29+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1488792584.000000\n"
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Stilių hierarchija"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/lt/sfx2/uiconfig/ui.po b/source/lt/sfx2/uiconfig/ui.po
index a899be5e308..d56504155bf 100644
--- a/source/lt/sfx2/uiconfig/ui.po
+++ b/source/lt/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-06 09:30+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488792632.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"„%PRODUCTNAME“ programų paketas pateikiamas pagal „Mozilla“ viešosios licencijos 2.0 versijos sąlygas. Šią licenciją galima peržiūrėti tinkalapyje http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Šioje programoje panaudotiems trečiųjų šalių komponentams taikomos papildomos autorių teisių apsaugos ir licencijų sąlygos, išdėstytos faile „LICENSE.html“. Spustelėjus „Rodyti licenciją“ bus parodytas failo tekstas anglų kalba.\n"
-"\n"
-"Visi čia paminėti prekių ženklai ir registruoti prekių ženklai yra jų savininkų nuosavybė.\n"
-"\n"
-"© 2000–2016 „LibreOffice“ bendradarbiai. Visos teisės saugomos.\n"
-"\n"
-"Šį produktą sukūrė „%OOOVENDOR“ „OpenOffice.org“ pagrindu: © 2000, 2011 „Oracle“ ir (arba) bendrovės filialai. „%OOOVENDOR“ dėkoja visiems bendruomenės nariams, žr. http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/lt/shell/source/win32/shlxthandler/res.po b/source/lt/shell/source/win32/shlxthandler/res.po
index 22a29c09949..a8de6ee694e 100644
--- a/source/lt/shell/source/win32/shlxthandler/res.po
+++ b/source/lt/shell/source/win32/shlxthandler/res.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: 2014-02-18 07:27+0000\n"
-"Last-Translator: Modestas <modestas.rimkus@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-04-14 13:40+0000\n"
+"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1392708438.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492177247.000000\n"
#: shlxthdl.ulf
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"%DOCUMENT_NUMBER%\n"
"LngText.text"
msgid "Revision number"
-msgstr "Peržiūrėjimo numeris"
+msgstr "Taisymų skaičius"
#: shlxthdl.ulf
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"%DOCUMENT_NUMBER_COLON%\n"
"LngText.text"
msgid "Revision number:"
-msgstr "Peržiūrėjimo numeris:"
+msgstr "Taisymų skaičius:"
#: shlxthdl.ulf
msgctxt ""
diff --git a/source/lt/svtools/source/dialogs.po b/source/lt/svtools/source/dialogs.po
index 955323092c9..dc61b6d2450 100644
--- a/source/lt/svtools/source/dialogs.po
+++ b/source/lt/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-08-11 06:46+0000\n"
"Last-Translator: embar <embar@super.lt>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1470897970.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Raiškusis tekstas [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/lt/svtools/source/misc.po b/source/lt/svtools/source/misc.po
index 705e08cfeff..1dbb5fde2a6 100644
--- a/source/lt/svtools/source/misc.po
+++ b/source/lt/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-06 16:02+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1478448121.000000\n"
@@ -3890,6 +3890,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/lt/svx/source/stbctrls.po b/source/lt/svx/source/stbctrls.po
index 66384a262c5..b81342936ec 100644
--- a/source/lt/svx/source/stbctrls.po
+++ b/source/lt/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-11 19:49+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484164181.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Pritaikyti lapą prie veikiamojo lango."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/lt/svx/uiconfig/ui.po b/source/lt/svx/uiconfig/ui.po
index 29e2983cfd7..52fe4e00bfe 100644
--- a/source/lt/svx/uiconfig/ui.po
+++ b/source/lt/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-14 19:51+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484423463.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5077,20 +5077,20 @@ msgstr "Tęsti _ribotąją veikseną"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Baigti darbą"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Taikyti pakeitimus ir paleisti iš naujo"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/lv/cui/uiconfig/ui.po b/source/lv/cui/uiconfig/ui.po
index 779f6812456..b53a1097110 100644
--- a/source/lv/cui/uiconfig/ui.po
+++ b/source/lv/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-17 05:48+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484632126.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Autortiesības © 2000 - 2016 LibreOffice veidotāji."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/scalc/01.po b/source/lv/helpcontent2/source/text/scalc/01.po
index 4adfe8c8a2a..b07d9147839 100644
--- a/source/lv/helpcontent2/source/text/scalc/01.po
+++ b/source/lv/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 19:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5679,22 +5679,20 @@ msgid "Functions"
msgstr "Funkcijas"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index a85846fe5e9..7012950500a 100644
--- a/source/lv/helpcontent2/source/text/shared/optionen.po
+++ b/source/lv/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-12-04 11:32+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2456,7 +2456,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/lv/sfx2/source/dialog.po b/source/lv/sfx2/source/dialog.po
index 57d559b36e6..167d7e5772d 100644
--- a/source/lv/sfx2/source/dialog.po
+++ b/source/lv/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484487551.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarhisks"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/lv/sfx2/uiconfig/ui.po b/source/lv/sfx2/uiconfig/ui.po
index 038f5c7cc2f..e92716badb7 100644
--- a/source/lv/sfx2/uiconfig/ui.po
+++ b/source/lv/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-28 14:51+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485615090.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME ir pieejams ar Mozilla Public License, v. 2.0. MPL kopiju var iegūt vietnē http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Trešās puses koda papildu autortiesību paziņojumi un licenču nosacījumi, kas attiecas uz šīs programmatūras daļām, ir izklāstīti datnē LICENSE.html; izvēlieties 'Rādīt licenci', lai redzētu precīzu informāciju angļu valodā.\n"
-"\n"
-"Visas šeit minētās preču zīmes un reģistrētās preču zīmes pieder to attiecīgajiem īpašniekiem.\n"
-"\n"
-"Autortiesības © 2000, 2016 LibreOffice veidotāji. Visas tiesības ir rezervētas.\n"
-"\n"
-"Šo produktu ir veidojis %OOOVENDOR, balstoties uz OpenOffice.org, kura autortiesības 2000, 2011 pieder Oracle un/vai tā partneriem. %OOOVENDOR atzīst visus kopienas dalībniekus, pilna informācija atrodama http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/lv/svtools/source/dialogs.po b/source/lv/svtools/source/dialogs.po
index dae824f7549..8e364a1a5bf 100644
--- a/source/lv/svtools/source/dialogs.po
+++ b/source/lv/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-15 08:22+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.lv>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476519777.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formatēts teksts [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/lv/svtools/source/misc.po b/source/lv/svtools/source/misc.po
index 66a57cfcaf6..5e7e9da252f 100644
--- a/source/lv/svtools/source/misc.po
+++ b/source/lv/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484487555.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungāru (Senungāru rūnas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/lv/svx/source/stbctrls.po b/source/lv/svx/source/stbctrls.po
index 777ad850884..1677a0b56cc 100644
--- a/source/lv/svx/source/stbctrls.po
+++ b/source/lv/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484487558.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Pielāgot slaidu pašreizējam logam."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/lv/svx/uiconfig/ui.po b/source/lv/svx/uiconfig/ui.po
index 5de8e372e9b..312e64e5e0f 100644
--- a/source/lv/svx/uiconfig/ui.po
+++ b/source/lv/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 06:15+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484806512.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Turpināt drošajā režīmā"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Iziet"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Pielietot izmaiņas un pārstartēt"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/mai/cui/uiconfig/ui.po b/source/mai/cui/uiconfig/ui.po
index a59417ecf96..e3ffa3bc6ab 100644
--- a/source/mai/cui/uiconfig/ui.po
+++ b/source/mai/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476800174.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/mai/sfx2/source/dialog.po b/source/mai/sfx2/source/dialog.po
index 0e9e2d22c2e..8d6e610fbe2 100644
--- a/source/mai/sfx2/source/dialog.po
+++ b/source/mai/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 00:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -726,6 +726,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "पदक्रमीय"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/mai/sfx2/uiconfig/ui.po b/source/mai/sfx2/uiconfig/ui.po
index d45feff86e6..fd0bb3f9887 100644
--- a/source/mai/sfx2/uiconfig/ui.po
+++ b/source/mai/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 02:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467687556.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467687555.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/mai/svtools/source/dialogs.po b/source/mai/svtools/source/dialogs.po
index c0a6125c1f8..5846350585f 100644
--- a/source/mai/svtools/source/dialogs.po
+++ b/source/mai/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 18:22+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:19+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385490151.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857958.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "बिनु सँरूपित पाठ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/mai/svtools/source/misc.po b/source/mai/svtools/source/misc.po
index 7a2e92cfe7d..c3f8d105d82 100644
--- a/source/mai/svtools/source/misc.po
+++ b/source/mai/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3916,6 +3916,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mai/svx/source/stbctrls.po b/source/mai/svx/source/stbctrls.po
index b4f728350c3..e454c64cd15 100644
--- a/source/mai/svx/source/stbctrls.po
+++ b/source/mai/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:24+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 00:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449858294.000000\n"
+"X-POOTLE-MTIME: 1431476342.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/mai/svx/uiconfig/ui.po b/source/mai/svx/uiconfig/ui.po
index db77f22d1a6..223cd7abf3d 100644
--- a/source/mai/svx/uiconfig/ui.po
+++ b/source/mai/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/mk/cui/uiconfig/ui.po b/source/mk/cui/uiconfig/ui.po
index 24df95a4d1c..67bb5b9aacc 100644
--- a/source/mk/cui/uiconfig/ui.po
+++ b/source/mk/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476800179.000000\n"
#: aboutconfigdialog.ui
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/mk/helpcontent2/source/text/scalc/01.po b/source/mk/helpcontent2/source/text/scalc/01.po
index 3f178d46d5b..977eedbb539 100644
--- a/source/mk/helpcontent2/source/text/scalc/01.po
+++ b/source/mk/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5723,7 +5723,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5731,7 +5731,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index 729a66c1055..b749dd49ed5 100644
--- a/source/mk/helpcontent2/source/text/shared/optionen.po
+++ b/source/mk/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 13:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/mk/sfx2/source/dialog.po b/source/mk/sfx2/source/dialog.po
index d7775b4fbdb..437f6a60491 100644
--- a/source/mk/sfx2/source/dialog.po
+++ b/source/mk/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 14:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457707722.000000\n"
+"X-POOTLE-MTIME: 1457707698.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Хиерархиски"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/mk/sfx2/uiconfig/ui.po b/source/mk/sfx2/uiconfig/ui.po
index 2ee5eae5b4b..899fda90806 100644
--- a/source/mk/sfx2/uiconfig/ui.po
+++ b/source/mk/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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%10==1 ? 0 : 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467688757.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467688752.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/mk/svtools/source/dialogs.po b/source/mk/svtools/source/dialogs.po
index d4a7f8fb8bc..32a281aea9c 100644
--- a/source/mk/svtools/source/dialogs.po
+++ b/source/mk/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 18:27+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:13+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\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%10==1 ? 0 : 1;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385490460.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857632.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Форматиран текст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/mk/svtools/source/misc.po b/source/mk/svtools/source/misc.po
index bcb254ddf5b..fa3d0c713f0 100644
--- a/source/mk/svtools/source/misc.po
+++ b/source/mk/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 21:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462741373.000000\n"
+"X-POOTLE-MTIME: 1462741372.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mk/svx/source/stbctrls.po b/source/mk/svx/source/stbctrls.po
index f00b593ebed..77676f246cf 100644
--- a/source/mk/svx/source/stbctrls.po
+++ b/source/mk/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:17+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 00:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449857835.000000\n"
+"X-POOTLE-MTIME: 1431477570.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/mk/svx/uiconfig/ui.po b/source/mk/svx/uiconfig/ui.po
index 196f6ab78f2..c5f08323435 100644
--- a/source/mk/svx/uiconfig/ui.po
+++ b/source/mk/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ml/cui/uiconfig/ui.po b/source/ml/cui/uiconfig/ui.po
index 0eb1d8aac71..1693d1b44c0 100644
--- a/source/ml/cui/uiconfig/ui.po
+++ b/source/ml/cui/uiconfig/ui.po
@@ -3,18 +3,18 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:21+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:18+0000\n"
+"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: ml\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476800481.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800314.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "പകര്‍പ്പവകാശം © 2000 - 2016 ലിബര്‍ഓഫീസ് പ്രവര്‍ത്തകര്‍."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ml/sfx2/source/dialog.po b/source/ml/sfx2/source/dialog.po
index d74c9e6c145..364e6346017 100644
--- a/source/ml/sfx2/source/dialog.po
+++ b/source/ml/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 15:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457708758.000000\n"
+"X-POOTLE-MTIME: 1457708757.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "സ്ഥാനം അനുസരിച്ച്"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ml/sfx2/uiconfig/ui.po b/source/ml/sfx2/uiconfig/ui.po
index 3d51cbe2128..6055448dd64 100644
--- a/source/ml/sfx2/uiconfig/ui.po
+++ b/source/ml/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:25+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467689147.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467689135.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ml/svtools/source/dialogs.po b/source/ml/svtools/source/dialogs.po
index b4c507068ee..529106ef1b4 100644
--- a/source/ml/svtools/source/dialogs.po
+++ b/source/ml/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-19 19:15+0000\n"
"Last-Translator: Anish Sheela <aneesh.nl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1453230918.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "രൂപകല്പന ചെയ്ത ടെക്സ്റ്റ്
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ml/svtools/source/misc.po b/source/ml/svtools/source/misc.po
index 430dc62625a..28d9e0f1410 100644
--- a/source/ml/svtools/source/misc.po
+++ b/source/ml/svtools/source/misc.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 21:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: <en@li.org>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462741525.000000\n"
+"X-POOTLE-MTIME: 1462741524.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ml/svx/source/stbctrls.po b/source/ml/svx/source/stbctrls.po
index 888d0bc9928..1c8ab9d5600 100644
--- a/source/ml/svx/source/stbctrls.po
+++ b/source/ml/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 01:04+0000\n"
+"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449858901.000000\n"
+"X-POOTLE-MTIME: 1431479047.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ml/svx/uiconfig/ui.po b/source/ml/svx/uiconfig/ui.po
index 75590d84b72..73a232b7ed0 100644
--- a/source/ml/svx/uiconfig/ui.po
+++ b/source/ml/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:35+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5087,16 +5087,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/mn/cui/uiconfig/ui.po b/source/mn/cui/uiconfig/ui.po
index 1d301bb07bc..056b13e79e8 100644
--- a/source/mn/cui/uiconfig/ui.po
+++ b/source/mn/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:19+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: mn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476800368.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800321.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Хуулбарлах эрхийг © 2000–2016 ЛибреОфис-той хамтрагчдад."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/mn/sfx2/source/dialog.po b/source/mn/sfx2/source/dialog.po
index 56b165d4504..3d6ab1a8c22 100644
--- a/source/mn/sfx2/source/dialog.po
+++ b/source/mn/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 01:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -728,6 +728,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Шатлах"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/mn/sfx2/uiconfig/ui.po b/source/mn/sfx2/uiconfig/ui.po
index b35ddb3c77e..7cddee152c0 100644
--- a/source/mn/sfx2/uiconfig/ui.po
+++ b/source/mn/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467690263.000000\n"
#: alienwarndialog.ui
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/mn/svtools/source/dialogs.po b/source/mn/svtools/source/dialogs.po
index 9e5b7d05b16..196dd76e2fa 100644
--- a/source/mn/svtools/source/dialogs.po
+++ b/source/mn/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 18:36+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:20+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385490989.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449858049.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Хэлбэржсэн бичвэр [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/mn/svtools/source/misc.po b/source/mn/svtools/source/misc.po
index 0e7fba3dfc1..c13dbdcea37 100644
--- a/source/mn/svtools/source/misc.po
+++ b/source/mn/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 21:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462742427.000000\n"
+"X-POOTLE-MTIME: 1462742426.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mn/svx/source/stbctrls.po b/source/mn/svx/source/stbctrls.po
index cc8b6ae98a9..39142359bf1 100644
--- a/source/mn/svx/source/stbctrls.po
+++ b/source/mn/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 01:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449858324.000000\n"
+"X-POOTLE-MTIME: 1431480436.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/mn/svx/uiconfig/ui.po b/source/mn/svx/uiconfig/ui.po
index c61555c07e9..59fade8a6c7 100644
--- a/source/mn/svx/uiconfig/ui.po
+++ b/source/mn/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/mni/cui/uiconfig/ui.po b/source/mni/cui/uiconfig/ui.po
index a380d0354da..a103205787a 100644
--- a/source/mni/cui/uiconfig/ui.po
+++ b/source/mni/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: mni\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476800586.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800460.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/mni/sfx2/source/dialog.po b/source/mni/sfx2/source/dialog.po
index 2114cc002c7..54aa530c0e6 100644
--- a/source/mni/sfx2/source/dialog.po
+++ b/source/mni/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 16:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457712164.000000\n"
+"X-POOTLE-MTIME: 1457712143.000000\n"
#: dialog.src
msgctxt ""
@@ -726,6 +726,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "মথং-মনাও নাইবা"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/mni/sfx2/uiconfig/ui.po b/source/mni/sfx2/uiconfig/ui.po
index ac5daa43f25..988fdad2a48 100644
--- a/source/mni/sfx2/uiconfig/ui.po
+++ b/source/mni/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690177.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467690167.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/mni/svtools/source/dialogs.po b/source/mni/svtools/source/dialogs.po
index 1c33ad7c838..7372457ffdb 100644
--- a/source/mni/svtools/source/dialogs.po
+++ b/source/mni/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 18:41+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:38+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385491301.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859132.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "ফোর্মেত তৌরবা তেক্সত(RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/mni/svtools/source/misc.po b/source/mni/svtools/source/misc.po
index dabd97f320a..22e20b9d5a3 100644
--- a/source/mni/svtools/source/misc.po
+++ b/source/mni/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 21:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3907,6 +3907,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mni/svx/source/stbctrls.po b/source/mni/svx/source/stbctrls.po
index 54a2ebd47e5..b1fa7b485c8 100644
--- a/source/mni/svx/source/stbctrls.po
+++ b/source/mni/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:43+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 01:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449859438.000000\n"
+"X-POOTLE-MTIME: 1431482337.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/mni/svx/uiconfig/ui.po b/source/mni/svx/uiconfig/ui.po
index 8a55de8af57..d6e338455d8 100644
--- a/source/mni/svx/uiconfig/ui.po
+++ b/source/mni/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5094,16 +5094,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/mr/cui/uiconfig/ui.po b/source/mr/cui/uiconfig/ui.po
index ead5844bc74..97431c10992 100644
--- a/source/mr/cui/uiconfig/ui.po
+++ b/source/mr/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
"Language: mr\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476801047.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800899.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME हे शब्द विश्लेषण, स्प्रेडशीटस्, प्रस्तुतिकरण व अधिककरीता आधुनिक, वापरण्यास सोपी, ओपन सोअर्स् प्रोडक्टिविटि संच आहे."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "सर्वहक्काधिकार © 2000 - 2014 LibreOffice योगदानकर्ते."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/mr/sfx2/source/dialog.po b/source/mr/sfx2/source/dialog.po
index c65650f98bc..af0d9ec0bd8 100644
--- a/source/mr/sfx2/source/dialog.po
+++ b/source/mr/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 17:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457717370.000000\n"
+"X-POOTLE-MTIME: 1457717348.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "श्रेणी"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/mr/sfx2/uiconfig/ui.po b/source/mr/sfx2/uiconfig/ui.po
index 159e5215214..e61d98b3500 100644
--- a/source/mr/sfx2/uiconfig/ui.po
+++ b/source/mr/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <sshedmak@redhat.com>\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690765.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467690729.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -812,7 +812,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/mr/svtools/source/dialogs.po b/source/mr/svtools/source/dialogs.po
index 3bb65041c01..294af8d1876 100644
--- a/source/mr/svtools/source/dialogs.po
+++ b/source/mr/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 18:45+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:47+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
"Language: mr\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385491548.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859644.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "स्वरूपित मजकूर [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/mr/svtools/source/misc.po b/source/mr/svtools/source/misc.po
index 3bbc79e9f21..5553e52b8bb 100644
--- a/source/mr/svtools/source/misc.po
+++ b/source/mr/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 22:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462745671.000000\n"
+"X-POOTLE-MTIME: 1462745646.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/mr/svx/source/stbctrls.po b/source/mr/svx/source/stbctrls.po
index 19202f112db..66dec3058ec 100644
--- a/source/mr/svx/source/stbctrls.po
+++ b/source/mr/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:51+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 02:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
"Language: mr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449859897.000000\n"
+"X-POOTLE-MTIME: 1431484429.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/mr/svx/uiconfig/ui.po b/source/mr/svx/uiconfig/ui.po
index caf796d362e..783cf0e42e3 100644
--- a/source/mr/svx/uiconfig/ui.po
+++ b/source/mr/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 04:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
@@ -5128,16 +5128,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/my/cui/uiconfig/ui.po b/source/my/cui/uiconfig/ui.po
index 6f90e7cf4af..1ff62fdb4e8 100644
--- a/source/my/cui/uiconfig/ui.po
+++ b/source/my/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476800897.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800814.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/my/sfx2/source/dialog.po b/source/my/sfx2/source/dialog.po
index 55eb1734a21..c281eeeaf31 100644
--- a/source/my/sfx2/source/dialog.po
+++ b/source/my/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 19:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457724036.000000\n"
+"X-POOTLE-MTIME: 1457724034.000000\n"
#: dialog.src
msgctxt ""
@@ -732,6 +732,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "အဆင့်လိုက်တည်ရှိမှု"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/my/sfx2/uiconfig/ui.po b/source/my/sfx2/uiconfig/ui.po
index 3e6ef675030..b3c94fb2511 100644
--- a/source/my/sfx2/uiconfig/ui.po
+++ b/source/my/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690335.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467690324.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -800,7 +800,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/my/svtools/source/dialogs.po b/source/my/svtools/source/dialogs.po
index 6330795ebc7..adb798bacbc 100644
--- a/source/my/svtools/source/dialogs.po
+++ b/source/my/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 19:01+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:39+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385492475.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859188.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "စီစဉ်ဖွဲ့စည်းပြီးပုံစံစာ
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/my/svtools/source/misc.po b/source/my/svtools/source/misc.po
index 52add820aef..24dc2773fba 100644
--- a/source/my/svtools/source/misc.po
+++ b/source/my/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 22:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462746702.000000\n"
+"X-POOTLE-MTIME: 1462746686.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/my/svx/source/stbctrls.po b/source/my/svx/source/stbctrls.po
index 0332799441a..75e5486998b 100644
--- a/source/my/svx/source/stbctrls.po
+++ b/source/my/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 03:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449859487.000000\n"
+"X-POOTLE-MTIME: 1431486072.000000\n"
#: stbctrls.src
msgctxt ""
@@ -151,6 +151,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/my/svx/uiconfig/ui.po b/source/my/svx/uiconfig/ui.po
index 3ec19dd9dd8..e27246a9440 100644
--- a/source/my/svx/uiconfig/ui.po
+++ b/source/my/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 03:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5079,16 +5079,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/nb/cui/uiconfig/ui.po b/source/nb/cui/uiconfig/ui.po
index 4509f59d7b7..ccb1d289d74 100644
--- a/source/nb/cui/uiconfig/ui.po
+++ b/source/nb/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-24 23:35+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:19+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485300918.000000\n"
+"X-POOTLE-MTIME: 1492427957.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Opphavsrett © 2000 - 2016 LibreOffice (bidragsyterne)."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Opphavsrett © 2000 - 2017 LibreOffice (bidragsyterne)."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/scalc/01.po b/source/nb/helpcontent2/source/text/scalc/01.po
index 22244ee85b3..8ef99ecee03 100644
--- a/source/nb/helpcontent2/source/text/scalc/01.po
+++ b/source/nb/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 14:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5704,22 +5704,20 @@ msgid "Functions"
msgstr "Funksjoner"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/optionen.po b/source/nb/helpcontent2/source/text/shared/optionen.po
index 2330e3aaa84..947badf924f 100644
--- a/source/nb/helpcontent2/source/text/shared/optionen.po
+++ b/source/nb/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-02-25 22:36+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488062201.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Velg</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/nb/sc/uiconfig/scalc/ui.po b/source/nb/sc/uiconfig/scalc/ui.po
index 01fb89547d7..5699a12cd35 100644
--- a/source/nb/sc/uiconfig/scalc/ui.po
+++ b/source/nb/sc/uiconfig/scalc/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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-26 00:07+0000\n"
+"PO-Revision-Date: 2017-04-17 11:19+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485389251.000000\n"
+"X-POOTLE-MTIME: 1492427968.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6266,7 +6266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr " "
#: notebookbar_groups.ui
msgctxt ""
@@ -6275,7 +6275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr " "
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/nb/sd/uiconfig/simpress/ui.po b/source/nb/sd/uiconfig/simpress/ui.po
index 5038a1d89e2..e0c04775ff3 100644
--- a/source/nb/sd/uiconfig/simpress/ui.po
+++ b/source/nb/sd/uiconfig/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-25 02:27+0000\n"
+"PO-Revision-Date: 2017-04-17 11:19+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485311259.000000\n"
+"X-POOTLE-MTIME: 1492427977.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -2003,7 +2003,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr " "
#: notebookbar_groups.ui
msgctxt ""
@@ -2012,7 +2012,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr " "
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/nb/sfx2/source/dialog.po b/source/nb/sfx2/source/dialog.po
index 9afea32f061..626a23098f6 100644
--- a/source/nb/sfx2/source/dialog.po
+++ b/source/nb/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-25 00:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:19+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485304593.000000\n"
+"X-POOTLE-MTIME: 1492427999.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkisk"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Fyllformatmodus"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Ny stil fra markeringen"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Oppdater stil"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/nb/sfx2/uiconfig/ui.po b/source/nb/sfx2/uiconfig/ui.po
index b43b573c18c..e9e2cfae040 100644
--- a/source/nb/sfx2/uiconfig/ui.po
+++ b/source/nb/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-25 01:13+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485306838.000000\n"
+"X-POOTLE-MTIME: 1492428008.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,11 +794,11 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME er gjort tilgjengelig under vilkårene i «GNU Lesser General Public License Versjon 3». Du kan få en kopi av LGPL-lisensen på http://www.gnu.org/licenses/lgpl-3.0.html\n"
+"%PRODUCTNAME er gjort tilgjengelig under vilkårene i «Mozilla Public License, v. 2.0. A ». Du kan få en kopi av MPL-lisensen på http://mozilla.org/MPL/2.0/.\n"
"\n"
"Meldinger om opphavsrett på kode fra tredjepart og lisensvilkårene som ble brukt på deler av programmet finner du i fila LICENSE.html. Velg «Vis lisens» for å se detaljene på engelsk.\n"
"\n"
diff --git a/source/nb/svtools/source/dialogs.po b/source/nb/svtools/source/dialogs.po
index 53732948dbc..38001cabd93 100644
--- a/source/nb/svtools/source/dialogs.po
+++ b/source/nb/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-03-02 18:24+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:20+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456943087.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492428016.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Formatert tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Formatert tekst [RTF]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/nb/svtools/source/misc.po b/source/nb/svtools/source/misc.po
index f1b143c65a7..e0cc184c48b 100644
--- a/source/nb/svtools/source/misc.po
+++ b/source/nb/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-24 18:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485283649.000000\n"
+"X-POOTLE-MTIME: 1492428025.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungarsk (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Engelsk (Malaysia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nb/svx/source/stbctrls.po b/source/nb/svx/source/stbctrls.po
index e292518582e..ac6c9645990 100644
--- a/source/nb/svx/source/stbctrls.po
+++ b/source/nb/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-25 17:38+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485365930.000000\n"
+"X-POOTLE-MTIME: 1492428031.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Tilpass lysbildet til det gjeldende vinduet."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Kunne ikke laste alle smarttaggene. Lagring i MS Office 2010 eller senere versjoner vil unggå dette problemet."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/nb/svx/uiconfig/ui.po b/source/nb/svx/uiconfig/ui.po
index 66143112fd8..a7c46014dc6 100644
--- a/source/nb/svx/uiconfig/ui.po
+++ b/source/nb/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-01-26 01:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-17 11:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485393401.000000\n"
+"X-POOTLE-MTIME: 1492428042.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "Fortsett i Sikkermodus"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Avslutt"
+msgid "_Restart in Normal Mode"
+msgstr "Restart i normalmodus"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ne/cui/uiconfig/ui.po b/source/ne/cui/uiconfig/ui.po
index 616a332293f..16e1f4315ab 100644
--- a/source/ne/cui/uiconfig/ui.po
+++ b/source/ne/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ne\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476800942.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476800898.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ne/helpcontent2/source/text/scalc/01.po b/source/ne/helpcontent2/source/text/scalc/01.po
index dd1bf9cbc14..88e1cf248fe 100644
--- a/source/ne/helpcontent2/source/text/scalc/01.po
+++ b/source/ne/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 14:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5717,22 +5717,20 @@ msgid "Functions"
msgstr "प्रकार्यहरू"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/optionen.po b/source/ne/helpcontent2/source/text/shared/optionen.po
index 0ba1a5e8d66..8d85e999438 100644
--- a/source/ne/helpcontent2/source/text/shared/optionen.po
+++ b/source/ne/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 13:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ne/sfx2/source/dialog.po b/source/ne/sfx2/source/dialog.po
index 0c5dc5765c9..9a78de9a904 100644
--- a/source/ne/sfx2/source/dialog.po
+++ b/source/ne/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 19:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457724104.000000\n"
+"X-POOTLE-MTIME: 1457724081.000000\n"
#: dialog.src
msgctxt ""
@@ -727,6 +727,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "सोपानक्रमिक"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ne/sfx2/uiconfig/ui.po b/source/ne/sfx2/uiconfig/ui.po
index c67dcc311c7..2d911ceec10 100644
--- a/source/ne/sfx2/uiconfig/ui.po
+++ b/source/ne/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 04:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467693938.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467693910.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ne/svtools/source/dialogs.po b/source/ne/svtools/source/dialogs.po
index eb32fdeea13..5a050373ca8 100644
--- a/source/ne/svtools/source/dialogs.po
+++ b/source/ne/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 19:09+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:50+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385492961.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859810.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "ढाँचाबद्ध गरिएको पाठ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ne/svtools/source/misc.po b/source/ne/svtools/source/misc.po
index 57d0313372c..3e790f5e85d 100644
--- a/source/ne/svtools/source/misc.po
+++ b/source/ne/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-08 22:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462745949.000000\n"
+"X-POOTLE-MTIME: 1462745948.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3894,6 +3894,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ne/svx/source/stbctrls.po b/source/ne/svx/source/stbctrls.po
index 738cf8d7897..48f8513f32e 100644
--- a/source/ne/svx/source/stbctrls.po
+++ b/source/ne/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:53+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 03:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449860012.000000\n"
+"X-POOTLE-MTIME: 1431489504.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ne/svx/uiconfig/ui.po b/source/ne/svx/uiconfig/ui.po
index 1ac37545955..0f928d13db8 100644
--- a/source/ne/svx/uiconfig/ui.po
+++ b/source/ne/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 04:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5080,16 +5080,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/nl/cui/uiconfig/ui.po b/source/nl/cui/uiconfig/ui.po
index 1c9238f8f58..556972a9c8b 100644
--- a/source/nl/cui/uiconfig/ui.po
+++ b/source/nl/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-24 07:19+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-14 07:31+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: none\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487920747.000000\n"
+"X-POOTLE-MTIME: 1492155071.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice bijdragers."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 LibreOffice bijdragers."
#: aboutdialog.ui
msgctxt ""
@@ -14116,7 +14116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Scaling"
-msgstr "Op schaal brengen"
+msgstr "Schaalfactor"
#: positionpage.ui
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/guide.po b/source/nl/helpcontent2/source/text/sbasic/guide.po
index 1e1e483ff86..3ba59071233 100644
--- a/source/nl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/nl/helpcontent2/source/text/sbasic/guide.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: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-01-07 10:54+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"PO-Revision-Date: 2017-04-13 21:46+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483786473.000000\n"
+"X-POOTLE-MTIME: 1492119962.000000\n"
#: access2base.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_idA2B007\n"
"help.text"
msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
-msgstr "<emph>De bibliotheek is online gedocumenteerd op <link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\">http://www.access2base.com</link></emph>"
+msgstr "<emph>De bibliotheek is online gedocumenteerd op </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
#: access2base.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/shared.po b/source/nl/helpcontent2/source/text/sbasic/shared.po
index 126fec53620..4f11f52f5a9 100644
--- a/source/nl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nl/helpcontent2/source/text/sbasic/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-26 17:58+0000\n"
-"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
+"PO-Revision-Date: 2017-04-13 21:49+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480183097.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492120148.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -26897,7 +26897,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
-msgstr "<emph>[Dimensie]:</emph> Integer die specificeert welke dimensie wordt teruggegeven voor de boven- (<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven."
+msgstr "<emph>[Dimension]:</emph> Integer die specificeert welke dimensie wordt teruggegeven voor de bovengrens(<emph>Ubound</emph>) of ondergrens (<emph>LBound</emph>). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven."
#: 03103000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc.po b/source/nl/helpcontent2/source/text/scalc.po
index da4a8752afe..05c45e6c8e4 100644
--- a/source/nl/helpcontent2/source/text/scalc.po
+++ b/source/nl/helpcontent2/source/text/scalc.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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-04-27 06:44+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"PO-Revision-Date: 2017-04-13 21:50+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1461739466.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492120256.000000\n"
#: main0000.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Object\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
#: main0103.xhp
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:FormatMenu\">Het menu <emph>Opmaak</emph> bevat opdrachten voor het opmaken van geselecteerde cellen, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objecten\">objecten</link> en de celinhoud in uw document.</ahelp>"
+msgstr "<ahelp hid=\".\">Het menu <emph>Opmaak</emph> bevat opdrachten voor het opmaken van geselecteerde cellen, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objecten</link> en de celinhoud in uw document.</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -524,7 +524,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Bevat opdrachten voor het manipuleren en weergeven van documentvensters.</ahelp>"
+msgstr "<ahelp hid=\".\">Bevat opdrachten voor het manipuleren en weergeven van documentvensters.</ahelp>"
#: main0112.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index de23e198116..f08b93c31fb 100644
--- a/source/nl/helpcontent2/source/text/scalc/01.po
+++ b/source/nl/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-02-26 10:21+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 21:53+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488104478.000000\n"
+"X-POOTLE-MTIME: 1492120416.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -556,7 +556,7 @@ msgctxt ""
"hd_id3145251\n"
"help.text"
msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
-msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Koptekst/Voettekst\">Koptekst/Voettekst</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Koptekst & Voettekst</link>"
#: 02120000.xhp
msgctxt ""
@@ -564,7 +564,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Allows you to define and format headers and footers.</ahelp> </variable>"
-msgstr "<variable id=\"kopfundfusszeilentext\">Definieer en bepaal de opmaak van kop- en voetteksten.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Definieer en bepaal de opmaak van kop- en voetteksten.</ahelp></variable>"
#: 02120000.xhp
msgctxt ""
@@ -5677,7 +5677,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5685,7 +5685,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
@@ -66155,7 +66155,7 @@ msgctxt ""
"189\n"
"help.text"
msgid "WEBSERVICE(URI)"
-msgstr "WEBSERVICE(URI)"
+msgstr "WEBSERVICE(URL)"
#: func_webservice.xhp
msgctxt ""
@@ -66164,7 +66164,7 @@ msgctxt ""
"190\n"
"help.text"
msgid "<emph>URI: </emph> URI text of the web service."
-msgstr "<emph>URI: </emph> URI-tekst van de webservice."
+msgstr "<emph>URL: </emph> URL-tekst van de webservice."
#: func_webservice.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sdraw.po b/source/nl/helpcontent2/source/text/sdraw.po
index 6b7eea6f63e..ae31795fbe8 100644
--- a/source/nl/helpcontent2/source/text/sdraw.po
+++ b/source/nl/helpcontent2/source/text/sdraw.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-07 10:56+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"PO-Revision-Date: 2017-04-13 21:54+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483786595.000000\n"
+"X-POOTLE-MTIME: 1492120483.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "Welkom bij de Help van $[officename] Draw"
#: main0000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared.po b/source/nl/helpcontent2/source/text/shared.po
index 070db173894..42a808789dd 100644
--- a/source/nl/helpcontent2/source/text/shared.po
+++ b/source/nl/helpcontent2/source/text/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 14:54+0000\n"
-"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
+"PO-Revision-Date: 2017-04-13 21:55+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467816897.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492120535.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabelontwerp"
#: main0204.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id3153752\n"
"help.text"
msgid "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Pictogram</alt></image>"
#: main0204.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabelontwerp"
#: main0204.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/optionen.po b/source/nl/helpcontent2/source/text/shared/optionen.po
index 377ad9296fc..336d24ff9c5 100644
--- a/source/nl/helpcontent2/source/text/shared/optionen.po
+++ b/source/nl/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-02-24 07:20+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487920817.000000\n"
#: 01000000.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/nl/helpcontent2/source/text/swriter/01.po b/source/nl/helpcontent2/source/text/swriter/01.po
index abfbf749e55..dd14b4113be 100644
--- a/source/nl/helpcontent2/source/text/swriter/01.po
+++ b/source/nl/helpcontent2/source/text/swriter/01.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-26 10:22+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"PO-Revision-Date: 2017-04-05 14:05+0000\n"
+"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488104572.000000\n"
+"X-POOTLE-MTIME: 1491401122.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3688,7 +3688,7 @@ msgctxt ""
"par_id3147511\n"
"help.text"
msgid "To specify which non-printing characters are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and then select the options that you want in the <emph>Display of</emph> area."
-msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Opmaakhulp\">%PRODUCTNAME Writer - Opmaakhulp</link></emph> en selecteer dan de opties die u wilt in het gebied <emph>Weergeven van</emph>om te specificeren of niet afdrukbare tekens moeten worden weergegeven."
+msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Voorkeuren</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Opmaakhulp\"><emph>%PRODUCTNAME Writer - Opmaakhulp</emph></link> en selecteer dan de opties die u wilt in het gebied <emph>Weergeven van</emph>om te specificeren of niet afdrukbare tekens moeten worden weergegeven."
#: 03120000.xhp
msgctxt ""
diff --git a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
index 271904fcaed..bc0eb99be7a 100644
--- a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nl/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-17 07:03+0000\n"
+"PO-Revision-Date: 2017-04-09 12:09+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489734232.000000\n"
+"X-POOTLE-MTIME: 1491739775.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -28672,7 +28672,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide Whitespac~e"
-msgstr "Spati~es verbergen"
+msgstr "Witruimt~e verbergen"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nl/sc/source/ui/src.po b/source/nl/sc/source/ui/src.po
index 10212ed7381..c6572577440 100644
--- a/source/nl/sc/source/ui/src.po
+++ b/source/nl/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: 2016-12-10 23:38+0100\n"
-"PO-Revision-Date: 2016-12-24 10:03+0000\n"
+"PO-Revision-Date: 2017-04-07 06:35+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482573824.000000\n"
+"X-POOTLE-MTIME: 1491546913.000000\n"
#: filter.src
msgctxt ""
@@ -11773,7 +11773,9 @@ msgctxt ""
msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
-msgstr "Rondt een getal naar beneden af, naar het dichtst bijzijnde significante veelvoud. Deze functie bestaat omwille van de interoperabiliteit met Microsoft Excel 2007 of oudere versies."
+msgstr ""
+"Rondt een getal naar beneden af, naar het dichtst bijzijnde significante veelvoud.\n"
+"Deze functie bestaat omwille van de interoperabiliteit met Microsoft Excel 2007 of ouder versies."
#: scfuncs.src
msgctxt ""
diff --git a/source/nl/sc/uiconfig/scalc/ui.po b/source/nl/sc/uiconfig/scalc/ui.po
index 2fb4f10690d..2002f9f42f8 100644
--- a/source/nl/sc/uiconfig/scalc/ui.po
+++ b/source/nl/sc/uiconfig/scalc/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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-28 08:56+0000\n"
+"PO-Revision-Date: 2017-04-09 07:18+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: none\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485593797.000000\n"
+"X-POOTLE-MTIME: 1491722336.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -9992,7 +9992,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select a category of contents."
-msgstr "Kies inhoudsopgave."
+msgstr "Kies een categorie voor de inhoud."
#: sidebarnumberformat.ui
msgctxt ""
diff --git a/source/nl/sfx2/source/dialog.po b/source/nl/sfx2/source/dialog.po
index 99cf3446d82..b59e689374b 100644
--- a/source/nl/sfx2/source/dialog.po
+++ b/source/nl/sfx2/source/dialog.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-24 12:11+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 21:42+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482581484.000000\n"
+"X-POOTLE-MTIME: 1492119734.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiërarchisch"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Gietermodus"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Nieuw opmaakprofiel uit selectie"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Opmaakprofiel bijwerken"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/nl/sfx2/uiconfig/ui.po b/source/nl/sfx2/uiconfig/ui.po
index a878c6f4d84..14277ebb596 100644
--- a/source/nl/sfx2/uiconfig/ui.po
+++ b/source/nl/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 12:22+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482582127.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME is beschikbaar gesteld onder de bepalingen van de Mozilla Public License, v. 2.0. Een kopie van de MPL is te vinden op http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Additionele copyright meldingen van derde partijen en licentiebepalingen voor delen van de software staan in het bestand LICENSE.html; kies Licentie tonen om de precieze details te zien in het Engels.\n"
-"\n"
-"Alle handelsmerken en geregistreerde handelsmerken die hierin worden genoemd zijn het eigendom van hun respectievelijke eigenaars.\n"
-"\n"
-"Copyright © 2000, 2016 LibreOffice medewerkers. Alle rechten voorbehouden.\n"
-"\n"
-"Dit product is gemaakt door %OOOVENDOR, gebaseerd op OpenOffice.org, dat is Copyright 2000, 2011 Oracle en/of haar dochterondernemingen. %OOOVENDOR is erkentelijk voor alle leden van de gemeenschap, zie http://www.libreoffice.org/ voor meer informatie."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/nl/svtools/source/dialogs.po b/source/nl/svtools/source/dialogs.po
index 5dd1d72efdf..5b2f5319a3a 100644
--- a/source/nl/svtools/source/dialogs.po
+++ b/source/nl/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-13 08:20+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 21:43+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449994829.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492119788.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Tekst met opmaak [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Opgemaakte tekst [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/nl/svtools/source/misc.po b/source/nl/svtools/source/misc.po
index f208fe7d202..37b7098c7ea 100644
--- a/source/nl/svtools/source/misc.po
+++ b/source/nl/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-24 15:02+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 21:43+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482591774.000000\n"
+"X-POOTLE-MTIME: 1492119794.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hongaars (Szekely-Hongaarse Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Engels (Maleisië)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nl/svx/source/stbctrls.po b/source/nl/svx/source/stbctrls.po
index 34122d2715d..7bfd6217dc2 100644
--- a/source/nl/svx/source/stbctrls.po
+++ b/source/nl/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 12:51+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482583873.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "De dia aan het huidige venster aanpassen."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/nl/svx/uiconfig/ui.po b/source/nl/svx/uiconfig/ui.po
index ddb90a272de..c38036854ee 100644
--- a/source/nl/svx/uiconfig/ui.po
+++ b/source/nl/svx/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2016-12-30 08:01+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 21:44+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483084887.000000\n"
+"X-POOTLE-MTIME: 1492119843.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "In veilige mo_dus doorgaan"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "A_fsluiten"
+msgid "_Restart in Normal Mode"
+msgstr "Heropstarten in _normale modus"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/nl/swext/mediawiki/help.po b/source/nl/swext/mediawiki/help.po
index b039fcad5bd..484af9bf5af 100644
--- a/source/nl/swext/mediawiki/help.po
+++ b/source/nl/swext/mediawiki/help.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-24 15:00+0000\n"
+"PO-Revision-Date: 2017-04-07 06:40+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482591632.000000\n"
+"X-POOTLE-MTIME: 1491547226.000000\n"
#: help.tree
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr "Lijsten kunnen vertrouwd worden geëxporteerd als de gehele lijst een consistent opmaakprofiel voor lijsten gebruikt. Gebruik het pictogram Nummering aan/uit of Opsommingstekens aan/uit om een lijst in Writer te genereren. In dien u een lijst zonder nummering of opsommingstekens nodig heeft, gebruikt u Opmaak - Nummering/opsommingstekens om een afzonderlijk opmaakprofiel voor lijsten te definiëren en toe te passen."
+msgstr "Lijsten kunnen vertrouwd worden geëxporteerd als de gehele lijst een consistent opmaakprofiel voor lijsten gebruikt. Gebruik het pictogram Nummering aan/uit of Opsommingstekens aan/uit om een lijst in Writer te genereren. Indien u een lijst zonder nummering of opsommingstekens nodig heeft, gebruikt u <emph>Opmaak - Nummering/opsommingstekens</emph> om een afzonderlijk opmaakprofiel voor lijsten te definiëren en toe te passen."
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr "Ongeacht de gebruikergedefinieerde tabelopmaak voor randen en achtergrond wordt een tabel altijd geëxporteerd als \"<emph>prettytable</emph>\", wat er in de wikimachine uitziet als eenvoudige randen en vette kop."
+msgstr "Ongeacht de gebruikergedefinieerde tabelopmaak voor randen en achtergrond wordt een tabel altijd geëxporteerd als \"prettytable\", wat er in de wikimachine uitziet als eenvoudige randen en vette kop."
#: wikiformats.xhp
msgctxt ""
diff --git a/source/nn/cui/uiconfig/ui.po b/source/nn/cui/uiconfig/ui.po
index 00bfe56cd7d..c82250fb75b 100644
--- a/source/nn/cui/uiconfig/ui.po
+++ b/source/nn/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-30 16:53+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485795189.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Opphavsrett © 2000 - 2016 LibreOffice-utgjevarane."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/scalc/01.po b/source/nn/helpcontent2/source/text/scalc/01.po
index 351c6f14ce9..a262f1d4882 100644
--- a/source/nn/helpcontent2/source/text/scalc/01.po
+++ b/source/nn/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-09 19:44+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489088696.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/optionen.po b/source/nn/helpcontent2/source/text/shared/optionen.po
index 82ea4bc3336..b8507e045d8 100644
--- a/source/nn/helpcontent2/source/text/shared/optionen.po
+++ b/source/nn/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-03-11 10:58+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489229904.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Vel</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/nn/sd/source/core.po b/source/nn/sd/source/core.po
index 215cf9451b4..8ec4b16c798 100644
--- a/source/nn/sd/source/core.po
+++ b/source/nn/sd/source/core.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 05:01+0000\n"
+"PO-Revision-Date: 2017-04-10 11:20+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467694915.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491823239.000000\n"
#: glob.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_MASTERSLIDE_NAME\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Hovudlysbilete"
#: glob.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_MASTERPAGE_NAME\n"
"string.text"
msgid "Master Page"
-msgstr ""
+msgstr "Hovudside"
#: glob.src
msgctxt ""
@@ -677,7 +677,7 @@ msgctxt ""
"STR_SHRINK_FONT_SIZE\n"
"string.text"
msgid "Shrink font size"
-msgstr ""
+msgstr "Minsk skriftstorleiken"
#: glob.src
msgctxt ""
@@ -685,4 +685,4 @@ msgctxt ""
"STR_GROW_FONT_SIZE\n"
"string.text"
msgid "Grow font size"
-msgstr ""
+msgstr "Auk skriftstorleiken"
diff --git a/source/nn/sfx2/source/dialog.po b/source/nn/sfx2/source/dialog.po
index 644a381c743..2534041ac77 100644
--- a/source/nn/sfx2/source/dialog.po
+++ b/source/nn/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-12 14:55+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489330540.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkisk"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/nn/sfx2/uiconfig/ui.po b/source/nn/sfx2/uiconfig/ui.po
index 37dfeedb93c..57cbdd1531d 100644
--- a/source/nn/sfx2/uiconfig/ui.po
+++ b/source/nn/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 19:49+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487879374.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME er gjort tilgjengeleg under vilkåra i Mozilla Public License, v. 2.0. Du kan få ein kopi av MP-lisensen på http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Meldingar om opphavsrett på kode frå tredjepart og lisensvilkåra som vert brukte på delar av programmet finn du i fila LICENSE.html. Vel «Show license» for å sjå detaljane (på engelsk).\n"
-"\n"
-"Alle varemerke og registrerte varemerker som er nemnde her tilhøyrer dei respektive eigarane.\n"
-"\n"
-"Ophavsrett © 2000, 2016: LibreOffice-bidragsytarane. \n"
-"\n"
-"Dette produktet er laga av %OOOVENDOR, basert på OpenOffice.org som er underlagt opphavsrett 2000, 2011 Oracle og/eller partnarane. %OOOVENDOR vedkjenner seg alle medlemmar av fellesskapet, sjå http://www.libreoffice.org/ for fleire detaljar."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/nn/svtools/source/dialogs.po b/source/nn/svtools/source/dialogs.po
index 99ebbd19e28..be9d35aafde 100644
--- a/source/nn/svtools/source/dialogs.po
+++ b/source/nn/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-12 10:00+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1452592827.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formatert tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/nn/svtools/source/misc.po b/source/nn/svtools/source/misc.po
index bb388e0b906..8729d220e66 100644
--- a/source/nn/svtools/source/misc.po
+++ b/source/nn/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 19:52+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487879522.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ungarsk (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nn/svx/source/stbctrls.po b/source/nn/svx/source/stbctrls.po
index 9dddfb3e4d2..331916406a1 100644
--- a/source/nn/svx/source/stbctrls.po
+++ b/source/nn/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-16 10:48+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487242113.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Tilpass lysbiletet til det gjeldande vindauget."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/nn/svx/uiconfig/ui.po b/source/nn/svx/uiconfig/ui.po
index 6afbf8ac26f..96091906343 100644
--- a/source/nn/svx/uiconfig/ui.po
+++ b/source/nn/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-16 15:33+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487259220.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Hald fram i sikker modus"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Avslutt"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Bruk endringane og start på nytt"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/nn/xmlsecurity/uiconfig/ui.po b/source/nn/xmlsecurity/uiconfig/ui.po
index 63d4b857f5d..cef4d1c0656 100644
--- a/source/nn/xmlsecurity/uiconfig/ui.po
+++ b/source/nn/xmlsecurity/uiconfig/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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2016-06-04 17:39+0000\n"
+"PO-Revision-Date: 2017-04-10 11:21+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1465061977.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491823264.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Signature type"
-msgstr ""
+msgstr "Signaturtype"
#: digitalsignaturesdialog.ui
msgctxt ""
diff --git a/source/nr/cui/uiconfig/ui.po b/source/nr/cui/uiconfig/ui.po
index ff455e8ea3e..b17b8c1b017 100644
--- a/source/nr/cui/uiconfig/ui.po
+++ b/source/nr/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476801213.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/nr/sfx2/source/dialog.po b/source/nr/sfx2/source/dialog.po
index 0fc9ac90f37..389d6e9f284 100644
--- a/source/nr/sfx2/source/dialog.po
+++ b/source/nr/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 01:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -721,6 +721,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ngokulandelana"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/nr/sfx2/uiconfig/ui.po b/source/nr/sfx2/uiconfig/ui.po
index 41f64ee193b..7b36138ac8e 100644
--- a/source/nr/sfx2/uiconfig/ui.po
+++ b/source/nr/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 05:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467695551.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467695550.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/nr/svtools/source/dialogs.po b/source/nr/svtools/source/dialogs.po
index 6157d01feb6..fab36b335d6 100644
--- a/source/nr/svtools/source/dialogs.po
+++ b/source/nr/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 19:33+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:58+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385494437.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449860281.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Itheksti engakalungiswa [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/nr/svtools/source/misc.po b/source/nr/svtools/source/misc.po
index 2cf75de08b9..ef8abaec132 100644
--- a/source/nr/svtools/source/misc.po
+++ b/source/nr/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-23 21:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464037870.000000\n"
+"X-POOTLE-MTIME: 1464037869.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3969,6 +3969,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/nr/svx/source/stbctrls.po b/source/nr/svx/source/stbctrls.po
index 55d4173810c..2afe3444706 100644
--- a/source/nr/svx/source/stbctrls.po
+++ b/source/nr/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 05:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449860437.000000\n"
+"X-POOTLE-MTIME: 1431496346.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/nr/svx/uiconfig/ui.po b/source/nr/svx/uiconfig/ui.po
index d6c3bd4f6a2..a6dd07fef64 100644
--- a/source/nr/svx/uiconfig/ui.po
+++ b/source/nr/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 05:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/nso/cui/uiconfig/ui.po b/source/nso/cui/uiconfig/ui.po
index 553d441aa89..6188401d486 100644
--- a/source/nso/cui/uiconfig/ui.po
+++ b/source/nso/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:34+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-23 09:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: nso\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476801243.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482485364.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/nso/sfx2/source/dialog.po b/source/nso/sfx2/source/dialog.po
index 9bb455b3418..b4d369ba2d6 100644
--- a/source/nso/sfx2/source/dialog.po
+++ b/source/nso/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 01:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Beakantšwe ka maemo"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/nso/sfx2/uiconfig/ui.po b/source/nso/sfx2/uiconfig/ui.po
index 468f7bdc713..a55861038df 100644
--- a/source/nso/sfx2/uiconfig/ui.po
+++ b/source/nso/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 05:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467695527.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467695526.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/nso/svtools/source/dialogs.po b/source/nso/svtools/source/dialogs.po
index 75ce20fe83e..cb3197b1323 100644
--- a/source/nso/svtools/source/dialogs.po
+++ b/source/nso/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 19:40+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 18:57+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nso\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385494852.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449860263.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Sengwalwa se bopilwego [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/nso/svtools/source/misc.po b/source/nso/svtools/source/misc.po
index 600e9ff84c6..cb123cb3974 100644
--- a/source/nso/svtools/source/misc.po
+++ b/source/nso/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-23 21:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464038272.000000\n"
+"X-POOTLE-MTIME: 1464038267.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/nso/svx/source/stbctrls.po b/source/nso/svx/source/stbctrls.po
index 0ef90e156de..2b484593b66 100644
--- a/source/nso/svx/source/stbctrls.po
+++ b/source/nso/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:01+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 06:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nso\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449860470.000000\n"
+"X-POOTLE-MTIME: 1431498086.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/nso/svx/uiconfig/ui.po b/source/nso/svx/uiconfig/ui.po
index 15260e04ea9..527f8022ebd 100644
--- a/source/nso/svx/uiconfig/ui.po
+++ b/source/nso/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 05:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/oc/cui/uiconfig/ui.po b/source/oc/cui/uiconfig/ui.po
index 192712943dd..4c1b79bef34 100644
--- a/source/oc/cui/uiconfig/ui.po
+++ b/source/oc/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-20 08:15+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487578550.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Contributors de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/oc/sfx2/source/dialog.po b/source/oc/sfx2/source/dialog.po
index 2c40c8bd821..2407212680a 100644
--- a/source/oc/sfx2/source/dialog.po
+++ b/source/oc/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 15:55+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487865310.000000\n"
#: dialog.src
@@ -720,6 +720,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ierarquia"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/oc/sfx2/uiconfig/ui.po b/source/oc/sfx2/uiconfig/ui.po
index a6206a412d2..53cfa0698ad 100644
--- a/source/oc/sfx2/uiconfig/ui.po
+++ b/source/oc/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-20 16:06+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487606787.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME es mes a disposicion jols tèrmes de la licéncia Mozilla Public License, v. 2.0. Una còpia de la MPL es disponibla a http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Las partidas de còdi tèrç, los autres vejaires de dreit d'autor e las condicions de licéncia aplicablas a de partidas del Logicial figuran dins lo fichièr License.html ; causissètz Afichar la licéncia per veire los detalhs exactes en anglés.\n"
-"\n"
-"Totas las marcas e marcas depausadas mencionadas dins aqueste document son la proprietat de lors proprietaris respectius.\n"
-"\n"
-"Copyright © 2000, 2014 collaborators LibreOffice. Totes los dreits reservats.\n"
-"\n"
-"Aqueste produit es estat creat per %OOOVENDOR, basat sus OpenOffice.org, qu'es Copyright 2000, 2011 Oracle e/o sas filialas. %OOOVENDOR reconeis totes los membres de la comunautat, consultatz http://www.libreoffice.org/ per mai de detalhs."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/oc/svtools/source/dialogs.po b/source/oc/svtools/source/dialogs.po
index 1419e059dbb..f0d6fbf3ef1 100644
--- a/source/oc/svtools/source/dialogs.po
+++ b/source/oc/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-16 12:57+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487249853.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Tèxte formatat [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/oc/svtools/source/misc.po b/source/oc/svtools/source/misc.po
index ad66af371b7..6dda6b47f09 100644
--- a/source/oc/svtools/source/misc.po
+++ b/source/oc/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-06-20 10:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 05:22+0000\n"
+"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466417698.000000\n"
+"X-POOTLE-MTIME: 1467696161.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/oc/svx/source/stbctrls.po b/source/oc/svx/source/stbctrls.po
index fdfcd14c9ed..2f46a26f7b4 100644
--- a/source/oc/svx/source/stbctrls.po
+++ b/source/oc/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 18:56+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-11-11 11:03+0000\n"
+"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449860183.000000\n"
+"X-POOTLE-MTIME: 1447239789.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Adaptar la diapositiva a la fenèstra activa"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/oc/svx/uiconfig/ui.po b/source/oc/svx/uiconfig/ui.po
index 17ad45657ee..f64a50d90d5 100644
--- a/source/oc/svx/uiconfig/ui.po
+++ b/source/oc/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-24 08:41+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487925676.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5061,16 +5061,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Sortir"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/om/cui/uiconfig/ui.po b/source/om/cui/uiconfig/ui.po
index 49c843b42be..9f41662c2c3 100644
--- a/source/om/cui/uiconfig/ui.po
+++ b/source/om/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476801391.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/om/helpcontent2/source/text/scalc/01.po b/source/om/helpcontent2/source/text/scalc/01.po
index df6fd51d54b..c8c0a3230da 100644
--- a/source/om/helpcontent2/source/text/scalc/01.po
+++ b/source/om/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 18:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "Faankishinii"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/shared/optionen.po b/source/om/helpcontent2/source/text/shared/optionen.po
index 4f46ca8efe3..0dfdecea179 100644
--- a/source/om/helpcontent2/source/text/shared/optionen.po
+++ b/source/om/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 16:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2452,7 +2452,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/om/sfx2/source/dialog.po b/source/om/sfx2/source/dialog.po
index f5b06026426..80b3cca000c 100644
--- a/source/om/sfx2/source/dialog.po
+++ b/source/om/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 01:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -732,6 +732,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Sadarkaawaa"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/om/sfx2/uiconfig/ui.po b/source/om/sfx2/uiconfig/ui.po
index bfded52649a..6e626850b1c 100644
--- a/source/om/sfx2/uiconfig/ui.po
+++ b/source/om/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 05:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467695956.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467695955.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/om/svtools/source/dialogs.po b/source/om/svtools/source/dialogs.po
index ba9f2486040..711fcb551d4 100644
--- a/source/om/svtools/source/dialogs.po
+++ b/source/om/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 19:49+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 19:11+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385495399.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861063.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Barruu dhangi'ame [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/om/svtools/source/misc.po b/source/om/svtools/source/misc.po
index 1060c315111..cb3be585222 100644
--- a/source/om/svtools/source/misc.po
+++ b/source/om/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-23 21:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464038527.000000\n"
+"X-POOTLE-MTIME: 1464038525.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3915,6 +3915,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/om/svx/source/stbctrls.po b/source/om/svx/source/stbctrls.po
index 702e6989b9a..4948f020dee 100644
--- a/source/om/svx/source/stbctrls.po
+++ b/source/om/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:14+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 07:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: om\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449861266.000000\n"
+"X-POOTLE-MTIME: 1431501941.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/om/svx/uiconfig/ui.po b/source/om/svx/uiconfig/ui.po
index 742fb9c167c..8ee911127a2 100644
--- a/source/om/svx/uiconfig/ui.po
+++ b/source/om/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-23 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/or/cui/uiconfig/ui.po b/source/or/cui/uiconfig/ui.po
index 588cf81ae73..06af03dc969 100644
--- a/source/or/cui/uiconfig/ui.po
+++ b/source/or/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476801649.000000\n"
#: aboutconfigdialog.ui
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME ଟି ଆଧୁନିକ, ବ୍ୟବହାର ଉପଯୋଗୀ, ମୁକ୍ତ ଉତ୍ସ ଶବ୍ଦ ପରିଚାଳକ, ସ୍ପ୍ରେଡସିଟ, ଉପସ୍ଥାପନା ଏବଂ ଅଧିକ ପାଇଁ ଉତ୍ପାଦକ ଅଟେ।"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "ସ୍ୱତ୍ୱାଧିକାର © 2000 - 2014 LibreOffice ଅବଦାନକାରୀମାନେ।"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/or/sfx2/source/dialog.po b/source/or/sfx2/source/dialog.po
index c372c058600..dc4d8e7e839 100644
--- a/source/or/sfx2/source/dialog.po
+++ b/source/or/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 21:30+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-11 21:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
"Language: or\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457731835.000000\n"
+"X-POOTLE-MTIME: 1457731785.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ଶ୍ରେଣୀବଦ୍ଧ"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/or/sfx2/uiconfig/ui.po b/source/or/sfx2/uiconfig/ui.po
index ab519fa67ab..14b01843197 100644
--- a/source/or/sfx2/uiconfig/ui.po
+++ b/source/or/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 05:49+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 05:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: or\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467697742.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467697712.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -806,7 +806,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/or/svtools/source/dialogs.po b/source/or/svtools/source/dialogs.po
index 6b6158fbc0a..0c4a1f1cf13 100644
--- a/source/or/svtools/source/dialogs.po
+++ b/source/or/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-05-13 07:54+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-09-04 07:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
"Language: or\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431503640.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1441351293.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "ଫର୍ମାଟହୋଇଥିବା ଟେକ୍ସଟ (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/or/svtools/source/misc.po b/source/or/svtools/source/misc.po
index f930460a657..5fa8dbd5f13 100644
--- a/source/or/svtools/source/misc.po
+++ b/source/or/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-23 22:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464041233.000000\n"
+"X-POOTLE-MTIME: 1464041231.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3894,6 +3894,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/or/svx/source/stbctrls.po b/source/or/svx/source/stbctrls.po
index 9cb4aa2f783..3166528bea4 100644
--- a/source/or/svx/source/stbctrls.po
+++ b/source/or/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 07:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
"Language: or\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449860548.000000\n"
+"X-POOTLE-MTIME: 1431503801.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/or/svx/uiconfig/ui.po b/source/or/svx/uiconfig/ui.po
index 9ece78dcac1..e72eb4bf914 100644
--- a/source/or/svx/uiconfig/ui.po
+++ b/source/or/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 06:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5087,16 +5087,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/pa-IN/cui/uiconfig/ui.po b/source/pa-IN/cui/uiconfig/ui.po
index 17b355ea1d1..fd17e4e741e 100644
--- a/source/pa-IN/cui/uiconfig/ui.po
+++ b/source/pa-IN/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:43+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: pa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476801811.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476801679.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/pa-IN/sfx2/source/dialog.po b/source/pa-IN/sfx2/source/dialog.po
index 75bec9f8c0d..d1c4d3f6443 100644
--- a/source/pa-IN/sfx2/source/dialog.po
+++ b/source/pa-IN/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-11 21:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457732068.000000\n"
+"X-POOTLE-MTIME: 1457732066.000000\n"
#: dialog.src
msgctxt ""
@@ -721,6 +721,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ਲੜੀਵਾਰ"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/pa-IN/sfx2/uiconfig/ui.po b/source/pa-IN/sfx2/uiconfig/ui.po
index 1cd73767fff..2f2bf69feaa 100644
--- a/source/pa-IN/sfx2/uiconfig/ui.po
+++ b/source/pa-IN/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 06:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467701072.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467701040.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -799,7 +799,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/pa-IN/svtools/source/dialogs.po b/source/pa-IN/svtools/source/dialogs.po
index f7ec3862467..e3af8e77c87 100644
--- a/source/pa-IN/svtools/source/dialogs.po
+++ b/source/pa-IN/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 20:09+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 19:24+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385496574.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861840.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "ਫਾਰਮੈਟ ਪਾਠ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/pa-IN/svtools/source/misc.po b/source/pa-IN/svtools/source/misc.po
index cc246357c10..14cb0c70d29 100644
--- a/source/pa-IN/svtools/source/misc.po
+++ b/source/pa-IN/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-29 15:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pa-IN/svx/source/stbctrls.po b/source/pa-IN/svx/source/stbctrls.po
index 34ec11cd8df..f389c20f483 100644
--- a/source/pa-IN/svx/source/stbctrls.po
+++ b/source/pa-IN/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 08:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pa_IN\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449862081.000000\n"
+"X-POOTLE-MTIME: 1431505846.000000\n"
#: stbctrls.src
msgctxt ""
@@ -151,6 +151,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/pa-IN/svx/uiconfig/ui.po b/source/pa-IN/svx/uiconfig/ui.po
index 57c38b2ec0f..b2dc2e94433 100644
--- a/source/pa-IN/svx/uiconfig/ui.po
+++ b/source/pa-IN/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 22:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5081,16 +5081,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/pl/cui/uiconfig/ui.po b/source/pl/cui/uiconfig/ui.po
index 775a14ca007..afb8921eeef 100644
--- a/source/pl/cui/uiconfig/ui.po
+++ b/source/pl/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-05 07:05+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488697520.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/scalc/01.po b/source/pl/helpcontent2/source/text/scalc/01.po
index c849abdb4fd..a16583b00ac 100644
--- a/source/pl/helpcontent2/source/text/scalc/01.po
+++ b/source/pl/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-27 18:36+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490639818.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/00.po b/source/pl/helpcontent2/source/text/shared/00.po
index 91c7fdbdc75..3d0c3aa91d5 100644
--- a/source/pl/helpcontent2/source/text/shared/00.po
+++ b/source/pl/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-26 06:38+0000\n"
+"PO-Revision-Date: 2017-04-01 15:33+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490510333.000000\n"
+"X-POOTLE-MTIME: 1491060795.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -649,7 +649,7 @@ msgctxt ""
"par_id180820162344398454\n"
"help.text"
msgid "The Content Management Interoperability Services (CMIS) standard defines a domain model and Web Services and Restful AtomPub bindings that will enable greater interoperability of Enterprise Content Management (ECM) systems. CMIS uses Web services and Web 2.0 interfaces to enable rich information to be shared across Internet protocols in vendor-neutral formats, among document systems, publishers and repositories, within one enterprise and between companies."
-msgstr ""
+msgstr "Standard usługi CMIS (Content Management Interoperability Services) definiuje model domeny oraz powiązania usługi Web Services i Restful AtomPub, które umożliwią większą interoperacyjność systemów ECM (Enterprise Content Management). CMIS korzysta z usług sieci Web i interfejsów Web 2.0, aby umożliwić udostępnianie informacji wszystkim protokołom internetowym w niezależnych od dostawców formatach, między systemami dokumentów, wydawcami i repozytoriami w obrębie jednego przedsiębiorstwa i pomiędzy firmami."
#: 00000002.xhp
msgctxt ""
@@ -665,7 +665,7 @@ msgctxt ""
"par_id180820162344394243\n"
"help.text"
msgid "Short for Web-based Distributed Authoring and Versioning, an IETF standard set of platform-independent extensions to HTTP that allows users to collaboratively edit and manage files on remote Web servers. WebDAV features XML properties on metadata, locking - which prevents authors from overwriting each other's changes - namespace manipulation and remote file management. WebDav is sometimes referred to as DAV."
-msgstr ""
+msgstr "Standardowy zestaw niezależnych od platformy rozszerzeń protokołu HTTP, który umożliwia użytkownikom współużytkowanie plików i zarządzanie nimi na zdalnych serwerach sieci Web. WebDAV z pomocą metadanych oferuje taką funkcjonalność jak, blokowanie - co zapobiega wzajemnemu nadpisywaniu zmian różnych autorów - manipulację obszarami i zdalne zarządzanie plikami. WebDAV jest także czasami określany jako DAV."
#: 00000002.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/01.po b/source/pl/helpcontent2/source/text/shared/01.po
index ef8ce837537..973179b2f0b 100644
--- a/source/pl/helpcontent2/source/text/shared/01.po
+++ b/source/pl/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-26 10:40+0000\n"
+"PO-Revision-Date: 2017-04-02 06:59+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490524835.000000\n"
+"X-POOTLE-MTIME: 1491116347.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -5084,7 +5084,7 @@ msgctxt ""
"hd_id3154381\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nazwa"
#: 01140000.xhp
msgctxt ""
@@ -5100,7 +5100,7 @@ msgctxt ""
"hd_id3156153\n"
"help.text"
msgid "Status"
-msgstr ""
+msgstr "Status"
#: 01140000.xhp
msgctxt ""
@@ -5132,7 +5132,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Lokalizacja"
#: 01140000.xhp
msgctxt ""
@@ -5196,7 +5196,7 @@ msgctxt ""
"par_id201612110239454950\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opens the <emph>Printer Options</emph> dialog where you can override the global printer options set on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Print</emph> panel for the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/options\">Otwiera okno dialogowe <emph>Ustawienia drukarki</emph>, w którym można zastąpić globalne opcje drukarki ustawione w <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencje</emph></caseinline><defaultinline><emph>Narzędzia - Opcje</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Drukowanie</emph> dla bieżącego dokumentu.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -5534,7 +5534,7 @@ msgctxt ""
"par_id3151299\n"
"help.text"
msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> This command does not exist on Mac OS X systems."
-msgstr ""
+msgstr "<ahelp hid=\".\">Zamyka wszystkie aplikacje $[officename] i sugeruje, aby zapisać dokonane zmiany.</ahelp> To polecenie nie istnieje w systemach Mac OS X."
#: 01170000.xhp
msgctxt ""
@@ -6774,7 +6774,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "Search options are listed under the <emph>Find</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "Opcje wyszukiwania są wyświetlane w polu <emph>Znajdź</emph> i w obszarze <emph>Inne opcje</emph> okna dialogowego."
#: 02100000.xhp
msgctxt ""
@@ -6871,7 +6871,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "Replacement options are listed are listed under the <emph>Find</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "Opcje zastępowania są wyświetlane w polu <emph>Znajdź</emph> i w obszarze <emph>Inne opcje</emph> okna dialogowego."
#: 02100000.xhp
msgctxt ""
@@ -14343,7 +14343,7 @@ msgctxt ""
"par_id083120160609088310\n"
"help.text"
msgid "<image id=\"img_id083120160608495768\" src=\"media/screenshots/cui/ui/charnamepage/CharNamePage.png\" width=\"9.0417in\" height=\"6.9791in\"><alt id=\"alt_id083120160608495768\">Font dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160608495768\" src=\"media/screenshots/cui/ui/charnamepage/CharNamePage.png\" width=\"9.0417in\" height=\"6.9791in\"><alt id=\"alt_id083120160608495768\">Okno dialogowe czcionki</alt></image>"
#: 05020100.xhp
msgctxt ""
@@ -15135,7 +15135,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">With fraction format, enter the number of places for the denominator that you want to display.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">W postaci ułamka, wprowadź liczbę miejsc dla dzielnika do wyświetlenia.</ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -15305,7 +15305,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>: <link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">custom format codes</link> defined by user."
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Kody formatu liczb</link>: <link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">niestandardowe kody formatów</link> zdefiniowane przez użytkownika."
#: 05020301.xhp
msgctxt ""
@@ -15321,7 +15321,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>format codes; numbers</bookmark_value> <bookmark_value>conditions; in number formats</bookmark_value> <bookmark_value>number formats; codes</bookmark_value> <bookmark_value>currency formats</bookmark_value> <bookmark_value>formats;of currencies/date/time</bookmark_value> <bookmark_value>numbers; date, time and currency formats</bookmark_value> <bookmark_value>Euro; currency formats</bookmark_value> <bookmark_value>date formats</bookmark_value> <bookmark_value>times, formats</bookmark_value> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>kody formatu; liczby</bookmark_value> <bookmark_value>warunki; w formatach liczb</bookmark_value> <bookmark_value>formaty liczb; kody</bookmark_value> <bookmark_value>formaty walut</bookmark_value> <bookmark_value>formaty walut/daty/czasu</bookmark_value> <bookmark_value>liczby; formaty daty, czasu i walut</bookmark_value> <bookmark_value>Euro; formaty walut</bookmark_value> <bookmark_value>formaty daty</bookmark_value> <bookmark_value>czas, formaty</bookmark_value> <bookmark_value>procenty, formaty</bookmark_value> <bookmark_value>zapis naukowy, formaty</bookmark_value> <bookmark_value>notacja inżynierska, formaty</bookmark_value> <bookmark_value>ułamek, formaty</bookmark_value>"
#: 05020301.xhp
msgctxt ""
@@ -15369,7 +15369,7 @@ msgctxt ""
"par_id3155070\n"
"help.text"
msgid "Fourth section applies if the content is not a value, but some text. Content is represented by an at sign (@)."
-msgstr ""
+msgstr "Sekcja czwarta ma zastosowanie, jeśli treść nie jest wartością, ale tekstem. Treść jest oznaczona znakiem małpki (@)."
#: 05020301.xhp
msgctxt ""
@@ -15417,7 +15417,7 @@ msgctxt ""
"par_id3157896\n"
"help.text"
msgid "Explanation"
-msgstr ""
+msgstr "Wyjaśnienie"
#: 05020301.xhp
msgctxt ""
@@ -15481,7 +15481,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "Number Format"
-msgstr ""
+msgstr "Format liczby"
#: 05020301.xhp
msgctxt ""
@@ -15609,7 +15609,7 @@ msgctxt ""
"par_id3154905\n"
"help.text"
msgid "Number Format"
-msgstr ""
+msgstr "Format liczby"
#: 05020301.xhp
msgctxt ""
@@ -15729,7 +15729,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "will display integer value (0) preceded by as many as needed backslash characters (\\) to fill column width. For accounting representation, you may left align currency symbol with a format similar to:"
-msgstr ""
+msgstr "wyświetli liczbę całkowitą (0), i jeśli potrzeba, poprzedzoną wieloma znakami odwróconego ukośnika (\\), aby wypełnić szerokość kolumny. W przypadku reprezentacji księgowej można wyrównać symbol waluty w formacie podobnym do:"
#: 05020301.xhp
msgctxt ""
@@ -15905,7 +15905,7 @@ msgctxt ""
"hd_id3149260\n"
"help.text"
msgid "Percentages, Scientific Notation and Fraction Representation"
-msgstr ""
+msgstr "Procenty, zapis naukowy i reprezentacja ułamków"
#: 05020301.xhp
msgctxt ""
@@ -15945,7 +15945,7 @@ msgctxt ""
"hd_id3156006\n"
"help.text"
msgid "Fraction Representation"
-msgstr ""
+msgstr "Reprezentacja ułamków"
#: 05020301.xhp
msgctxt ""
@@ -15953,7 +15953,7 @@ msgctxt ""
"par_id3146924\n"
"help.text"
msgid "To represent a value as a fraction, format consists of two or three parts: integer optional part, numerator and denominator. Integer and numerator are separated by a blank or any quoted text. Numerator and denominator are separated by a slash character. Each part can consist of a combination of #, ? and 0 as placeholders."
-msgstr ""
+msgstr "Aby zaprezentować wartość jako ułamek, format składa się z dwóch lub trzech części: całkowitej części opcjonalnej, licznika i mianownika. Liczba całkowita i licznik są oddzielone pustym miejscem lub cytowanym tekstem. Licznik i mianownik są oddzielone znakiem ukośnika. Każda część może składać się z kombinacji #, ? i zera (0) jako symbolu zastępczego."
#: 05020301.xhp
msgctxt ""
@@ -15961,7 +15961,7 @@ msgctxt ""
"par_id3146925\n"
"help.text"
msgid "Denominator is calculated to get the nearest value of the fraction with repsect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:"
-msgstr ""
+msgstr "Mianownik jest obliczany w celu uzyskania najbliższej wartości ułamka w odniesieniu do liczby zastępczych. Na przykład wartość liczby PI jest reprezentowana jako 3 16/113 z formatem:"
#: 05020301.xhp
msgctxt ""
@@ -17105,7 +17105,7 @@ msgctxt ""
"par_id3148909\n"
"help.text"
msgid "Date&Time + Number"
-msgstr ""
+msgstr "Data i godzina + liczba"
#: 05020301.xhp
msgctxt ""
@@ -17113,7 +17113,7 @@ msgctxt ""
"par_id3154806\n"
"help.text"
msgid "Date&Time"
-msgstr ""
+msgstr "Data i godzina"
#: 05020301.xhp
msgctxt ""
@@ -17121,7 +17121,7 @@ msgctxt ""
"par_id3151269\n"
"help.text"
msgid "Number + Number"
-msgstr ""
+msgstr "Liczba + liczba"
#: 05020301.xhp
msgctxt ""
@@ -17337,7 +17337,7 @@ msgctxt ""
"par_id3148650\n"
"help.text"
msgid "Minute time formats M and MM must be used in combination with hour or second time formats to avoid confusion with month date format."
-msgstr ""
+msgstr "Minutowe formaty czasu M oraz MM muszą być używane w połączeniu z formatami godzin lub sekund, aby uniknąć nieporozumień z formatem daty miesiąca."
#: 05020301.xhp
msgctxt ""
@@ -17409,7 +17409,7 @@ msgctxt ""
"par_id1508201614491484\n"
"help.text"
msgid "Try to convert any native number string to ASCII Arabic digits. If already ASCII, it remains ASCII."
-msgstr ""
+msgstr "Spróbuj przekonwertować dowolny macierzysty ciąg liczb na cyfry arabskie w formacie ASCII. Jeśli ciąg już wcześniej był sformatowane w ASCII, nic się nie zmienia."
#: 05020301.xhp
msgctxt ""
@@ -17497,7 +17497,7 @@ msgctxt ""
"par_id130820161753311497\n"
"help.text"
msgid "Hebrew characters"
-msgstr "hebrajskie znaki"
+msgstr "znaki hebrajskie"
#: 05020301.xhp
msgctxt ""
@@ -17513,7 +17513,7 @@ msgctxt ""
"par_id130820161753306722\n"
"help.text"
msgid "Arabic-Indic characters"
-msgstr "Arabsko-indyjskie znaki"
+msgstr "znaki arabsko-indyjskie"
#: 05020301.xhp
msgctxt ""
@@ -17529,7 +17529,7 @@ msgctxt ""
"par_id130820161753301107\n"
"help.text"
msgid "Thai characters"
-msgstr "tajskie znaki"
+msgstr "znaki tajskie"
#: 05020301.xhp
msgctxt ""
@@ -17545,7 +17545,7 @@ msgctxt ""
"par_id130820161753306723\n"
"help.text"
msgid "Indic-Devanagari characters"
-msgstr "indyjsko-dewanagarskie znaki"
+msgstr "znaki indyjsko-dewanagarskie"
#: 05020301.xhp
msgctxt ""
@@ -17561,7 +17561,7 @@ msgctxt ""
"par_id130820161753301434\n"
"help.text"
msgid "Odia (Oriya) characters"
-msgstr "orijskie znaki"
+msgstr "znaki orijskie"
#: 05020301.xhp
msgctxt ""
@@ -17577,7 +17577,7 @@ msgctxt ""
"par_id180820161926248586\n"
"help.text"
msgid "Indic-Devanagari characters"
-msgstr "indyjsko-dewanagarskie znaki"
+msgstr "znaki indyjsko-dewanagarskie"
#: 05020301.xhp
msgctxt ""
@@ -17593,7 +17593,7 @@ msgctxt ""
"par_id180820161926246091\n"
"help.text"
msgid "Bengali characters"
-msgstr "bengalskie znaki"
+msgstr "znaki bengalskie"
#: 05020301.xhp
msgctxt ""
@@ -17609,7 +17609,7 @@ msgctxt ""
"par_id180820161926257295\n"
"help.text"
msgid "Punjabi (Gurmukhi) characters"
-msgstr "pendżabskie znaki"
+msgstr "znaki pendżabskie"
#: 05020301.xhp
msgctxt ""
@@ -17641,7 +17641,7 @@ msgctxt ""
"par_id180820161926253837\n"
"help.text"
msgid "Tamil characters"
-msgstr "tamilskie znaki"
+msgstr "znaki tamilskie"
#: 05020301.xhp
msgctxt ""
@@ -17745,7 +17745,7 @@ msgctxt ""
"par_id180820161926273825\n"
"help.text"
msgid "Khmer"
-msgstr ""
+msgstr "Khmerski"
#: 05020301.xhp
msgctxt ""
@@ -17753,7 +17753,7 @@ msgctxt ""
"par_id180820161926273240\n"
"help.text"
msgid "Khmer (Cambodian) characters"
-msgstr ""
+msgstr "znaki khmerskie (kambodżańskie)"
#: 05020301.xhp
msgctxt ""
@@ -17761,7 +17761,7 @@ msgctxt ""
"par_id18082016192627382\n"
"help.text"
msgid "Mongolian"
-msgstr ""
+msgstr "Mongolski"
#: 05020301.xhp
msgctxt ""
@@ -17769,7 +17769,7 @@ msgctxt ""
"par_id180820161926276923\n"
"help.text"
msgid "Mongolian characters"
-msgstr ""
+msgstr "znaki mongolskie"
#: 05020301.xhp
msgctxt ""
@@ -17777,7 +17777,7 @@ msgctxt ""
"par_id180820161926273435\n"
"help.text"
msgid "Nepali"
-msgstr ""
+msgstr "Nepalski"
#: 05020301.xhp
msgctxt ""
@@ -17785,7 +17785,7 @@ msgctxt ""
"par_id180820161926274450\n"
"help.text"
msgid "Indic-Devanagari characters"
-msgstr ""
+msgstr "znaki indyjsko-dewanagarskie"
#: 05020301.xhp
msgctxt ""
@@ -17793,7 +17793,7 @@ msgctxt ""
"par_id180820161926279875\n"
"help.text"
msgid "Dzongkha"
-msgstr ""
+msgstr "Dzongkha"
#: 05020301.xhp
msgctxt ""
@@ -17801,7 +17801,7 @@ msgctxt ""
"par_id180820161926276833\n"
"help.text"
msgid "Tibetan characters"
-msgstr ""
+msgstr "znaki tybetańskie"
#: 05020301.xhp
msgctxt ""
@@ -17809,7 +17809,7 @@ msgctxt ""
"par_id180820161926272903\n"
"help.text"
msgid "Farsi"
-msgstr ""
+msgstr "Perski"
#: 05020301.xhp
msgctxt ""
@@ -17817,7 +17817,7 @@ msgctxt ""
"par_id180820161926271122\n"
"help.text"
msgid "East Arabic-Indic characters"
-msgstr ""
+msgstr "znaki arabsko-indyjskie wschodnie"
#: 05020301.xhp
msgctxt ""
@@ -17825,7 +17825,7 @@ msgctxt ""
"par_id180820161926287716\n"
"help.text"
msgid "Church Slavic"
-msgstr ""
+msgstr "Cerkiewnosłowiański"
#: 05020301.xhp
msgctxt ""
@@ -17833,7 +17833,7 @@ msgctxt ""
"par_id180820161926281396\n"
"help.text"
msgid "Cyrillic characters"
-msgstr "Znaki z cyrylicy"
+msgstr "znaki z cyrylicy"
#: 05020301.xhp
msgctxt ""
@@ -17889,7 +17889,7 @@ msgctxt ""
"par_id130820161753311215\n"
"help.text"
msgid "traditional Kanji characters"
-msgstr ""
+msgstr "tradycyjne znaki Kanji"
#: 05020301.xhp
msgctxt ""
@@ -17913,7 +17913,7 @@ msgctxt ""
"par_id180820161926289664\n"
"help.text"
msgid "Hebrew"
-msgstr ""
+msgstr "Hebrajski"
#: 05020301.xhp
msgctxt ""
@@ -17921,7 +17921,7 @@ msgctxt ""
"par_id180820161926288708\n"
"help.text"
msgid "Hebrew numbering"
-msgstr ""
+msgstr "numeracja hebrajska"
#: 05020301.xhp
msgctxt ""
@@ -17969,7 +17969,7 @@ msgctxt ""
"par_id130820161753325719\n"
"help.text"
msgid "fullwidth Arabic digits"
-msgstr ""
+msgstr "cyfry arabskie o pełnej szerokości"
#: 05020301.xhp
msgctxt ""
@@ -17985,7 +17985,7 @@ msgctxt ""
"par_id130820161753326195\n"
"help.text"
msgid "fullwidth Arabic digits"
-msgstr ""
+msgstr "cyfry arabskie o pełnej szerokości"
#: 05020301.xhp
msgctxt ""
@@ -18001,7 +18001,7 @@ msgctxt ""
"par_id130820161753332046\n"
"help.text"
msgid "fullwidth Arabic digits"
-msgstr ""
+msgstr "cyfry arabskie o pełnej szerokości"
#: 05020301.xhp
msgctxt ""
@@ -18057,7 +18057,7 @@ msgctxt ""
"par_id130820161753332235\n"
"help.text"
msgid "modern long Kanji text"
-msgstr ""
+msgstr "współczesny długi tekst Kanji"
#: 05020301.xhp
msgctxt ""
@@ -18073,7 +18073,7 @@ msgctxt ""
"par_id130820161753349817\n"
"help.text"
msgid "formal lower case text"
-msgstr ""
+msgstr "oficjalny tekst małymi literami"
#: 05020301.xhp
msgctxt ""
@@ -18265,7 +18265,7 @@ msgctxt ""
"par_id150820161449154907\n"
"help.text"
msgid "short lower case text"
-msgstr ""
+msgstr "krótki tekst małymi literami"
#: 05020301.xhp
msgctxt ""
@@ -18281,7 +18281,7 @@ msgctxt ""
"par_id130820161753368507\n"
"help.text"
msgid "modern short Kanji text"
-msgstr ""
+msgstr "współczesny krótki tekst Kanji"
#: 05020301.xhp
msgctxt ""
@@ -18337,7 +18337,7 @@ msgctxt ""
"par_id150820161449151367\n"
"help.text"
msgid "short upper case text"
-msgstr ""
+msgstr "krótki tekst dużymi literami"
#: 05020301.xhp
msgctxt ""
@@ -18353,7 +18353,7 @@ msgctxt ""
"par_id130820161753366963\n"
"help.text"
msgid "traditional short Kanji text"
-msgstr ""
+msgstr "tradycyjny krótki tekst Kanji"
#: 05020301.xhp
msgctxt ""
@@ -18409,7 +18409,7 @@ msgctxt ""
"par_id130820161753375541\n"
"help.text"
msgid "Hangul characters"
-msgstr ""
+msgstr "znaki hangul"
#: 05020301.xhp
msgctxt ""
@@ -18449,7 +18449,7 @@ msgctxt ""
"par_id130820161753375766\n"
"help.text"
msgid "formal Hangul text"
-msgstr ""
+msgstr "oficjalny tekst hangul"
#: 05020301.xhp
msgctxt ""
@@ -18489,7 +18489,7 @@ msgctxt ""
"par_id13082016175338684\n"
"help.text"
msgid "informal Hangul text"
-msgstr ""
+msgstr "nieoficjalny tekst hangul"
#: 05020400.xhp
msgctxt ""
@@ -21594,7 +21594,7 @@ msgctxt ""
"par_id090120160133439102\n"
"help.text"
msgid "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\" width=\"8.6457in\" height=\"5.9063in\"><alt id=\"alt_id090120160131201466\">Page format tab page</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\" width=\"8.6457in\" height=\"5.9063in\"><alt id=\"alt_id090120160131201466\">Karta formatowania strony</alt></image>"
#: 05040200.xhp
msgctxt ""
@@ -23118,7 +23118,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Style"
#: 05060000.xhp
msgctxt ""
@@ -25971,7 +25971,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern."
-msgstr ""
+msgstr "Wyświetla listę dostępnych wzorców kreskowań. Można także modyfikować lub tworzyć własne schematy kreskowań."
#: 05210400.xhp
msgctxt ""
@@ -28377,7 +28377,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/dockingfontwork/hori\">Horizontally slants the characters in the text object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/dockingfontwork/hori\">Pochyla znaki w obiekcie tekstowym w kierunku poziomym.</ahelp>"
#: 05280000.xhp
msgctxt ""
@@ -28403,7 +28403,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/dockingfontwork/vert\">Vertically slants the characters in the text object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/dockingfontwork/vert\">Pochyla znaki w obiekcie tekstowym w kierunku pionowym.</ahelp>"
#: 05280000.xhp
msgctxt ""
@@ -31147,7 +31147,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/invertnormals\">Inverts the light source.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/invertnormals\">Odwraca źródło światła.</ahelp>"
#: 05350200.xhp
msgctxt ""
@@ -42197,7 +42197,7 @@ msgctxt ""
"par_id190920161744065146\n"
"help.text"
msgid "By default, %PRODUCTNAME commands are grouped in cascading menus and in toolbars filled with icons."
-msgstr ""
+msgstr "Domyślnie polecenia %PRODUCTNAME są pogrupowane w kaskadowych menu i w paskach narzędziowych wypełnionych ikonami."
#: notebook_bar.xhp
msgctxt ""
@@ -42205,7 +42205,7 @@ msgctxt ""
"par_id190920161744061691\n"
"help.text"
msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents."
-msgstr ""
+msgstr "Układ notebook przedstawia inny sposób organizowania elementów sterujących i ikon niż zbiór prostych wierszy ikon, wyświetlając kontekstowe grupy poleceń i ich zawartość."
#: notebook_bar.xhp
msgctxt ""
@@ -42213,7 +42213,7 @@ msgctxt ""
"par_id190920161744064258\n"
"help.text"
msgid "With the notebook bar, frequently used commands are grouped in an arrangement that will make it quicker to access, avoiding lengthy menu navigation and toolbars command icon lookup."
-msgstr ""
+msgstr "W układzie interfejsu notebook, często używane komendy są pogrupowane w układ, który przyspiesza dostęp do narzędzi, unikając przydługich nawigacji menu i przeglądania ikon poleceń pasków narzędzi."
#: notebook_bar.xhp
msgctxt ""
@@ -42221,7 +42221,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the <item type=\"menuitem\">View</item> menu controls the notebook bar: <item type=\"menuitem\">Toolbar Layout</item> and <item type=\"menuitem\">Notebook bar</item>."
-msgstr ""
+msgstr "Układ notebook jest dostępny we Writerze, Calcu oraz Impressie i stanowi jeden z wielu wariantów interfejsu. W menu <item type=\"menuitem\">Widok</item> znajdują się wpisy: <item type=\"menuitem\">Układ paska narzędzi</item> oraz <item type=\"menuitem\">Notebook</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42229,7 +42229,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - Toolbar layout - Notebook bar</item>"
-msgstr ""
+msgstr "Wybierz menu <item type=\"menuitem\">Widok - Układ paska narzędzi - Notebook</item>"
#: notebook_bar.xhp
msgctxt ""
@@ -42237,7 +42237,7 @@ msgctxt ""
"hd_id190920161911374012\n"
"help.text"
msgid "User interface layouts"
-msgstr ""
+msgstr "Układy interfejsu użytkownika"
#: notebook_bar.xhp
msgctxt ""
@@ -42245,7 +42245,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The Toolbar Layout entry defines which user interface elements are visible. The available layouts are:"
-msgstr ""
+msgstr "Wpis paska narzędzi definiuje, które elementy interfejsu użytkownika są widoczne. Dostępne układy są następujące:"
#: notebook_bar.xhp
msgctxt ""
@@ -42253,7 +42253,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Default</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>Domyślny</emph> - tryb klasyczny z dwoma widocznymi paskami narzędzi - standardowym oraz z paskiem formatowania. Panel boczny jest częściowo zwinięty, widoczne są tylko jego karty."
#: notebook_bar.xhp
msgctxt ""
@@ -42261,7 +42261,7 @@ msgctxt ""
"par_id190920161744061192\n"
"help.text"
msgid "<emph>Single toolbar</emph> – one toolbar with all frequently used features. The sidebar is collapsed."
-msgstr ""
+msgstr "<emph>Pojedynczy pasek narzędzi</emph> - jeden pasek narzędzi z najczęściej używanymi funkcjami. Panel boczny jest zwinięty."
#: notebook_bar.xhp
msgctxt ""
@@ -42269,7 +42269,7 @@ msgctxt ""
"par_id190920161744069136\n"
"help.text"
msgid "<emph>Sidebar</emph> – The sidebar is fully opened and only one toolbar is showed – formatting toolbar."
-msgstr ""
+msgstr "<emph>Panel boczny</emph> - panel boczny jest w pełni otwarty i tylko jeden pasek narzędziowy jest widoczny. Jest to pasek formatowania."
#: notebook_bar.xhp
msgctxt ""
@@ -42277,7 +42277,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "<emph>Notebook bar</emph> – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: <item type=\"menuitem\">View </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Notebook bar</item> is active only in this mode and user can then choose the notebook bar layout."
-msgstr ""
+msgstr "<emph>Notebook</emph> - wszystkie paski narzędziowe oraz panel boczny są ukryte, a pasek notebook jest umieszczony na górze. Użytkownik może zmienić układ paska w menu <item type=\"menuitem\">Widok</item><item type=\"menuitem\"> - </item><item type=\"menuitem\">Notebook</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42285,7 +42285,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Gdy użytkownik aktywuje dodatkowe paski narzędzi, zostaną one zapisane w profilu użytkownika. Dlatego po powrocie do trybu paska notebooka, wszystkie widoczne wcześniej paski narzędziowe zostaną ponownie wyświetlone."
#: notebook_bar.xhp
msgctxt ""
@@ -42293,7 +42293,7 @@ msgctxt ""
"hd_id190920161744069618\n"
"help.text"
msgid "Available Notebook bar modes"
-msgstr ""
+msgstr "Dostępne tryby paska Notebook"
#: notebook_bar.xhp
msgctxt ""
@@ -42301,7 +42301,7 @@ msgctxt ""
"par_id190920161744069064\n"
"help.text"
msgid "<emph>Tabbed</emph> – In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image."
-msgstr ""
+msgstr "<emph>W kartach</emph> - w tym trybie pasek jest podzielony na karty, w których każda karta wyświetla zestaw ikon pogrupowanych według kontekstu. Kontekst może również zmieniać się w zależności od obiektu wybranego w dokumencie, na przykład tabeli lub obrazu."
#: notebook_bar.xhp
msgctxt ""
@@ -42309,7 +42309,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the %PRODUCTNAME icon on the top left position of the window and choose <item type=\"menuitem\">Menubar</item>."
-msgstr ""
+msgstr "W trybie kartowanym pasek menu jest domyślnie ukryty. Aby wyświetlić pasek menu, wybierz ikonę %PRODUCTNAME w lewym górnym rogu okna i wybierz <item type=\"menuitem\">pasek Menu</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42317,7 +42317,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>Grupy kontekstowe</emph> - pasek notebooka podzielony jest na 4 grupy. Grupy pliku, schowka i formatowania są stałe. Zawartość grupy wstawiania jest zastępowana poleceniami zależnymi od charakteru wybranego obiektu w dokumencie, podobnie jak w przypadku tabeli, obrazu lub obiektu OLE."
#: notebook_bar.xhp
msgctxt ""
@@ -42325,7 +42325,7 @@ msgctxt ""
"par_id190920161744063712\n"
"help.text"
msgid "<emph>Contextual single toolbar</emph> – Displays a single centered toolbar with context dependent contents."
-msgstr ""
+msgstr "<emph>Pojedynczy kontekst</emph>- wyświetla pojedynczy, wyśrodkowany pasek narzędziowy, zawierający treści zależne od kontekstu."
#: notebook_bar.xhp
msgctxt ""
@@ -42333,7 +42333,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
-msgstr ""
+msgstr "Rozmiar ikony paska notebooka jest regulowany w polu listy w <item type=\"menuitem\">Narzędzia - Opcje - LibreOffice - Widok - Notebook</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42341,7 +42341,7 @@ msgctxt ""
"par_id190920161744074862\n"
"help.text"
msgid "The notebook bar cannot be customized."
-msgstr ""
+msgstr "Pasek notebooka nie może być dostosowany do potrzeb użytkownika."
#: notebook_bar.xhp
msgctxt ""
@@ -42349,7 +42349,7 @@ msgctxt ""
"par_id190920161744078275\n"
"help.text"
msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules."
-msgstr ""
+msgstr "Bieżąca implementacja (%PRODUCTNAME %PRODUCTVERSION) paska notebooka jest wspólna dla modułów Writer, Calc i Impress. Zmiana paska notebooka w jednym module wpływa na pasek notebooka innych modułów."
#: notebook_bar.xhp
msgctxt ""
@@ -42357,7 +42357,7 @@ msgctxt ""
"par_id190920161744072842\n"
"help.text"
msgid "<link href=\"text/shared/guide/floating_toolbar.xhp\">Toolbars</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/floating_toolbar.xhp\">Paski narzędziowe</link>"
#: online_update.xhp
msgctxt ""
@@ -43252,7 +43252,7 @@ msgctxt ""
"par_id281120160939285779\n"
"help.text"
msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tryb awaryjny to tryb, w którym %PRODUCTNAME tymczasowo uruchamia się z nowym profilem użytkownika i wyłącza przyspieszenie sprzętowe. Pomaga przywrócić niesprawną instancję %PRODUCTNAME.</ahelp>"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43260,7 +43260,7 @@ msgctxt ""
"par_id281120163153357\n"
"help.text"
msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
-msgstr ""
+msgstr "Wybierz <emph>Pomoc - Uruchom w trybie awaryjnym...</emph>"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43268,7 +43268,7 @@ msgctxt ""
"par_id281120163154362\n"
"help.text"
msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
-msgstr ""
+msgstr "Uruchom %PRODUCTNAME z linii poleceń z opcją <emph>--safe-mode</emph>"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43276,7 +43276,7 @@ msgctxt ""
"par_id281120163154363\n"
"help.text"
msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
-msgstr ""
+msgstr "Uruchom %PRODUCTNAME z menu start <emph>%PRODUCTNAME (Tryb awaryjny)</emph> (tylko Windows)"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43284,7 +43284,7 @@ msgctxt ""
"hd_id281120163149549\n"
"help.text"
msgid "What can I do in safe mode?"
-msgstr ""
+msgstr "Co można zrobić w trybie awaryjnym?"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43292,7 +43292,7 @@ msgctxt ""
"par_id281120160939281728\n"
"help.text"
msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
-msgstr ""
+msgstr "W trybie awaryjnym zostanie wyświetlone okno dialogowe oferujące trzy opcje przywracania profilu użytkownika"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43300,7 +43300,7 @@ msgctxt ""
"hd_id281120163149551\n"
"help.text"
msgid "Continue in Safe Mode"
-msgstr ""
+msgstr "Kontynuuj w trybie awaryjnym"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43308,7 +43308,7 @@ msgctxt ""
"par_id281120160944279896\n"
"help.text"
msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
-msgstr ""
+msgstr "Ta opcja pozwala pracować z %PRODUCTNAME tak, jak przyzwyczaił się do tego użytkownik, ale używając tymczasowego profilu użytkownika. Oznacza to również, że wszystkie zmiany konfiguracyjne dokonane w profilu tymczasowego użytkownika zostaną utracone po ponownym uruchomieniu."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43316,7 +43316,7 @@ msgctxt ""
"hd_id281120163149552\n"
"help.text"
msgid "Quit"
-msgstr ""
+msgstr "Wyjdź"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43324,7 +43324,7 @@ msgctxt ""
"par_id281120160944279161\n"
"help.text"
msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
-msgstr ""
+msgstr "Wybranie <emph>Wyjdź</emph> spowoduje wyjście z programu %PRODUCTNAME. Należy użyć tej opcji, jeśli tryb awaryjny został przypadkowo aktywowany."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43332,7 +43332,7 @@ msgctxt ""
"hd_id281120163149543\n"
"help.text"
msgid "Apply Changes and Restart"
-msgstr ""
+msgstr "Zastosuj zmiany i uruchom ponownie"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43340,7 +43340,7 @@ msgctxt ""
"par_id281120160949348926\n"
"help.text"
msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
-msgstr ""
+msgstr "Okno dialogowe umożliwia wielokrotne zmiany profilu użytkownika, które mogą pomóc w przywróceniu %PRODUCTNAME do stanu sprzed awarii. Zaproponowane rozwiązania tworzą listę zmian będącymi najmniej i najbardziej radykalnymi w skutkach. Jest zalecane, aby wypróbowywać je kolejno, jedno po drugim, idąc od góry do dołu. Wybranie tej opcji powoduje zastosowanie wybranych zmian."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43348,7 +43348,7 @@ msgctxt ""
"hd_id281120163149545\n"
"help.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Przywróć z kopii zapasowej"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43356,7 +43356,7 @@ msgctxt ""
"par_id281120160949348884\n"
"help.text"
msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
-msgstr ""
+msgstr "%PRODUCTNAME przechowuje kopie zapasowe poprzednich konfiguracji i aktywnych rozszerzeń. Jeśli problemy mogą być spowodowane niedawnymi zmianami konfiguracji lub rozszerzeń, użyj tej opcji, aby powrócić program do poprzedniego stanu."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43364,7 +43364,7 @@ msgctxt ""
"hd_id281120163149546\n"
"help.text"
msgid "Configure"
-msgstr ""
+msgstr "Konfiguracja"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43372,7 +43372,7 @@ msgctxt ""
"par_id281120160949347119\n"
"help.text"
msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
-msgstr ""
+msgstr "Możesz wyłączyć wszystkie rozszerzenia zainstalowane przez użytkownika. Można także wyłączyć przyspieszenie sprzętowe. Włącz tę opcję, jeśli wystąpią awarie podczas uruchamiania lub wizualne usterki, są one często związane z przyspieszaniem sprzętowym."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43380,7 +43380,7 @@ msgctxt ""
"hd_id281120160944276682\n"
"help.text"
msgid "Uninstall extensions"
-msgstr ""
+msgstr "Usuwanie rozszerzeń"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43388,7 +43388,7 @@ msgctxt ""
"par_id281120160944275137\n"
"help.text"
msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
-msgstr ""
+msgstr "Czasem nie można uruchomić %PRODUCTNAME z powodu zablokowania lub awarii rozszerzeń. Ta opcja umożliwia wyłączenie wszystkich rozszerzeń zainstalowanych przez użytkownika, a także rozszerzeń współdzielonych i tych fabrycznie dostarczanych wraz z pakietem. Odinstalowanie rozszerzeń współdzielonych i fabrycznych powinno być odbywać się z należytą ostrożnością. Operacja ta zadziała wtedy, gdy użytkownik posiada niezbędne prawa dostępu do systemu."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43396,7 +43396,7 @@ msgctxt ""
"hd_id281120160944276687\n"
"help.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Przywróć ustawienia fabryczne"
#: profile_safe_mode.xhp
msgctxt ""
@@ -43404,7 +43404,7 @@ msgctxt ""
"par_id28112016094427792\n"
"help.text"
msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
-msgstr ""
+msgstr "Jeśli wszystko inne się nie powiedzie, można zresetować profil użytkownika do ustawień fabrycznych. Pierwsza opcja <emph>Resetuj ustawienia i modyfikacje użytkownika</emph> resetuje całą konfigurację i zmiany interfejsu użytkownika, ale zachowuje takie rzeczy jak własny słownik, szablony itd. Druga opcja spowoduje zresetowanie całego profilu do stanu po pierwszym zainstalowaniu %PRODUCTNAME."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43412,7 +43412,7 @@ msgctxt ""
"par_id28112016094427243\n"
"help.text"
msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
-msgstr ""
+msgstr "Jeśli nie można rozwiązać problemu przy użyciu trybu awaryjnego, kliknij <emph>Zaawansowane</emph>. Znajdziesz tam instrukcje, jak uzyskać dodatkową pomoc."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43420,7 +43420,7 @@ msgctxt ""
"par_id281120160949347055\n"
"help.text"
msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
-msgstr ""
+msgstr "Jeśli chcesz zgłosić problem z profilem użytkownika, to klikając opcję <emph>Utwórz archiwum Zip z profilu użytkownika</emph> możesz wygenerować plik zip, który może zostać przesłany do systemu śledzenia błędów, gdzie zostanie zbadany przez programistów."
#: profile_safe_mode.xhp
msgctxt ""
@@ -43428,7 +43428,7 @@ msgctxt ""
"par_id281120160949348679\n"
"help.text"
msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
-msgstr ""
+msgstr "Pamiętaj, że przesłany profil może zawierać poufne informacje, takie jak osobisty słownik, ustawienia i zainstalowane rozszerzenia."
#: prop_font_embed.xhp
msgctxt ""
@@ -43462,7 +43462,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Osadza czcionki dokumentu w bieżącym pliku.</ahelp>"
#: prop_font_embed.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/02.po b/source/pl/helpcontent2/source/text/shared/02.po
index b0c38146d84..645995cf2e6 100644
--- a/source/pl/helpcontent2/source/text/shared/02.po
+++ b/source/pl/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-26 11:53+0000\n"
+"PO-Revision-Date: 2017-04-02 07:02+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490529183.000000\n"
+"X-POOTLE-MTIME: 1491116539.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Specifies whether the user's entered or selected combination field value should be saved in a database field.</ahelp> Several database table fields are offered which can be accessed in the current form."
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Określa, czy wartość wprowadzona lub wybrana przez użytkownika powinna być zapisana w polu bazy danych.</ahelp> W bieżącym formularzu są dostępne różne pola tabeli bazy danych."
#: 01170904.xhp
msgctxt ""
@@ -9977,7 +9977,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\">Specifies the data field where the combination field value should be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\">Określa pole danych, w którym ma zostać zapisana wartość pola kombi.</ahelp>"
#: 01170904.xhp
msgctxt ""
@@ -9995,7 +9995,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/noRadiobutton\">Specifies that the value of this combination field will not be written in the database and will only be saved in the form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/noRadiobutton\">Określa, że wartość tego pola kombi nie jest zapisywana w bazie danych, a tylko w formularzu.</ahelp>"
#: 01171000.xhp
msgctxt ""
@@ -10422,7 +10422,7 @@ msgctxt ""
"par_id3155941\n"
"help.text"
msgid "The last five font names that have been selected are shown in the top part of the combo box."
-msgstr ""
+msgstr "Nazwy pięciu ostatnio wybranych czcionek, znajdują się w górnej części pola wyboru."
#: 02020000.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/guide.po b/source/pl/helpcontent2/source/text/shared/guide.po
index 527cd974446..8b135b5f496 100644
--- a/source/pl/helpcontent2/source/text/shared/guide.po
+++ b/source/pl/helpcontent2/source/text/shared/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-26 14:48+0000\n"
+"PO-Revision-Date: 2017-04-03 18:20+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490539725.000000\n"
+"X-POOTLE-MTIME: 1491243619.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2047,7 +2047,7 @@ msgctxt ""
"par_id150820161816033788\n"
"help.text"
msgid "To access remote servers, you must use LibreOffice own Open and Save dialogs. If you currently use your operating system dialogs for saving and opening files, go to <item type=\"menuitem\">Tools > Options > LibreOffice > General</item> and check the option <item type=\"menuitem\">Use %PRODUCTNAME dialogs</item>."
-msgstr ""
+msgstr "Aby uzyskać dostęp do zdalnych serwerów, należy użyć okien dialogowych programu LibreOffice. Jeśli aktualnie używasz okien dialogowych systemu operacyjnego, przejdź do <item type=\"menuitem\">Narzędzia - Opcje - LibreOffice - Ogólne</item> i zaznacz opcję <item type=\"menuitem\">Użyj okien dialogowych programu %PRODUCTNAME</item>."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2055,7 +2055,7 @@ msgctxt ""
"par_id150820161816033744\n"
"help.text"
msgid "To enable a remote server connection, use one of these methods:"
-msgstr ""
+msgstr "Aby umożliwić zdalne połączenie z serwerem, użyj jednej z następujących metod:"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2063,7 +2063,7 @@ msgctxt ""
"par_id150820161816032923\n"
"help.text"
msgid "Click on the Remote Files button in the Start Center."
-msgstr ""
+msgstr "Kliknij przycisk Pliki zdalne na planszy startowej."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2071,7 +2071,7 @@ msgctxt ""
"par_id150820161816031470\n"
"help.text"
msgid "Select <item type=\"menuitem\">File > Open Remote Files...</item>"
-msgstr ""
+msgstr "Zaznacz <item type=\"menuitem\">Plik - Otwórz pliki zdalne...</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2079,7 +2079,7 @@ msgctxt ""
"par_id150820161816037870\n"
"help.text"
msgid "Select <item type=\"menuitem\">File > Save to Remote Server...</item>"
-msgstr ""
+msgstr "Zaznacz <item type=\"menuitem\">Plik - Zapisz na zdalnym serwerze...</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2087,7 +2087,7 @@ msgctxt ""
"par_id150820161816033600\n"
"help.text"
msgid "Then click on the Add Service button in the dialog to open the File Services dialog."
-msgstr ""
+msgstr "Następnie w oknie dialogowym kliknij przycisk Dodaj usługę, aby otworzyć okno Usługi plików."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id150820161816034989\n"
"help.text"
msgid "<variable id=\"introservice\">In the File Services dialog, set:</variable>"
-msgstr ""
+msgstr "<variable id=\"introservice\">W oknie dialogowym Usług plików, ustaw:</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2119,7 +2119,7 @@ msgctxt ""
"par_id150820161816033753\n"
"help.text"
msgid "<emph>Type</emph>: WebDAV"
-msgstr ""
+msgstr "<emph>Typ</emph>: WebDAV"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2127,7 +2127,7 @@ msgctxt ""
"par_id150820161816034500\n"
"help.text"
msgid "<emph>Host</emph>: the server URL, usually in the form <item type=\"literal\">file.service.com</item>"
-msgstr ""
+msgstr "<emph>Host</emph>: adres URL serwera, zwykle w postaci <item type=\"literal\">file.service.com</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2135,7 +2135,7 @@ msgctxt ""
"par_id150820161816037709\n"
"help.text"
msgid "<emph>Port</emph>: port number (usually <item type=\"literal\">80</item>)"
-msgstr ""
+msgstr "<emph>Port</emph>: numer portu (zwykle <item type=\"literal\">80</item>)"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2143,7 +2143,7 @@ msgctxt ""
"par_id150820161816032816\n"
"help.text"
msgid "Select <emph>Secure Connection</emph> checkbox to access the service through <item type=\"literal\">https</item> protocol and port <item type=\"literal\">443</item>"
-msgstr ""
+msgstr "Zaznacz pole wyboru <emph>Bezpieczne połączenie</emph>, aby uzyskać dostęp do usługi przez protokół <item type=\"literal\">https</item> i port <item type=\"literal\">443</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2151,7 +2151,7 @@ msgctxt ""
"par_id150820161816035209\n"
"help.text"
msgid "<variable id=\"labelpar\"><emph>Label</emph>: give a name for this connection. This name will show in the Service listbox of the Open or Save remote files dialog.</variable>"
-msgstr ""
+msgstr "<variable id=\"labelpar\"><emph>Etykieta</emph>: nazwa danego połączenia. Nazwa ta zostanie wyświetlona na liście usług plików zdalnych.</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2159,7 +2159,7 @@ msgctxt ""
"par_id15082016181603431\n"
"help.text"
msgid "<variable id=\"rootpar\"><emph>Root</emph>: enter the path to the root URL of your account.</variable>"
-msgstr ""
+msgstr "<variable id=\"rootpar\"><emph>Główny</emph>: wprowadź ścieżkę do głównego adresu URL swojego konta.</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2167,7 +2167,7 @@ msgctxt ""
"par_id150820161816034394\n"
"help.text"
msgid "Note: the root of the file service is provided by the file service administrator and may consists of scripts files, parameters and paths."
-msgstr ""
+msgstr "Notatka: główny plik usługi jest dostarczany przez administratora usług plików i może składać się z plików skryptów, parametrów i ścieżek."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2175,7 +2175,7 @@ msgctxt ""
"par_id150820161816036744\n"
"help.text"
msgid "<variable id=\"okbutton\">Once the connection is defined, click <emph>OK</emph> to connect. The dialog will dim until the connection is established with the server.</variable> A dialog asking for the user name and the password may pop up to let you log in the server. Proceed entering the right user name and password."
-msgstr ""
+msgstr "<variable id=\"okbutton\">Po nawiązaniu połączenia kliknij <emph>OK</emph>, aby się połączyć. Okno dialogowe będzie przygaszone do momentu nawiązania połączenia z serwerem. </variable> Może pojawić się okno z pytaniem o nazwę użytkownika i hasło, które umożliwi zalogowanie się na serwerze. Przejdź do właściwej nazwy użytkownika i hasła."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2199,7 +2199,7 @@ msgctxt ""
"par_id150820161816034969\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2207,7 +2207,7 @@ msgctxt ""
"par_id150820161816039418\n"
"help.text"
msgid "<emph>Type</emph>: FTP or SSH"
-msgstr ""
+msgstr "<emph>Typ</emph>: FTP lub SSH"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2215,7 +2215,7 @@ msgctxt ""
"par_id15082016181603238\n"
"help.text"
msgid "<emph>Host</emph>: the server URL, usually in the form <item type=\"literal\">file.service.com</item>"
-msgstr ""
+msgstr "<emph>Host</emph>: adres URL serwera, zwykle w postaci <item type=\"literal\">file.service.com</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2223,7 +2223,7 @@ msgctxt ""
"par_id150820161816046286\n"
"help.text"
msgid "<emph>Port</emph>: port number (usually 21 for FTP and 22 for SSH)."
-msgstr ""
+msgstr "<emph>Port</emph>: numer portu (zwykle 21 dla FTP i 22 dla SSH)."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2231,7 +2231,7 @@ msgctxt ""
"par_id150820161816041989\n"
"help.text"
msgid "<emph>User, Password</emph>: the username and password of the FTP service."
-msgstr ""
+msgstr "<emph>Użytkownik, hasło</emph>: nazwa użytkownika i hasło usługi FTP."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2239,7 +2239,7 @@ msgctxt ""
"par_id150820161816047387\n"
"help.text"
msgid "<variable id=\"rememberpw\"><emph>Remember password</emph>: Check to store the password in %PRODUCTNAME user profile. The password will be secured by the master password in <item type=\"menuitem\">Tools - Options - LibreOffice - Security - Internet passwords</item>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rememberpw\"><emph>Zapamiętaj hasło</emph>: Zaznacz, aby zapisać hasło w profilu użytkownika %PRODUCTNAME. Hasło zostanie zabezpieczone hasłem głównym w <item type=\"menuitem\">Narzędzia - Opcje - LibreOffice - Bezpieczeństwo - Hasła połączeń z siecią Web</item>.</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2247,7 +2247,7 @@ msgctxt ""
"par_id150820161816045167\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"par_id150820161816045015\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"par_id150820161816045804\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2287,7 +2287,7 @@ msgctxt ""
"par_id150820161816046729\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2303,7 +2303,7 @@ msgctxt ""
"par_id150820161816041093\n"
"help.text"
msgid "<emph>Host</emph>: the server URL, usually in the form <item type=\"literal\">file.service.com</item>"
-msgstr ""
+msgstr "<emph>Host</emph>: adres URL serwera, zwykle w postaci <item type=\"literal\">file.service.com</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2471,7 +2471,7 @@ msgctxt ""
"par_id150820161816053608\n"
"help.text"
msgid "<emph>Repository</emph>: select the files repository in the drop-down list."
-msgstr ""
+msgstr "<emph>Repozytorium</emph>: wybierz repozytorium plików z listy rozwijanej."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2511,7 +2511,7 @@ msgctxt ""
"par_id210820161039438142\n"
"help.text"
msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp#check\">Checking-in and checking-out documents</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/cmis-remote-files.xhp#check\">Ewidencjonowanie i wyewidencjonowanie dokumentów</link>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2535,7 +2535,7 @@ msgctxt ""
"par_id15082016161546265\n"
"help.text"
msgid "<ahelp hid=\"fps/ui/remotefilesdialog/RemoteFilesDialog\">Remote Files Service User Guide</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fps/ui/remotefilesdialog/RemoteFilesDialog\">Podręcznik użytkownika usługi plików zdalnych</ahelp>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2543,7 +2543,7 @@ msgctxt ""
"par_id150820161816031425\n"
"help.text"
msgid "%PRODUCTNAME can open and save files stored on remote servers. Keeping files on remote servers allows to work with the documents using different computers. For example, you can work on a document in the office during the day and edit it at home for last-minute changes. Storing files on a remote server also backs up documents from computer loss or hard disk failure. Some servers are also able to check-in and check-out files, thus controlling their usage and access."
-msgstr ""
+msgstr "%PRODUCTNAME może otwierać i zapisywać pliki przechowywane na zdalnych serwerach. Przechowywanie plików na zdalnych serwerach umożliwia pracę z dokumentami przy użyciu różnych komputerów. Na przykład możesz pracować nad dokumentem w biurze w ciągu dnia i edytować go w domu, aby dokonać zmian w ostatniej chwili. Przechowywanie plików na serwerze zdalnym tworzy również kopie zapasowe dokumentów na wypadek utraty komputera lub awarii dysku twardego. Niektóre serwery są również w stanie ewidencjonować i wyewidencjonować pliki, a tym samym kontrolować ich użytkowanie i dostęp."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2551,7 +2551,7 @@ msgctxt ""
"par_id150820161816033566\n"
"help.text"
msgid "%PRODUCTNAME supports many document servers that use well known network protocols such as FTP, WebDAV, Windows share, and SSH. It also supports popular services like Google Drive as well as commercial and open source servers that implement the OASIS CMIS standard."
-msgstr ""
+msgstr "%PRODUCTNAME obsługuje wiele serwerów dokumentów, które używają dobrze znanych protokołów sieciowych takich jak FTP, WebDAV, Udział Windows i SSH. Obsługuje także popularne usługi, takie jak Google Drive, jak również serwery komercyjne i open source, które wdrażają standard OASIS CMIS."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2559,7 +2559,7 @@ msgctxt ""
"par_id170820161605418200\n"
"help.text"
msgid "To work with a remote file service you must first <link href=\"text/shared/guide/cmis-remote-files-setup.xhp\">setup a remote file connection</link>."
-msgstr ""
+msgstr "Aby pracować z usługą zdalnego pliku, należy najpierw <link href=\"text/shared/guide/cmis-remote-files-setup.xhp\">ustanowić połączenie pliku zdalnego</link>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2575,7 +2575,7 @@ msgctxt ""
"par_id160820161854537016\n"
"help.text"
msgid "To open a file in a remote file service"
-msgstr ""
+msgstr "Aby otworzyć plik w usłudze plików zdalnych"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2583,7 +2583,7 @@ msgctxt ""
"par_id170820161605411154\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Wykonaj jedną z następujących czynności:"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2591,7 +2591,7 @@ msgctxt ""
"par_id17082016160541995\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open remote file</item> in any %PRODUCTNAME module"
-msgstr ""
+msgstr "Wybierz polecenie <item type=\"menuitem\">Plik - Otwórz plik zdalny</item> w dowolnym module %PRODUCTNAME"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2599,7 +2599,7 @@ msgctxt ""
"par_id170820161605414687\n"
"help.text"
msgid "Click the <emph>Remote Files</emph> button the Start Center"
-msgstr ""
+msgstr "Kliknij przycisk <emph>Pliki zdalne</emph> na planszy startowej"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2607,7 +2607,7 @@ msgctxt ""
"par_id170820161605418205\n"
"help.text"
msgid "The Remote Files dialog appears."
-msgstr ""
+msgstr "Zostanie wyświetlone okno dialogowe Pliki zdalne."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2615,7 +2615,7 @@ msgctxt ""
"par_id170820161605417597\n"
"help.text"
msgid "Select the file and click <emph>Open</emph> or press <emph>Enter</emph>."
-msgstr ""
+msgstr "Zaznacz plik i kliknij <emph>Otwórz</emph> lub naciśnij klawisz <emph>Enter</emph>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2623,7 +2623,7 @@ msgctxt ""
"par_id150820161816053974\n"
"help.text"
msgid "The Remote Files dialog which then appears has many parts. The upper list box contains the list of remote servers you have previously defined. The line below the list box shows the path to access the folder. On the left is the folder structure of the user space in the server. The main pane displays the files in the remote folder."
-msgstr ""
+msgstr "Wyświetlone okno dialogowe Plików zdalnych zawiera wiele części. W górnym polu listy znajduje się wcześniej zdefiniowana lista zdalnych serwerów. Linia pod polem listy wyświetla ścieżkę dostępu do folderu. Po lewej stronie znajduje się struktura folderów w przestrzeni użytkownika na serwerze. W głównym okienku wyświetlane są pliki w folderze zdalnym."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2639,7 +2639,7 @@ msgctxt ""
"hd_id170820161605421283\n"
"help.text"
msgid "Checking out and checking in files"
-msgstr ""
+msgstr "Wyewidencjonowanie i ewidencjonowanie w plikach"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2647,7 +2647,7 @@ msgctxt ""
"par_id170820161605429941\n"
"help.text"
msgid "Check Out and Check In services control updates to document and prevent unwanted overwrites in a CMIS remote service."
-msgstr ""
+msgstr "Usługi ewidencjonowania kontrolują aktualizacje dokumentów, aby zapobiec przed niepożądanymi zmianami w zdalnej usłudze CMIS."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2655,7 +2655,7 @@ msgctxt ""
"par_id17082016160542203\n"
"help.text"
msgid "Checking out a document locks it, preventing other users writing changes to it. Only one user can have a particular document checked out (locked) at any time. Checking in a document or canceling the check out unlocks the document."
-msgstr ""
+msgstr "Wyewidencjonowanie dokumentu blokuje go, uniemożliwiając innym użytkownikom zapisywanie zmian. Tylko jeden użytkownik może w dowolnym momencie wyewidencjonować (zablokować) dany dokument. Zaewidencjonowanie dokumentu lub anulowanie wyewidencjonowania powoduje odblokowanie dokumentu."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2671,7 +2671,7 @@ msgctxt ""
"par_id170820161605428976\n"
"help.text"
msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME display a <emph>Check-out</emph> button on the top message area. Click the <emph>Check-out</emph> button to lock the file in the server to prevent edition by another user. Alternatively choose <item type=\"menuitem\">File - Check-out</item>."
-msgstr ""
+msgstr "Gdy plik jest otwarty z usługi plików zdalnych CMIS, w górnym obszarze wiadomości %PRODUCTNAME wyświetla przycisk <emph>Wyewidencjonuj</emph>. Kliknij przycisk <emph>Wyewidencjonuj</emph>, aby zablokować plik na serwerze, aby zapobiec jego edycji przez innego użytkownika. Można również wybrać polecenie <item type=\"menuitem\">Plik - Wyewidencjonuj</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2679,7 +2679,7 @@ msgctxt ""
"par_id190820161707153804\n"
"help.text"
msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string <item type=\"literal\">(Working Copy)</item> in the file name) when a file is checked-out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check-in the file."
-msgstr ""
+msgstr "%PRODUCTNAME tworzy kopię roboczą pliku na serwerze podczas jego sprawdzania i wstawia w nazwie ciąg <item type=\"literal\">(Kopia robocza)</item>). Każda edycja i operacja zapisywania odbywa się w kopii roboczej. Możesz zapisać plik tyle razy, ile chcesz. Po zakończeniu wprowadzania zmian, sprawdź plik."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2687,7 +2687,7 @@ msgctxt ""
"par_id190820161707156843\n"
"help.text"
msgid "To check-in the file, choose <item type=\"menuitem\">File - Check-in</item>. A dialog opens to insert comments about the last edition. These comments are recorded in the CMIS server for version control. The working copy replaces the existing file and its version number is updated."
-msgstr ""
+msgstr "Aby zaewidencjonować plik, wybierz <item type=\"menuitem\">Plik - Ewidencjonuj</item>. Zostanie otwarte okno dialogowe, aby wstawić komentarze dotyczące ostatniej edycji. Uwagi te są zapisywane na serwerze CMIS do kontroli wersji. Kopia robocza zastępuje istniejący plik, a jego numer wersji jest aktualizowany."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2695,7 +2695,7 @@ msgctxt ""
"par_id190820161707155303\n"
"help.text"
msgid "To cancel a check-out, choose <item type=\"menuitem\">File - Cancel Check-Out</item>. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs."
-msgstr ""
+msgstr "Aby anulować sprawdzanie, wybierz <item type=\"menuitem\">Plik - Anuluj wyewidencjonowanie</item>. Ostrzeżenie poinformuje, że ostatnia edycja pliku zostanie porzucona. Jeśli komunikat zostanie potwierdzony, nie dojdzie do aktualizacji pliku."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2703,7 +2703,7 @@ msgctxt ""
"par_id19082016170715785\n"
"help.text"
msgid "Remember to check-in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it."
-msgstr ""
+msgstr "Pamiętaj, aby zaewidencjonować plik przed zakończeniem pracy. Nie zrobienie tego zablokuje plik, i żaden inny użytkownik będzie mógł go modyfikować."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2719,7 +2719,7 @@ msgctxt ""
"hd_id170820161605423820\n"
"help.text"
msgid "To save a file in a remote file server"
-msgstr ""
+msgstr "Aby zapisać plik na zdalnym serwerze plików"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2727,7 +2727,7 @@ msgctxt ""
"par_id170820161605428770\n"
"help.text"
msgid "Do one of the following"
-msgstr ""
+msgstr "Wykonaj jedną z następujących czynności"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2735,7 +2735,7 @@ msgctxt ""
"par_id170820161605423872\n"
"help.text"
msgid "If the file was opened from a CMIS server, choose <item type=\"menuitem\">File - Save</item>, click on the <emph>Save</emph> button or hit <item type=\"literal\">Ctrl + S</item>."
-msgstr ""
+msgstr "Jeśli plik został otwarty z serwera CMIS, wybierz polecenie <item type=\"menuitem\">Plik - Zapisz</item>, kliknij przycisk <emph>Zapisz</emph> lub naciśnij klawisz <item type=\"literal\">Ctrl + S</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2743,7 +2743,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, Choose <item type=\"menuitem\">File - Save to Remote Server </item>or do a long click in the <emph>Save</emph> icon, and select <emph>Save Remote File</emph>"
-msgstr ""
+msgstr "Jeśli plik nie jest zapisany na serwerze CMIS, wybierz polecenie <item type=\"menuitem\">Plik - Zapisz na serwerze zdalnym</item> lub kliknij ikonę <emph>Zapisz</emph> i wybierz <emph>Zapisz plik zdalny</emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2751,7 +2751,7 @@ msgctxt ""
"par_id170820161605428591\n"
"help.text"
msgid "The <emph>Remote files</emph> dialog appears"
-msgstr ""
+msgstr "Zostanie wyświetlone okno dialogowe <emph>Pliki zdalne</emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2759,7 +2759,7 @@ msgctxt ""
"par_id170820161605425024\n"
"help.text"
msgid "In the <emph>Filter</emph> list box, select the desired format."
-msgstr ""
+msgstr "W polu listy <emph>Filtr</emph> wybierz żądany format."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2767,7 +2767,7 @@ msgctxt ""
"par_id170820161605424622\n"
"help.text"
msgid "Enter a name in the File name box and click <emph>Save</emph>."
-msgstr ""
+msgstr "Wprowadź nazwę w polu Nazwa pliku i kliknij przycisk <emph>Zapisz</emph>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2775,7 +2775,7 @@ msgctxt ""
"par_id190820161707163121\n"
"help.text"
msgid "If you will end working with the file, check-in the file, Go to <item type=\"menuitem\">File - Check-in</item>."
-msgstr ""
+msgstr "Jeśli kończysz pracę z plikiem, zaewidencjonuj go poleceniem <item type=\"menuitem\">Plik - Ewidencjonuj</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2791,7 +2791,7 @@ msgctxt ""
"hd_id190820161707169171\n"
"help.text"
msgid "Properties of files stored in CMIS servers"
-msgstr ""
+msgstr "Właściwości plików przechowywanych na serwerach CMIS"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2799,7 +2799,7 @@ msgctxt ""
"par_id19082016170716519\n"
"help.text"
msgid "Files stored in CMIS server have properties and metadata not available in a local storage. These metadata are important for controls and debugging of the CMIS connection and server implementation. All parameters dispalyed are read-only."
-msgstr ""
+msgstr "Pliki przechowywane na serwerze CMIS mają właściwości i metadane niedostępne w lokalnej pamięci masowej. Te metadane są ważne dla kontroli i debugowania połączeń CMIS oraz dla implementacji serwera. Wszystkie przedstawione parametry są tylko do odczytu."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2815,7 +2815,7 @@ msgctxt ""
"par_id210820161033581776\n"
"help.text"
msgid "<link href=\"text/shared/guide/cmis-remote-files-setup.xhp\">Setting up a remote file service</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/cmis-remote-files-setup.xhp\">Ustanowienie usługi plików zdalnych</link>"
#: collab.xhp
msgctxt ""
@@ -6104,7 +6104,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document is signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Po podpisaniu dokumentu w programie OpenOffice.org 3.2 lub StarOffice 9.2 albo nowszym i otwarciu następnie danego dokumentu w starszej wersji tych programów podpis zostanie wyświetlony jako \"nieprawidłowy\". Podpisy utworzone w starszych wersjach programów podczas ładowania do nowszej wersji programu będą oznaczone uwagą \"tylko część dokumentu została podpisana\"."
#: digital_signatures.xhp
msgctxt ""
@@ -6112,7 +6112,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document is signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Podczas podpisywania dokumentu OOXML, podpis zawsze będzie oznaczony znakiem \"tylko część dokumentu została podpisana\". Metadane plików OOXML nigdy nie są podpisywane, aby były one zgodne z pakietem Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
@@ -6120,7 +6120,7 @@ msgctxt ""
"par_id0821200910191776\n"
"help.text"
msgid "When you sign a PDF document, then this marking is not used. Signing only parts of the document is simply an invalid signature."
-msgstr ""
+msgstr "Kiedy podpisujesz dokument PDF, to oznaczenie nie jest używane. Podpisywanie tylko części dokumentu jest po prostu nieprawidłowym podpisem."
#: digital_signatures.xhp
msgctxt ""
@@ -6128,7 +6128,7 @@ msgctxt ""
"par_id0821200910191777\n"
"help.text"
msgid "Signing other document formats is not supported at the moment."
-msgstr ""
+msgstr "Podpisywanie innych formatów dokumentów nie jest obecnie obsługiwane."
#: digital_signatures.xhp
msgctxt ""
@@ -6853,7 +6853,7 @@ msgctxt ""
"par_id210820160901392820\n"
"help.text"
msgid "Do a long click in the <emph>Open</emph> icon on the standard toolbar and select <emph>Open Remote File</emph> in the bottom of the list."
-msgstr ""
+msgstr "Wykonaj długie kliknięcie w ikonę <emph>Otwórz</emph> na standardowym pasku narzędzi i wybierz opcję <emph>Otwórz plik zdalny</emph> z dołu listy."
#: doc_open.xhp
msgctxt ""
@@ -18401,7 +18401,7 @@ msgctxt ""
"hd_id1016120408556191\n"
"help.text"
msgid "Using without special arguments"
-msgstr ""
+msgstr "Używanie bez specjalnych argumentów"
#: start_parameters.xhp
msgctxt ""
@@ -18441,7 +18441,7 @@ msgctxt ""
"par_id40161212063330252\n"
"help.text"
msgid "Opens the file and applies specified macros from the file."
-msgstr ""
+msgstr "Otwiera plik i stosuje określone makra z pliku."
#: start_parameters.xhp
msgctxt ""
@@ -18449,7 +18449,7 @@ msgctxt ""
"hd_id201612040855610\n"
"help.text"
msgid "Getting help and information"
-msgstr ""
+msgstr "Uzyskiwanie pomocy i informacji"
#: start_parameters.xhp
msgctxt ""
@@ -18473,7 +18473,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Lists the available command line parameters to the console."
-msgstr ""
+msgstr "Wyświetla dostępne parametry linii poleceń do konsoli."
#: start_parameters.xhp
msgctxt ""
@@ -18545,7 +18545,7 @@ msgctxt ""
"par_id2016120409236546\n"
"help.text"
msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
-msgstr ""
+msgstr "(Tylko piaskownica w systemie MacOS X) Zwraca ścieżkę do katalogu tymczasowego dla bieżącego użytkownika i kończy pracę. Zastępuje wszystkie inne argumenty."
#: start_parameters.xhp
msgctxt ""
@@ -18553,7 +18553,7 @@ msgctxt ""
"hd_id20161204094429235\n"
"help.text"
msgid "General arguments"
-msgstr ""
+msgstr "Ogólne argumenty"
#: start_parameters.xhp
msgctxt ""
@@ -18561,7 +18561,7 @@ msgctxt ""
"par_id3153919\n"
"help.text"
msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
-msgstr ""
+msgstr "Aktywuje [Dezaktywuje] usługę Quickstarter. Może pobierać tylko jeden parametr <emph>no</emph>, który dezaktywuje usługę Quickstarter. Bez parametrów, usługa jest włączana."
#: start_parameters.xhp
msgctxt ""
@@ -18569,7 +18569,7 @@ msgctxt ""
"par_id315330t\n"
"help.text"
msgid "Disables check for remote instances using the installation."
-msgstr ""
+msgstr "Wyłącza sprawdzania obecności zdalnych instancji w trakcie instalacji."
#: start_parameters.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/optionen.po b/source/pl/helpcontent2/source/text/shared/optionen.po
index e9c3ee47620..2896f7dea86 100644
--- a/source/pl/helpcontent2/source/text/shared/optionen.po
+++ b/source/pl/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-03-26 15:12+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490541132.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Wybierz</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
index ef933bce075..4fe18ed1440 100644
--- a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pl/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-25 19:20+0000\n"
+"PO-Revision-Date: 2017-04-09 14:35+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490469606.000000\n"
+"X-POOTLE-MTIME: 1491748557.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -8564,7 +8564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~Microsoft PowerPoint Presentation..."
-msgstr "E-mail jako prezentacja ~Microsoft Excel PowerPoint..."
+msgstr "E-mail jako prezentacja ~Microsoft PowerPoint..."
#: DrawImpressCommands.xcu
msgctxt ""
diff --git a/source/pl/sfx2/source/dialog.po b/source/pl/sfx2/source/dialog.po
index 7383d2c53c1..1fbfe0bcbac 100644
--- a/source/pl/sfx2/source/dialog.po
+++ b/source/pl/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-19 11:54+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487505250.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchicznie"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/pl/sfx2/uiconfig/ui.po b/source/pl/sfx2/uiconfig/ui.po
index f8f9b084dac..5bdb1af7159 100644
--- a/source/pl/sfx2/uiconfig/ui.po
+++ b/source/pl/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-09 17:46+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489081588.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME jest licencjonowany na zasadach Mozilla Public License, v. 2.0. Kopię licencji MPL znajdziesz na stronie http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Dodatkowe informacje i warunki licencyjne dla kodu oprogramowania firm trzecich mają zastosowanie do części Oprogramowania i są wyjaśnione w pliku LICENSE.html; wybierz Pokaż licencję, aby zapoznać się ze szczegółami w języku angielskim.\n"
-"\n"
-"Wszystkie znaki towarowe wymienione w niniejszym dokumencie są własnością ich właścicieli.\n"
-"\n"
-"Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice. Wszystkie prawa zastrzeżone.\n"
-"\n"
-"Produkt ten został utworzony przez %OOOVENDOR w oparciu o OpenOffice.org, do którego prawa autorskie (2010, 2011) posiada firma Oracle i/lub jej filie. %OOOVENDOR dziękuje całej społeczności. Aby poznać więcej szczegółów, odwiedź proszę http://www.libreoffice.org/"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/pl/svtools/source/dialogs.po b/source/pl/svtools/source/dialogs.po
index e4452368660..a1e28940e17 100644
--- a/source/pl/svtools/source/dialogs.po
+++ b/source/pl/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-10 21:33+0000\n"
-"Last-Translator: Konrad Kmieciak <raknor@wp.pl>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-04-15 08:24+0000\n"
+"Last-Translator: m4sk1n <m4sk1n@o2.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1455140002.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1460708667.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Tekst formatowany [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/pl/svtools/source/misc.po b/source/pl/svtools/source/misc.po
index fe3951f1356..4ac18af08a6 100644
--- a/source/pl/svtools/source/misc.po
+++ b/source/pl/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 07:36+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487403381.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "węgierski (rowasz)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pl/svtools/uiconfig/ui.po b/source/pl/svtools/uiconfig/ui.po
index be7ac479d4d..2ce9759a2b0 100644
--- a/source/pl/svtools/uiconfig/ui.po
+++ b/source/pl/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-18 07:39+0000\n"
+"PO-Revision-Date: 2017-04-02 10:16+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: none\n"
"Language: pl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487403555.000000\n"
+"X-POOTLE-MTIME: 1491128195.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "File Services"
-msgstr "Plik usług"
+msgstr "Usługi plików"
#: placeedit.ui
msgctxt ""
diff --git a/source/pl/svx/source/stbctrls.po b/source/pl/svx/source/stbctrls.po
index 8072156d1f9..98ee50b0a04 100644
--- a/source/pl/svx/source/stbctrls.po
+++ b/source/pl/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-27 19:21+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488223310.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Dopasuj slajd do bieżącego okna."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/pl/svx/uiconfig/ui.po b/source/pl/svx/uiconfig/ui.po
index b8beffe788c..2e0e6bd89f2 100644
--- a/source/pl/svx/uiconfig/ui.po
+++ b/source/pl/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-26 07:04+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490511895.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "Kontynuuj w trybie awaryjnym"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Wyjdź"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Z_astosuj zmiany i uruchom ponownie"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/pt-BR/cui/uiconfig/ui.po b/source/pt-BR/cui/uiconfig/ui.po
index c9545811d3a..6905f6370e7 100644
--- a/source/pt-BR/cui/uiconfig/ui.po
+++ b/source/pt-BR/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-13 12:49+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:00+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484311773.000000\n"
+"X-POOTLE-MTIME: 1492020034.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Colaboradores do LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 Colaboradores do LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/scalc/01.po b/source/pt-BR/helpcontent2/source/text/scalc/01.po
index e28446b40bb..0e44a5b60a7 100644
--- a/source/pt-BR/helpcontent2/source/text/scalc/01.po
+++ b/source/pt-BR/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-26 12:05+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 17:27+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485432354.000000\n"
+"X-POOTLE-MTIME: 1492018046.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/02.po b/source/pt-BR/helpcontent2/source/text/shared/02.po
index 5070ab310ca..db7e443288d 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/02.po
+++ b/source/pt-BR/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-26 12:12+0000\n"
+"PO-Revision-Date: 2017-04-12 17:31+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485432730.000000\n"
+"X-POOTLE-MTIME: 1492018262.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -16978,7 +16978,7 @@ msgctxt ""
"bm_id3083278\n"
"help.text"
msgid "<bookmark_value>page styles;editing/applying with statusbar</bookmark_value>"
-msgstr "<bookmark_value>estilos de páginas;editar/aplicar com barra de status</bookmark_value>"
+msgstr "<bookmark_value>estilos de página;editar/aplicar com barra de status</bookmark_value>"
#: 20020000.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/optionen.po b/source/pt-BR/helpcontent2/source/text/shared/optionen.po
index d0f8a1fcbe0..b426cea8702 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-26 12:33+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-12 17:29+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485433994.000000\n"
+"X-POOTLE-MTIME: 1492018192.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Escolher</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Escolher</link>"
#: 01010501.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/00.po b/source/pt-BR/helpcontent2/source/text/swriter/00.po
index 1d83cc6645e..65ee18de430 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/00.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-03 20:07+0000\n"
+"PO-Revision-Date: 2017-04-12 17:31+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483474046.000000\n"
+"X-POOTLE-MTIME: 1492018284.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1404,7 +1404,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu <emph>New/Modify</emph> (for Page Styles)"
-msgstr "Escolha <emph>Exibir - Estilos e formatação</emph> e abra o menu de contexto <emph>Novo/Modificar</emph> (para Estilos de páginas)"
+msgstr "Escolha <emph>Exibir - Estilos e formatação</emph> e abra o menu de contexto <emph>Novo/Modificar</emph> (para Estilos de página)"
#: 00000405.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/01.po b/source/pt-BR/helpcontent2/source/text/swriter/01.po
index 045d5a21963..dcf87513f74 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/01.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-11 14:56+0000\n"
-"Last-Translator: Raul <raulpachecodasilva@gmail.com>\n"
+"PO-Revision-Date: 2017-04-12 17:32+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484146607.000000\n"
+"X-POOTLE-MTIME: 1492018372.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -14329,7 +14329,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "<ahelp hid=\".\">Adds or removes a header from the page style that you select in the submenu. The header is added to all of the pages that use the same page style.</ahelp> In a new document, only the \"Default\" page style is listed. Other page styles are added to the list after you apply them in the document."
-msgstr "<ahelp hid=\".\">Adiciona ou remove um cabeçalho do estilo de página que você selecionar no submenu. O cabeçalho é adicionado a todas as páginas que usam o mesmo estilo de página.</ahelp> Em um novo documento, é listado apenas o estilo de página \"Padrão\". Outros estilos de páginas serão adicionados à lista depois que você aplicá-los ao documento."
+msgstr "<ahelp hid=\".\">Adiciona ou remove um cabeçalho do estilo de página que você selecionar no submenu. O cabeçalho é adicionado a todas as páginas que usam o mesmo estilo de página.</ahelp> Em um novo documento, é listado apenas o estilo de página \"Padrão\". Outros estilos de página serão adicionados à lista depois que você aplicá-los ao documento."
#: 04220000.xhp
msgctxt ""
@@ -21091,7 +21091,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Use Page Styles to organize the structure of the document, and to add page numbers. You can also specify the page style to apply to the first page that follows after a page break."
-msgstr "Utilize a opção Estilos de Página para organizar a estrutura do documento e adicionar números de páginas. Você também pode especificar o estilo de página a ser aplicado à primeira página posterior à quebra de página."
+msgstr "Utilize a opção Estilos de página para organizar a estrutura do documento e adicionar números de páginas. Você também pode especificar o estilo de página a ser aplicado à primeira página posterior à quebra de página."
#: 05130000.xhp
msgctxt ""
@@ -21861,7 +21861,7 @@ msgctxt ""
"par_id3147220\n"
"help.text"
msgid "<ahelp hid=\".\">Displays formatting styles for pages.</ahelp> Use page styles to determine page layouts, including the presence of headers and footers."
-msgstr "<ahelp hid=\".\">Exibe estilos de formatação de páginas.</ahelp> Utilize estilos de páginas para determinar leiautes de página, incluindo a presença de cabeçalhos e rodapés."
+msgstr "<ahelp hid=\".\">Exibe estilos de formatação de páginas.</ahelp> Utilize estilos de página para determinar leiautes de página, incluindo a presença de cabeçalhos e rodapés."
#: 05140000.xhp
msgctxt ""
@@ -22808,7 +22808,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/pages\">Loads the page styles from the selected document into the current document.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/pages\">Carrega os estilos de páginas do documento selecionado no documento atual.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/pages\">Carrega os estilos de página do documento selecionado no documento atual.</ahelp>"
#: 05170000.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/guide.po b/source/pt-BR/helpcontent2/source/text/swriter/guide.po
index d3c0c4588e5..bf8446bb080 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-01-26 13:12+0000\n"
+"PO-Revision-Date: 2017-04-12 17:41+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485436325.000000\n"
+"X-POOTLE-MTIME: 1492018917.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id478530\n"
"help.text"
msgid "<link href=\"text/swriter/guide/pagebackground.xhp\">Page Backgrounds as Page Styles</link>"
-msgstr "<link href=\"text/swriter/guide/pagebackground.xhp\">Planos de fundo de páginas como estilos de página</link>"
+msgstr "<link href=\"text/swriter/guide/pagebackground.xhp\">Planos de fundo de página como estilos de página</link>"
#: border_character.xhp
msgctxt ""
@@ -1620,7 +1620,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "In Writer, you define borders for <emph>page styles</emph>, not individual pages. All changes made to borders apply to all pages that use the same page style. Note that page style changes cannot be undone by the Undo function in $[officename]."
-msgstr "No Writer, você pode definir bordas para <emph>estilos de páginas</emph> e não para páginas individuais. Todas as alterações realizadas nas bordas serão aplicadas a todas as páginas que utilizam o mesmo estilo de página. Observe que as alterações no estilo de página não podem ser desfeitas através da função Desfazer do $[officename]."
+msgstr "No Writer, você pode definir bordas para <emph>estilos de página</emph> e não para páginas individuais. Todas as alterações realizadas nas bordas serão aplicadas a todas as páginas que utilizam o mesmo estilo de página. Observe que as alterações no estilo de página não podem ser desfeitas através da função Desfazer do $[officename]."
#: border_page.xhp
msgctxt ""
@@ -2961,7 +2961,7 @@ msgctxt ""
"par_id3150503\n"
"help.text"
msgid "Open a new text document, choose <emph>View - Styles and Formatting</emph>, and then click the <emph>Page Styles</emph> icon."
-msgstr "Abra um novo documento de texto, escolha <emph>Formatar - Estilos e formatação</emph> e, em seguida, clique no ícone <emph>Estilos de páginas</emph>."
+msgstr "Abra um novo documento de texto, escolha <emph>Formatar - Estilos e formatação</emph> e, em seguida, clique no ícone <emph>Estilos de página</emph>."
#: change_header.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Alternating Page Styles on Odd and Even Pages"
-msgstr "Alternar estilos de páginas em páginas ímpares e pares"
+msgstr "Alternar estilos de página em páginas ímpares e pares"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"bm_id3153407\n"
"help.text"
msgid "<bookmark_value>page styles; left and right pages</bookmark_value> <bookmark_value>blank pages with alternating page styles</bookmark_value> <bookmark_value>empty page with alternating page styles</bookmark_value> <bookmark_value>pages; left and right pages</bookmark_value> <bookmark_value>formatting; even/odd pages</bookmark_value> <bookmark_value>title pages; page styles</bookmark_value> <bookmark_value>First Page page style</bookmark_value> <bookmark_value>Left Page page style</bookmark_value> <bookmark_value>right pages</bookmark_value> <bookmark_value>even/odd pages;formatting</bookmark_value>"
-msgstr "<bookmark_value>estilos de página;páginas à esquerda e à direita</bookmark_value><bookmark_value>páginas em branco com estilos de páginas alternados</bookmark_value><bookmark_value>páginas vazias com estilos de página alternados</bookmark_value><bookmark_value>páginas;páginas à esquerda e à direita</bookmark_value><bookmark_value>formatar;páginas pares/ímpares</bookmark_value><bookmark_value>páginas de títulos;estilos de páginas</bookmark_value><bookmark_value>estilo de página Primeira página</bookmark_value><bookmark_value>estilo de página Página à esquerda</bookmark_value><bookmark_value>páginas à direita</bookmark_value><bookmark_value>páginas pares/ímpares;formatar</bookmark_value>"
+msgstr "<bookmark_value>estilos de página;páginas à esquerda e à direita</bookmark_value><bookmark_value>páginas em branco com estilos de página alternados</bookmark_value><bookmark_value>páginas vazias com estilos de página alternados</bookmark_value><bookmark_value>páginas;páginas à esquerda e à direita</bookmark_value><bookmark_value>formatar;páginas pares/ímpares</bookmark_value><bookmark_value>páginas de títulos;estilos de página</bookmark_value><bookmark_value>estilo de página Primeira página</bookmark_value><bookmark_value>estilo de página Página à esquerda</bookmark_value><bookmark_value>páginas à direita</bookmark_value><bookmark_value>páginas pares/ímpares;formatar</bookmark_value>"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3147126\n"
"help.text"
msgid "$[officename] can automatically apply alternating page styles on even (left) and odd pages (right) in your document. For example, you can use page styles to display different headers and footers on even and odd pages. The current page style is displayed in the <emph>Status Bar</emph> at the bottom of the workplace."
-msgstr "O $[officename] pode automaticamente aplicar estilos de páginas alternados em páginas pares (à esquerda) do documento. Por exemplo, você pode usar estilos de página para exibir diferentes cabeçalhos e rodapés em páginas pares e ímpares. O estilo de página atual aparece na <emph>Barra de status</emph> na parte inferior da área de trabalho."
+msgstr "O $[officename] pode automaticamente aplicar estilos de página alternados em páginas pares (à esquerda) do documento. Por exemplo, você pode usar estilos de página para exibir diferentes cabeçalhos e rodapés em páginas pares e ímpares. O estilo de página atual aparece na <emph>Barra de status</emph> na parte inferior da área de trabalho."
#: even_odd_sdw.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"hd_id8194219\n"
"help.text"
msgid "To Set Up Alternating Page Styles"
-msgstr "Para configurar estilos de páginas alternadas"
+msgstr "Para configurar estilos de página alternadas"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"par_id3155561\n"
"help.text"
msgid "Go to the first page in your document, and double-click \"Right Page\" in the list of page styles in the Styles and Formatting window."
-msgstr "Vá para a primeira página do documento e clique duas vezes em \"Página direita\" na lista de estilos de páginas da janela Estilos e formatação."
+msgstr "Vá para a primeira página do documento e clique duas vezes em \"Página direita\" na lista de estilos de página da janela Estilos e formatação."
#: even_odd_sdw.xhp
msgctxt ""
@@ -6067,7 +6067,7 @@ msgctxt ""
"par_id3146876\n"
"help.text"
msgid "To use different headers or footers in your document, you must add them to different <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear."
-msgstr "Para utilizar diferentes cabeçalhos e rodapés documento, adicione-os a diferentes <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">estilos de páginas</link> e, em seguida, aplique os estilos às páginas nas deseja exibir os cabeçalhos ou rodapés."
+msgstr "Para utilizar diferentes cabeçalhos e rodapés documento, adicione-os a diferentes <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">estilos de página</link> e, em seguida, aplique os estilos às páginas nas deseja exibir os cabeçalhos ou rodapés."
#: header_footer.xhp
msgctxt ""
@@ -6091,7 +6091,7 @@ msgctxt ""
"par_id3153174\n"
"help.text"
msgid "<link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Page Styles</link>"
-msgstr "<link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Estilos de páginas\">Estilos de páginas</link>"
+msgstr "<link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Estilos de página</link>"
#: header_pagestyles.xhp
msgctxt ""
@@ -6155,7 +6155,7 @@ msgctxt ""
"par_id3150946\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> and click the <emph>Page Styles</emph> icon in the Styles and Formatting sidebar deck."
-msgstr "Escolha <emph>Formatar - Estilos e formatação</emph> e clique no ícone <emph>Estilos de páginas</emph> no painel Estilos e formatação da barra lateral."
+msgstr "Escolha <emph>Formatar - Estilos e formatação</emph> e clique no ícone <emph>Estilos de página</emph> no painel Estilos e formatação da barra lateral."
#: header_pagestyles.xhp
msgctxt ""
@@ -6203,7 +6203,7 @@ msgctxt ""
"par_id3150714\n"
"help.text"
msgid "In the <emph>Styles and Formatting</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "Na janela <emph>Estilos e formatação</emph>, clique com o botão direito em \"Página esquerda\" na lista de estilos de páginas e, em seguida, escolha <emph>Modificar</emph>."
+msgstr "Na janela <emph>Estilos e formatação</emph>, clique com o botão direito em \"Página esquerda\" na lista de estilos de página e, em seguida, escolha <emph>Modificar</emph>."
#: header_pagestyles.xhp
msgctxt ""
@@ -10101,7 +10101,7 @@ msgctxt ""
"par_idN10812\n"
"help.text"
msgid "$[officename] uses page styles to specify the background of the pages in a document. For example, to change the page background of one or more pages in a document to a watermark, you need to create a page style that uses the watermark background, and then apply the page style to the pages."
-msgstr "O $[officename] utiliza estilos de páginas para especificar o plano de fundo das páginas de um documento. Por exemplo, de modo a alterar o plano de fundo de uma ou mais páginas de um documento para uma marca d'água, você precisará criar um estilo de página que use o plano de fundo de marca d'água e, em seguida, aplicar o estilo de página às páginas."
+msgstr "O $[officename] utiliza estilos de página para especificar o plano de fundo das páginas de um documento. Por exemplo, de modo a alterar o plano de fundo de uma ou mais páginas de um documento para uma marca d'água, você precisará criar um estilo de página que use o plano de fundo de marca d'água e, em seguida, aplicar o estilo de página às páginas."
#: pagebackground.xhp
msgctxt ""
@@ -10125,7 +10125,7 @@ msgctxt ""
"par_idN1082F\n"
"help.text"
msgid "Click the <emph>Page Styles</emph> icon."
-msgstr "Clique no ícone <emph>Estilos de páginas</emph>."
+msgstr "Clique no ícone <emph>Estilos de página</emph>."
#: pagebackground.xhp
msgctxt ""
@@ -10133,7 +10133,7 @@ msgctxt ""
"par_idN10837\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "Na lista de estilos de páginas, clique com o botão direito do mouse em um item e, em seguida, e escolha <emph>Novo</emph>."
+msgstr "Na lista de estilos de página, clique com o botão direito do mouse em um item e, em seguida, e escolha <emph>Novo</emph>."
#: pagebackground.xhp
msgctxt ""
@@ -10221,7 +10221,7 @@ msgctxt ""
"par_idN1089A\n"
"help.text"
msgid "Click the <emph>Page Styles</emph> icon."
-msgstr "Clique no ícone <emph>Estilos de páginas</emph>."
+msgstr "Clique no ícone <emph>Estilos de página</emph>."
#: pagebackground.xhp
msgctxt ""
@@ -10669,7 +10669,7 @@ msgctxt ""
"par_id6418042\n"
"help.text"
msgid "All page properties for Writer text documents, like for example the page orientation, are defined by page styles. By default, a new text document uses the “Default” page style for all pages. If you open an existing text document, different page styles may have been applied to the different pages."
-msgstr "Todas as propriedades de página dos documentos de texto do Writer, como por exemplo a orientação da página, são definidas por estilos de página. Por padrão, um novo documento de texto utiliza o estilo de página “Padrão” para todas as páginas. Se você abrir um documento existente, estilos de páginas diferentes podem ter sido utilizados em diferentes páginas."
+msgstr "Todas as propriedades de página dos documentos de texto do Writer, como por exemplo a orientação da página, são definidas por estilos de página. Por padrão, um novo documento de texto utiliza o estilo de página “Padrão” para todas as páginas. Se abrir um documento existente, estilos de página diferentes podem ter sido utilizados em diferentes páginas."
#: pageorientation.xhp
msgctxt ""
@@ -10781,7 +10781,7 @@ msgctxt ""
"par_idN10741\n"
"help.text"
msgid "Click the <emph>Page Styles</emph> icon."
-msgstr "Clique no ícone <emph>Estilos de páginas</emph>."
+msgstr "Clique no ícone <emph>Estilos de página</emph>."
#: pageorientation.xhp
msgctxt ""
@@ -10837,7 +10837,7 @@ msgctxt ""
"par_id1658375\n"
"help.text"
msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles and Formatting</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
-msgstr "Você agora definiu um estilo de página apropriado com o nome \"Página deitada\". Para aplicar o novo estilo, faça um clique duplo no estilo de página \"Página deitada\" na janela <emph>Estilos e formatação</emph>. Todas as páginas com este escopo de estilo de página serão alteradas. Se você definiu o \"próximo estilo\" como sendo um estilo diferente, somente a primeira página do escopo atual de páginas será alterada."
+msgstr "Você agora definiu um estilo de página apropriado com o nome \"Página deitada\". Para aplicar o novo estilo, faça um clique duplo no estilo de página \"Página deitada\" na janela <emph>Estilos e formatação</emph>. Todas as páginas com este escopo de estilo de página serão alteradas. Se definiu o \"próximo estilo\" como sendo um estilo diferente, somente a primeira página do escopo atual de páginas será alterada."
#: pageorientation.xhp
msgctxt ""
@@ -10957,7 +10957,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating and Applying Page Styles"
-msgstr "Criar e utilizar estilos de páginas"
+msgstr "Criar e utilizar estilos de página"
#: pagestyles.xhp
msgctxt ""
@@ -10965,7 +10965,7 @@ msgctxt ""
"bm_id7071138\n"
"help.text"
msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value>"
-msgstr "<bookmark_value>estilos de páginas;criar e aplicar</bookmark_value><bookmark_value>estilos; para páginas</bookmark_value><bookmark_value>definir;estilos de páginas</bookmark_value>"
+msgstr "<bookmark_value>estilos de página;criar e aplicar</bookmark_value><bookmark_value>estilos; para páginas</bookmark_value><bookmark_value>definir;estilos de página</bookmark_value>"
#: pagestyles.xhp
msgctxt ""
@@ -11005,7 +11005,7 @@ msgctxt ""
"par_id3153133\n"
"help.text"
msgid "Click the <emph>Page Styles</emph> icon."
-msgstr "Clique no ícone <emph>Estilos de páginas</emph>."
+msgstr "Clique no ícone <emph>Estilos de página</emph>."
#: pagestyles.xhp
msgctxt ""
@@ -11013,7 +11013,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "Na lista de estilos de páginas, clique com o botão direito do mouse em um item e, em seguida, e escolha <emph>Novo</emph>."
+msgstr "Na lista de estilos de página, clique com o botão direito do mouse em um item e, em seguida, e escolha <emph>Novo</emph>."
#: pagestyles.xhp
msgctxt ""
diff --git a/source/pt-BR/sfx2/source/dialog.po b/source/pt-BR/sfx2/source/dialog.po
index a2db51a5f00..1d4ea982ba2 100644
--- a/source/pt-BR/sfx2/source/dialog.po
+++ b/source/pt-BR/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 20:55+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:02+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481316954.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492020143.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierárquico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Modo de preenchimento de formato"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Novo estilo a partir da seleção"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Atualizar estilo"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/pt-BR/sfx2/uiconfig/ui.po b/source/pt-BR/sfx2/uiconfig/ui.po
index 1cb26fb7733..838883eda8b 100644
--- a/source/pt-BR/sfx2/uiconfig/ui.po
+++ b/source/pt-BR/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-09 19:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:02+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481311404.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492020174.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Todas as marcas aqui mencionadas, registradas ou não, são de propriedade dos seus titulares.\n"
"\n"
-"Copyright © 2000-2016 os colaboradores do LibreOffice. Todos os direitos reservados.\n"
+"Copyright © 2000-2017 os colaboradores do LibreOffice. Todos os direitos reservados.\n"
"\n"
"Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Acesse a página http://www.libreoffice.org/ para mais detalhes."
diff --git a/source/pt-BR/svtools/source/dialogs.po b/source/pt-BR/svtools/source/dialogs.po
index 5e5e2152b3a..7a95513258a 100644
--- a/source/pt-BR/svtools/source/dialogs.po
+++ b/source/pt-BR/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-13 21:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:03+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450043520.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492020205.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Texto formatado [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Texto formatado [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/pt-BR/svtools/source/misc.po b/source/pt-BR/svtools/source/misc.po
index 678a568e470..5bc7cf90883 100644
--- a/source/pt-BR/svtools/source/misc.po
+++ b/source/pt-BR/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 21:01+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:03+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481317272.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492020210.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Húngaro (alfabeto rúnico)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Inglês (Malásia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pt-BR/svx/source/stbctrls.po b/source/pt-BR/svx/source/stbctrls.po
index daec73f4828..8dfec0a5314 100644
--- a/source/pt-BR/svx/source/stbctrls.po
+++ b/source/pt-BR/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-11 23:15+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:04+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481498109.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492020248.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Ajustar slide à janela atual."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Não foi possível carregar todos os SmartArts. Salvar em Microsoft Office 2010 ou posterior resolveria este problema."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/pt-BR/svx/uiconfig/ui.po b/source/pt-BR/svx/uiconfig/ui.po
index 38bb934165a..998e3aea09f 100644
--- a/source/pt-BR/svx/uiconfig/ui.po
+++ b/source/pt-BR/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-01-13 11:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 18:04+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484307755.000000\n"
+"X-POOTLE-MTIME: 1492020281.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "_Continuar no modo seguro"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Sair"
+msgid "_Restart in Normal Mode"
+msgstr "_Reiniciar em modo normal"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/pt/cui/uiconfig/ui.po b/source/pt/cui/uiconfig/ui.po
index 00b3d0a3a21..0bcb76c69db 100644
--- a/source/pt/cui/uiconfig/ui.po
+++ b/source/pt/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 22:15+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:43+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: none\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487196941.000000\n"
+"X-POOTLE-MTIME: 1492263838.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Colaboradores do LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 Colaboradores do LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/scalc/01.po b/source/pt/helpcontent2/source/text/scalc/01.po
index 597de8dd092..86ba6ea23d9 100644
--- a/source/pt/helpcontent2/source/text/scalc/01.po
+++ b/source/pt/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-24 23:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-01 15:30+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490398601.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491060645.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
@@ -18015,7 +18015,7 @@ msgctxt ""
"par_idN11635\n"
"help.text"
msgid "You can find a general introduction to using Array functions on top of this page."
-msgstr ""
+msgstr "Encontrará uma introdução geral à utilização das funções de matriz na parte superior desta página."
#: 04060107.xhp
msgctxt ""
@@ -18239,7 +18239,7 @@ msgctxt ""
"par_id3166145\n"
"help.text"
msgid "TRANSPOSE(A1:D2)"
-msgstr ""
+msgstr "TRANSPOR(A1:D2)"
#: 04060107.xhp
msgctxt ""
@@ -54073,7 +54073,7 @@ msgctxt ""
"par_id3153362\n"
"help.text"
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr ""
+msgstr "Os comandos <emph>Proteger folha</emph> e <emph> Proteger documento</emph> impedem que sejam efetuadas alterações às células das folhas ou às folhas de um documento. Como opção, é possível definir uma palavra-passe. Se definir uma palavra-passe, só será possível remover a proteção se o utilizador introduzir a palavra-passe correta."
#: 06060000.xhp
msgctxt ""
@@ -54116,7 +54116,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protege as células da folha atual contra modificações.</ahelp></variable> Escolha <emph>Ferramentas - Proteger folha</emph> para abrir a caixa de diálogo <emph>Proteger folha</emph>, na qual pode especificar uma proteção de folha com ou sem palavra-passe."
#: 06060100.xhp
msgctxt ""
@@ -65150,7 +65150,7 @@ msgctxt ""
"hd_id3146902\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Exemplos"
#: func_networkdays.xhp
msgctxt ""
@@ -67096,7 +67096,7 @@ msgctxt ""
"hd_id241020160012172138\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemplo"
#: func_workdays.intl.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/00.po b/source/pt/helpcontent2/source/text/shared/00.po
index 2295a251aad..1951517477e 100644
--- a/source/pt/helpcontent2/source/text/shared/00.po
+++ b/source/pt/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-10 23:17+0000\n"
+"PO-Revision-Date: 2017-04-01 15:38+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489187861.000000\n"
+"X-POOTLE-MTIME: 1491061093.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -873,7 +873,7 @@ msgctxt ""
"par_id3147502\n"
"help.text"
msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr ""
+msgstr "Servidor HTTP W3C (CERN) (Tipo de formato: MAP - CERN)"
#: 00000002.xhp
msgctxt ""
@@ -881,7 +881,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr ""
+msgstr "Servidor HTTP NCSA (Tipo de formato: MAP - NCSA)"
#: 00000002.xhp
msgctxt ""
@@ -889,7 +889,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr ""
+msgstr "O $[officename] cria mapas de imagem para ambos os métodos. Selecione o formato na lista <emph>Tipo de ficheiro </emph> da caixa de diálogo <emph>Guardar como </emph>no <emph>Editor de mapa de imagem</emph>. São criados ficheiros distintos, que têm que ser enviados para o servidor. Será necessário consultar o fornecedor ou administrador de rede para obter informações sobre o tipo de mapas de imagem suportados pelo servidor, bem como a forma de acesso ao programa de avaliação."
#: 00000002.xhp
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"hd_id3152418\n"
"help.text"
msgid "Client Side ImageMap"
-msgstr ""
+msgstr "Mapa de imagem no cliente"
#: 00000002.xhp
msgctxt ""
@@ -913,7 +913,7 @@ msgctxt ""
"par_id3151290\n"
"help.text"
msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr ""
+msgstr "A área da imagem ou moldura na qual o utilizador pode clicar é indicada pela exibição do <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> associado, sempre que o indicador do rato passar sobre a área. O mapa de imagem é armazenado numa camada sob a imagem e contém informações sobre as regiões referenciadas. A única desvantagem dos mapas de imagem executados no posto consiste em não serem abertos pelos navegadores web mais antigos. Contudo, esta desvantagem será resolvida no momento necessário."
#: 00000002.xhp
msgctxt ""
@@ -921,7 +921,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr ""
+msgstr "Ao guardar o mapa de imagem, selecione o tipo de ficheiro <emph>SIP - StarView ImageMap</emph>. Desta forma, é possível guardar diretamente o mapa de imagem num formato que pode ser aplicado a todas as imagens ou molduras ativas existentes num documento. No entanto, se quiser utilizar apenas o mapa de imagem na imagem ou moldura de texto atual, não é necessário guardá-lo num formato especial. Após terem sido definidas as regiões, basta clicar em <emph>Aplicar</emph>. Não é necessário executar outra ação. Os mapas de imagem executados no cliente, guardados em formato <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>, são inseridos diretamente na página como código HTML."
#: 00000002.xhp
msgctxt ""
@@ -985,7 +985,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
-msgstr ""
+msgstr "SGML significa \"Standard Generalized Markup Language\". O SGML é baseado na ideia de que os documentos possuem elementos estruturais e outros elementos semânticos que podem ser descritos sem referência ao modo como os mesmos deverão ser apresentados. A apresentação real de um documento dessa natureza pode variar, dependendo do suporte de saída e das preferências de estilo. Em textos estruturados, o SGML define não só estruturas (em DTD = Document Type Definition - Definição de Tipo de Documento), como garante igualmente que estas são utilizadas de forma consistente."
#: 00000002.xhp
msgctxt ""
@@ -993,7 +993,7 @@ msgctxt ""
"par_id3148747\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> é uma aplicação especializada de SGML. Isto significa que a maioria dos navegadores web apenas permite um intervalo limitado de padrões SGML e que quase todos os sistemas ativos para SGML podem produzir páginas HTML atrativas."
#: 00000002.xhp
msgctxt ""
@@ -1041,7 +1041,7 @@ msgctxt ""
"par_id3156360\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr ""
+msgstr "As páginas <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> contêm determinadas instruções estruturais e de formatação designadas por controlos. Os controlos são palavras de código, delimitadas por parênteses, na linguagem de descrição de documentos HTML. Muitos controlos contêm referências a hiperligações e texto entre o parêntese de abertura e o parêntese de fecho. Por exemplo, os títulos estão assinalados pelos controlos <h1> no início e </h1> no fim do título. Alguns controlos aparecem isolados, tais como <br> numa quebra de linha, ou <img ...> para ligar a um objeto gráfico."
#: 00000002.xhp
msgctxt ""
@@ -1573,7 +1573,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: 00000004.xhp
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: 00000004.xhp
msgctxt ""
@@ -10116,7 +10116,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Borders</emph> tab"
-msgstr ""
+msgstr "Escolha <emph>Formatar - Moldura e objeto - Propriedades - Contornos</emph>"
#: 00040500.xhp
msgctxt ""
@@ -10212,7 +10212,7 @@ msgctxt ""
"par_id3150592\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Area</emph> tab"
-msgstr ""
+msgstr "Escolha <emph>Formatar - Moldura e objeto - Propriedades - Área</emph>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/01.po b/source/pt/helpcontent2/source/text/shared/01.po
index b81f76f4b43..66a2a37b466 100644
--- a/source/pt/helpcontent2/source/text/shared/01.po
+++ b/source/pt/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-10 23:18+0000\n"
+"PO-Revision-Date: 2017-04-01 15:38+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489187936.000000\n"
+"X-POOTLE-MTIME: 1491061105.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -172,7 +172,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Creates a new presentation document ($[officename] Impress)."
-msgstr ""
+msgstr "Cria uma nova apresentação ($[officename] Impress). "
#: 01010000.xhp
msgctxt ""
@@ -434,7 +434,7 @@ msgctxt ""
"par_idN10A15\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cria uma nova apresentação ($[officename] Impress).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -655,7 +655,7 @@ msgctxt ""
"104\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: 01010100.xhp
msgctxt ""
@@ -2208,7 +2208,7 @@ msgctxt ""
"hd_id3147250\n"
"help.text"
msgid "Up One Level"
-msgstr ""
+msgstr "Subir um nível"
#: 01020000.xhp
msgctxt ""
@@ -2885,7 +2885,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: 01070000.xhp
msgctxt ""
@@ -3141,7 +3141,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: 01070001.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/explorer/database.po b/source/pt/helpcontent2/source/text/shared/explorer/database.po
index 64aa708a26d..e2a8026cb30 100644
--- a/source/pt/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/pt/helpcontent2/source/text/shared/explorer/database.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-02-25 16:10+0000\n"
+"PO-Revision-Date: 2017-04-01 15:38+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488039010.000000\n"
+"X-POOTLE-MTIME: 1491061119.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -11012,7 +11012,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "Up One Level"
-msgstr "Um nível acima"
+msgstr "Subir um nível"
#: menufilesave.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/optionen.po b/source/pt/helpcontent2/source/text/shared/optionen.po
index 39dda7bbb94..083b6b46507 100644
--- a/source/pt/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-03-24 23:55+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490399719.000000\n"
#: 01000000.xhp
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Escolher</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/simpress/00.po b/source/pt/helpcontent2/source/text/simpress/00.po
index 2894719d1ff..07fb67acab0 100644
--- a/source/pt/helpcontent2/source/text/simpress/00.po
+++ b/source/pt/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 16:53+0000\n"
+"PO-Revision-Date: 2017-04-01 16:45+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467823986.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491065134.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Slide Master Design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Escolha <emph>Diapositivo - Design do modelo global de diapositivos</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/simpress/01.po b/source/pt/helpcontent2/source/text/simpress/01.po
index 3cca06e4a53..a021469c787 100644
--- a/source/pt/helpcontent2/source/text/simpress/01.po
+++ b/source/pt/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-19 23:16+0000\n"
+"PO-Revision-Date: 2017-04-01 16:54+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487546219.000000\n"
+"X-POOTLE-MTIME: 1491065644.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Opens the Navigator, where you can quickly jump to other slides or move between open files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Abre o navegador, no qual pode navegar entre os diversos diapositivos ou ficheiros abertos.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Jumps to the first slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Recua para o primeiro diapositivo da apresentação.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">Moves back one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">Recua um diapositivo na apresentação.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -633,7 +633,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">Move forward one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">Avança um diapositivo na apresentação.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -668,7 +668,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">Jumps to the last slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">Avança para o último diapositivo da apresentação.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/dragmode\">Drag and drop slides and named objects into the active slide.</ahelp> You can only insert slides and named objects from a saved file. You can only insert named objects as copies."
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/dragmode\">Arraste e largue os diapositivos e/ou objetos para o diapositivo ativo.</ahelp> Apenas pode inserir diapositivos e objetos de um ficheiro guardado. Só é possível inserir objetos nomeados como cópias."
#: 02110000.xhp
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">Lists available slides. Double-click a slide to make it the active slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">Lista os diapositivos disponíveis. Clique duas vezes no diapositivo para o tornar ativo.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/documents\">Lists available $[officename] files.</ahelp> Select a file to display the contents you can insert."
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/documents\">Lista os ficheiros do $[officename] disponíveis.</ahelp> Selecione um ficheiro para ver o conteúdo que pode inserir."
#: 02120000.xhp
msgctxt ""
@@ -2159,7 +2159,7 @@ msgctxt ""
"par_id083120160418133174\n"
"help.text"
msgid "<image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">Header and footer dialog</alt></image>"
-msgstr ""
+msgstr "Caixa de diálogo <image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">Cabeçalho e rodapé</alt></image>"
#: 03152000.xhp
msgctxt ""
@@ -6768,7 +6768,7 @@ msgctxt ""
"bm_id3153818\n"
"help.text"
msgid "<bookmark_value>presentations; settings for</bookmark_value> <bookmark_value>slide shows; settings for</bookmark_value> <bookmark_value>presentations; window / full screen</bookmark_value> <bookmark_value>multiple displays</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>apresentações; definições</bookmark_value> <bookmark_value>apresentações de diapositivos; definições</bookmark_value> <bookmark_value>apresentações; janela/ecrã completo</bookmark_value> <bookmark_value>vários monitores</bookmark_value>"
#: 06080000.xhp
msgctxt ""
@@ -6904,7 +6904,7 @@ msgctxt ""
"hd_id3145593\n"
"help.text"
msgid "Loop and repeat after"
-msgstr ""
+msgstr "Ciclo e repetir após"
#: 06080000.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/01.po b/source/pt/helpcontent2/source/text/swriter/01.po
index c32b7b0f593..abb3c2e87d8 100644
--- a/source/pt/helpcontent2/source/text/swriter/01.po
+++ b/source/pt/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-27 22:43+0000\n"
+"PO-Revision-Date: 2017-04-01 16:58+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490654615.000000\n"
+"X-POOTLE-MTIME: 1491065899.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15152,7 +15152,7 @@ msgctxt ""
"hd_id3147581\n"
"help.text"
msgid "Line numbering"
-msgstr ""
+msgstr "Numeração de linhas"
#: 05030800.xhp
msgctxt ""
@@ -15160,7 +15160,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "Specify the <link href=\"text/swriter/01/06180000.xhp\" name=\"Line numbering\">Line numbering</link> options. To add line numbers to your document, choose <emph>Tools - Line Numbering</emph>."
-msgstr ""
+msgstr "Especifique as opções de <link href=\"text/swriter/01/06180000.xhp\" name=\"Line numbering\">Numeração de linhas</link>. Para adicionar números de linhas ao documento, escolha <emph>Ferramentas - Numeração de linhas</emph>."
#: 05030800.xhp
msgctxt ""
@@ -15168,7 +15168,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "Include this paragraph in line numbering"
-msgstr ""
+msgstr "Incluir este parágrafo na numeração das linhas"
#: 05030800.xhp
msgctxt ""
@@ -15176,7 +15176,7 @@ msgctxt ""
"par_id3156267\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_COUNT_PARA\">Includes the current paragraph in the line numbering.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_COUNT_PARA\">Inclui o parágrafo atual na numeração de linhas.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -15184,7 +15184,7 @@ msgctxt ""
"hd_id3151026\n"
"help.text"
msgid "Restart at this paragraph"
-msgstr ""
+msgstr "Reiniciar neste parágrafo"
#: 05030800.xhp
msgctxt ""
@@ -15192,7 +15192,7 @@ msgctxt ""
"par_id3149168\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_RESTART_PARACOUNT\">Restarts the line numbering at the current paragraph, or at the number that you enter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_RESTART_PARACOUNT\">Reinicia a numeração das linhas no parágrafo atual, ou no número que introduzir.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -15200,7 +15200,7 @@ msgctxt ""
"hd_id3145775\n"
"help.text"
msgid "Start with"
-msgstr ""
+msgstr "Iniciar com"
#: 05030800.xhp
msgctxt ""
@@ -15208,7 +15208,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_RESTART_PARA\">Enter the number at which to restart the line numbering</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_RESTART_PARA\">Introduza o número a partir do qual reinicia a numeração de linhas</ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -15660,7 +15660,7 @@ msgctxt ""
"hd_id3154767\n"
"help.text"
msgid "<link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\">Footnote</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\">Nota de rodapé</link>"
#: 05040600.xhp
msgctxt ""
@@ -15668,7 +15668,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Especifica as opções de esquema para as notas de rodapé, incluindo a linha que separa a nota de rodapé do corpo do documento.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -15700,7 +15700,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Automatically adjusts the height of the footnote area depending on the number of footnotes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Ajustar automaticamente a altura da área do rodapé de acordo com o número de notas de rodapé.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -15708,7 +15708,7 @@ msgctxt ""
"hd_id3154099\n"
"help.text"
msgid "Maximum footnote height"
-msgstr ""
+msgstr "Altura máxima da nota de rodapé"
#: 05040600.xhp
msgctxt ""
@@ -15716,7 +15716,7 @@ msgctxt ""
"par_id3149807\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheight\">Sets a maximum height for the footnote area. Enable this option, then enter the height.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheight\">Define uma altura máxima para a área da nota de rodapé. Ative esta opção e introduza a altura.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -15724,7 +15724,7 @@ msgctxt ""
"par_id3154568\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightsb\">Enter the maximum height for the footnote area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightsb\">Introduza a altura máxima para a área da nota de rodapé.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -15732,7 +15732,7 @@ msgctxt ""
"hd_id3151318\n"
"help.text"
msgid "Space to text"
-msgstr ""
+msgstr "Espaço até ao texto:"
#: 05040600.xhp
msgctxt ""
diff --git a/source/pt/sd/uiconfig/simpress/ui.po b/source/pt/sd/uiconfig/simpress/ui.po
index 7e5c5df8950..db4f377c4fa 100644
--- a/source/pt/sd/uiconfig/simpress/ui.po
+++ b/source/pt/sd/uiconfig/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-21 15:55+0000\n"
+"PO-Revision-Date: 2017-04-01 16:53+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: none\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485014111.000000\n"
+"X-POOTLE-MTIME: 1491065631.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Loop and repeat after:"
-msgstr "Enro_lar e repetir após:"
+msgstr "Cic_lo e repetir após:"
#: presentationdialog.ui
msgctxt ""
diff --git a/source/pt/sfx2/source/dialog.po b/source/pt/sfx2/source/dialog.po
index 313fa954c65..fc9a1c5b39d 100644
--- a/source/pt/sfx2/source/dialog.po
+++ b/source/pt/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-19 22:12+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:44+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484863944.000000\n"
+"X-POOTLE-MTIME: 1492263855.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierárquico"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Modo de preenchimento de formato"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Novo estilo a partir da seleção"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Atualizar estilo"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/pt/sfx2/uiconfig/ui.po b/source/pt/sfx2/uiconfig/ui.po
index 61ce84a785f..a6db33ee075 100644
--- a/source/pt/sfx2/uiconfig/ui.po
+++ b/source/pt/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-19 22:15+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:44+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: none\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484864138.000000\n"
+"X-POOTLE-MTIME: 1492263873.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Todas as marcas aqui mencionadas, registadas ou não, são propriedade dos seus detentores.\n"
"\n"
-"Copyright © 2000-2016, os colaboradores do LibreOffice. Todos os direitos reservados.\n"
+"Copyright © 2000-2017, os colaboradores do LibreOffice. Todos os direitos reservados.\n"
"\n"
"Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Aceda ao sítio http://www.libreoffice.org/ para saber mais detalhes."
diff --git a/source/pt/svtools/source/dialogs.po b/source/pt/svtools/source/dialogs.po
index af4a1a3c102..28b4c485048 100644
--- a/source/pt/svtools/source/dialogs.po
+++ b/source/pt/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-08-22 23:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:44+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1471909011.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492263881.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Texto formatado [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Texto formatado [RTF]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/pt/svtools/source/misc.po b/source/pt/svtools/source/misc.po
index c3aa2a6e218..94ee32ea648 100644
--- a/source/pt/svtools/source/misc.po
+++ b/source/pt/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-19 22:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:44+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484864290.000000\n"
+"X-POOTLE-MTIME: 1492263891.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Húngaro (alfabeto rúnico)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Inglês (Malásia)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pt/svx/source/stbctrls.po b/source/pt/svx/source/stbctrls.po
index 7d72cde4db7..c3fca6f7e49 100644
--- a/source/pt/svx/source/stbctrls.po
+++ b/source/pt/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 16:10+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485015028.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Ajustar diapositivo à janela atual."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/pt/svx/uiconfig/ui.po b/source/pt/svx/uiconfig/ui.po
index 2e3cd1251e9..01cde3204ab 100644
--- a/source/pt/svx/uiconfig/ui.po
+++ b/source/pt/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-02-15 22:14+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-15 13:45+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487196897.000000\n"
+"X-POOTLE-MTIME: 1492263905.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "_Continuar no modo de segurança"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Sair"
+msgid "_Restart in Normal Mode"
+msgstr "_Reiniciar no modo normal"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ro/cui/uiconfig/ui.po b/source/ro/cui/uiconfig/ui.po
index 17b517a686a..7e08765ffcb 100644
--- a/source/ro/cui/uiconfig/ui.po
+++ b/source/ro/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-16 13:59+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484575174.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 LibreOffice contribuitori."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ro/helpcontent2/source/text/scalc/01.po b/source/ro/helpcontent2/source/text/scalc/01.po
index 77400c076f7..9da1666b531 100644
--- a/source/ro/helpcontent2/source/text/scalc/01.po
+++ b/source/ro/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 23:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5677,7 +5677,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5685,7 +5685,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/ro/helpcontent2/source/text/shared/optionen.po b/source/ro/helpcontent2/source/text/shared/optionen.po
index 7b9b5635e48..40a50b26fbc 100644
--- a/source/ro/helpcontent2/source/text/shared/optionen.po
+++ b/source/ro/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 16:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ro/sfx2/source/dialog.po b/source/ro/sfx2/source/dialog.po
index 406b360a2c8..323a33f28ae 100644
--- a/source/ro/sfx2/source/dialog.po
+++ b/source/ro/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-16 14:04+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484575467.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ierarhic"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ro/sfx2/uiconfig/ui.po b/source/ro/sfx2/uiconfig/ui.po
index b86a7345d32..deb522e71d4 100644
--- a/source/ro/sfx2/uiconfig/ui.po
+++ b/source/ro/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-16 14:11+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484575888.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME a fost publicat sub termenii licenței Mozilla Public License, v. 2.0. Copia licenței MPL se poate obține de pe adresa http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Notițele copyright referitoare la porțiunile sursei făcute de terțe părți, licențierea la unele părți a programului se pot găsi în fișierul LICENSE.html; alegeți Afișare licență pentru a citi detaliile exacte în limba engleză.\n"
-"\n"
-"Toate mărcile comerciale și mările comerciale înregistrate menționate aici sunt în proprietatea părților.\n"
-"\n"
-"Copyright © 2000–2016 LibreOffice contribuitori. Toate drepturile rezervate.\n"
-"\n"
-"Acest produs a fost crea de %OOOVENDOR, bazat pe OpenOffice.org, care este Copyright 2000, 2011 Oracle și/sau afiliați lui. %OOOVENDOR salută toți contribuitorii din comunitate. Pentru mai multe detalii vizitați http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ro/svtools/source/dialogs.po b/source/ro/svtools/source/dialogs.po
index 20b24d8503d..a53cf520c38 100644
--- a/source/ro/svtools/source/dialogs.po
+++ b/source/ro/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-29 10:53+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1454064811.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Text formatat [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ro/svtools/source/misc.po b/source/ro/svtools/source/misc.po
index c517afd7097..c3880362148 100644
--- a/source/ro/svtools/source/misc.po
+++ b/source/ro/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-03 14:49+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483454972.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Maghiară (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ro/svx/source/stbctrls.po b/source/ro/svx/source/stbctrls.po
index 8f91170c3e1..ac089f5cf18 100644
--- a/source/ro/svx/source/stbctrls.po
+++ b/source/ro/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:49+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-06-29 13:16+0000\n"
+"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449863387.000000\n"
+"X-POOTLE-MTIME: 1435583783.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Încape diapozitivul în fereastra curentă."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ro/svx/uiconfig/ui.po b/source/ro/svx/uiconfig/ui.po
index 76b8430cf74..a943cb330a8 100644
--- a/source/ro/svx/uiconfig/ui.po
+++ b/source/ro/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 20:40+0000\n"
"Last-Translator: Jobava <jobaval10n@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ru/cui/uiconfig/ui.po b/source/ru/cui/uiconfig/ui.po
index 2d4a1f4aa4c..3ea0c531b6f 100644
--- a/source/ru/cui/uiconfig/ui.po
+++ b/source/ru/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-18 18:03+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487440992.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 участники сообщества LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/scalc/01.po b/source/ru/helpcontent2/source/text/scalc/01.po
index 63523948c90..d006a76830a 100644
--- a/source/ru/helpcontent2/source/text/scalc/01.po
+++ b/source/ru/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-08 13:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-03-30 10:17+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488979100.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1490869040.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5711,7 +5711,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
@@ -53510,7 +53510,7 @@ msgctxt ""
"hd_id3153709\n"
"help.text"
msgid "Icon Set"
-msgstr ""
+msgstr "Набор значков"
#: 05120000.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/shared/optionen.po b/source/ru/helpcontent2/source/text/shared/optionen.po
index 443e19b0a9d..7989fe66a61 100644
--- a/source/ru/helpcontent2/source/text/shared/optionen.po
+++ b/source/ru/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-10-08 09:11+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
index 1d5a434aa3f..46ce02e4a4f 100644
--- a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-08 13:07+0000\n"
+"PO-Revision-Date: 2017-03-30 10:17+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488978470.000000\n"
+"X-POOTLE-MTIME: 1490869060.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Icon Set"
-msgstr "Условное форматирование: Набор пиктограмм"
+msgstr "Условное форматирование: Набор значков"
#: CalcCommands.xcu
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Icon Set..."
-msgstr "Набор пиктограмм..."
+msgstr "Набор значков..."
#: CalcCommands.xcu
msgctxt ""
diff --git a/source/ru/sfx2/source/dialog.po b/source/ru/sfx2/source/dialog.po
index 9a9e023f424..2f060d79c51 100644
--- a/source/ru/sfx2/source/dialog.po
+++ b/source/ru/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 08:13+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484986410.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "По иерархии"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ru/sfx2/uiconfig/ui.po b/source/ru/sfx2/uiconfig/ui.po
index 26e09865839..6995beaaac5 100644
--- a/source/ru/sfx2/uiconfig/ui.po
+++ b/source/ru/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-06 18:17+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483726631.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME доступен в соответствии с условиями Mozilla Public License версии 2.0. Копию лицензии MPL можно найти на http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Дополнительные уведомления об авторских правах и условия лицензии на код третьих лиц, применяемые к отдельным частям программного обеспечения, изложены в файле LICENSE.html; выберите Показать лицензию для просмотра подробностей на английском языке.\n"
-"\n"
-"Все товарные знаки, упомянутые здесь, являются собственностью их владельцев.\n"
-"\n"
-"Copyright © 2000-2016 разработчики LibreOffice. Все права защищены.\n"
-"\n"
-"Этот продукт был создан %OOOVENDOR на основе OpenOffice.org, Copyright 2000, 2011 Oracle и/или её аффилированные лица. %OOOVENDOR признателен всем участникам сообщества, подробности смотрите по адресу http://www.libreoffice.org/ ."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ru/svtools/source/dialogs.po b/source/ru/svtools/source/dialogs.po
index 011170b5fbb..fd11445ab0e 100644
--- a/source/ru/svtools/source/dialogs.po
+++ b/source/ru/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-12-13 10:37+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1450003066.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Форматированный текст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ru/svtools/source/misc.po b/source/ru/svtools/source/misc.po
index 3f402d80392..37eaeddbff7 100644
--- a/source/ru/svtools/source/misc.po
+++ b/source/ru/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-24 19:03+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482606216.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Венгерский (венгерские руны)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ru/svx/source/stbctrls.po b/source/ru/svx/source/stbctrls.po
index 4e4b192f942..763d8b4c746 100644
--- a/source/ru/svx/source/stbctrls.po
+++ b/source/ru/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: stbctrls\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-06 18:17+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483726642.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Подогнать слайд по текущему окну."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ru/svx/uiconfig/ui.po b/source/ru/svx/uiconfig/ui.po
index 5735579a6f6..75057e798a4 100644
--- a/source/ru/svx/uiconfig/ui.po
+++ b/source/ru/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-15 16:32+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484497967.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "Продолжить в безопасном режиме"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "Выход"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Применить и перезапустить"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ru/wizards/source/formwizard.po b/source/ru/wizards/source/formwizard.po
index 78c92a1aa99..ea87fb70b08 100644
--- a/source/ru/wizards/source/formwizard.po
+++ b/source/ru/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: formwizard\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-06-16 17:38+0000\n"
+"PO-Revision-Date: 2017-03-30 10:18+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1466098730.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490869102.000000\n"
#: dbwizres.src
msgctxt ""
@@ -4595,7 +4595,7 @@ msgctxt ""
"RID_WEBWIZARDDIALOG_START + 100\n"
"string.text"
msgid "Icon sets"
-msgstr "Набор значков"
+msgstr "Наборы значков"
#: dbwizres.src
msgctxt ""
@@ -4889,7 +4889,7 @@ msgctxt ""
"RID_WEBWIZARDDIALOG_START +137\n"
"string.text"
msgid "Icon set:"
-msgstr "Набор пиктограмм:"
+msgstr "Набор значков:"
#: dbwizres.src
msgctxt ""
@@ -4897,7 +4897,7 @@ msgctxt ""
"RID_WEBWIZARDDIALOG_START +138\n"
"string.text"
msgid "The icon set is used for presentations in HTML format."
-msgstr "Набор пиктограмм используется для представления в HTML-формате."
+msgstr "Набор значков используется для представления в HTML-формате."
#: dbwizres.src
msgctxt ""
@@ -4953,7 +4953,7 @@ msgctxt ""
"RID_WEBWIZARDDIALOG_START +145\n"
"string.text"
msgid "<no icon set>"
-msgstr "<без набора пиктограмм>"
+msgstr "<без набора значков>"
#: dbwizres.src
msgctxt ""
diff --git a/source/rw/cui/uiconfig/ui.po b/source/rw/cui/uiconfig/ui.po
index 35a3a253b8b..2cfaceeff5f 100644
--- a/source/rw/cui/uiconfig/ui.po
+++ b/source/rw/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 14:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476802389.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/rw/sfx2/source/dialog.po b/source/rw/sfx2/source/dialog.po
index b8c595ab2cc..f0234f15025 100644
--- a/source/rw/sfx2/source/dialog.po
+++ b/source/rw/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 02:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -719,6 +719,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Birutanwa"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/rw/sfx2/uiconfig/ui.po b/source/rw/sfx2/uiconfig/ui.po
index e9ceabd5f8a..f9c4ac80353 100644
--- a/source/rw/sfx2/uiconfig/ui.po
+++ b/source/rw/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 07:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467703464.000000\n"
#: alienwarndialog.ui
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/rw/svtools/source/dialogs.po b/source/rw/svtools/source/dialogs.po
index 4bb335f5325..e2d51597d5c 100644
--- a/source/rw/svtools/source/dialogs.po
+++ b/source/rw/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 20:45+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 19:38+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: rw\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385498705.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449862731.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Inyandiko yatunganyijwe [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/rw/svtools/source/misc.po b/source/rw/svtools/source/misc.po
index f59853fd8f5..960c3882280 100644
--- a/source/rw/svtools/source/misc.po
+++ b/source/rw/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-23 23:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464045317.000000\n"
+"X-POOTLE-MTIME: 1464045316.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3908,6 +3908,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/rw/svx/source/stbctrls.po b/source/rw/svx/source/stbctrls.po
index 563e35f0857..44e64e3744c 100644
--- a/source/rw/svx/source/stbctrls.po
+++ b/source/rw/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: rw\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449862948.000000\n"
+"X-POOTLE-MTIME: 1431517555.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/rw/svx/uiconfig/ui.po b/source/rw/svx/uiconfig/ui.po
index 0da67a2df2f..031d9384dcd 100644
--- a/source/rw/svx/uiconfig/ui.po
+++ b/source/rw/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 07:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sa-IN/cui/uiconfig/ui.po b/source/sa-IN/cui/uiconfig/ui.po
index 64ee0bdef8a..43622d186e7 100644
--- a/source/sa-IN/cui/uiconfig/ui.po
+++ b/source/sa-IN/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476802756.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476802680.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/sa-IN/sfx2/source/dialog.po b/source/sa-IN/sfx2/source/dialog.po
index a40212e239b..c55cd6fd3a2 100644
--- a/source/sa-IN/sfx2/source/dialog.po
+++ b/source/sa-IN/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 01:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457744516.000000\n"
+"X-POOTLE-MTIME: 1457744514.000000\n"
#: dialog.src
msgctxt ""
@@ -727,6 +727,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "आधिपत्यक्रमावलीसंबन्धिनी"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/sa-IN/sfx2/uiconfig/ui.po b/source/sa-IN/sfx2/uiconfig/ui.po
index 793c5f9d16c..9419c3cb43f 100644
--- a/source/sa-IN/sfx2/uiconfig/ui.po
+++ b/source/sa-IN/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 07:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467704922.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467704908.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sa-IN/svtools/source/dialogs.po b/source/sa-IN/svtools/source/dialogs.po
index 0d8bb95071a..7a409001593 100644
--- a/source/sa-IN/svtools/source/dialogs.po
+++ b/source/sa-IN/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-09-29 06:19+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:01+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411971543.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864088.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "संरचितपाठः [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sa-IN/svtools/source/misc.po b/source/sa-IN/svtools/source/misc.po
index 96bc20f77f9..4d3c31f49b2 100644
--- a/source/sa-IN/svtools/source/misc.po
+++ b/source/sa-IN/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462791676.000000\n"
+"X-POOTLE-MTIME: 1462791663.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3911,6 +3911,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sa-IN/svx/source/stbctrls.po b/source/sa-IN/svx/source/stbctrls.po
index fdf8a954336..fc9ff08e22b 100644
--- a/source/sa-IN/svx/source/stbctrls.po
+++ b/source/sa-IN/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:05+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sa_IN\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864311.000000\n"
+"X-POOTLE-MTIME: 1431523907.000000\n"
#: stbctrls.src
msgctxt ""
@@ -156,6 +156,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sa-IN/svx/uiconfig/ui.po b/source/sa-IN/svx/uiconfig/ui.po
index 5bb60292335..26a4d5911c2 100644
--- a/source/sa-IN/svx/uiconfig/ui.po
+++ b/source/sa-IN/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 08:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5094,16 +5094,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sat/cui/uiconfig/ui.po b/source/sat/cui/uiconfig/ui.po
index c9eb4d47751..505072cd434 100644
--- a/source/sat/cui/uiconfig/ui.po
+++ b/source/sat/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 15:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sat\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476802935.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476802804.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/sat/sfx2/source/dialog.po b/source/sat/sfx2/source/dialog.po
index 70a17d0d661..4a0b10c21f7 100644
--- a/source/sat/sfx2/source/dialog.po
+++ b/source/sat/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 01:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457745173.000000\n"
+"X-POOTLE-MTIME: 1457745172.000000\n"
#: dialog.src
#, fuzzy
@@ -782,6 +782,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "थार लेकाते (~w)"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/sat/sfx2/uiconfig/ui.po b/source/sat/sfx2/uiconfig/ui.po
index abc0f9a7aa0..0ed402c37ec 100644
--- a/source/sat/sfx2/uiconfig/ui.po
+++ b/source/sat/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 07:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 07:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sat\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467703712.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467703679.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -806,7 +806,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sat/svtools/source/dialogs.po b/source/sat/svtools/source/dialogs.po
index ae337f972c1..664c93c1531 100644
--- a/source/sat/svtools/source/dialogs.po
+++ b/source/sat/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-09-24 05:21+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:02+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sat\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411536075.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864176.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "रचना किया हुआ टेक्स्ट् [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sat/svtools/source/misc.po b/source/sat/svtools/source/misc.po
index 58196f1af7e..c4f9a297d61 100644
--- a/source/sat/svtools/source/misc.po
+++ b/source/sat/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462792846.000000\n"
+"X-POOTLE-MTIME: 1462792835.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3919,6 +3919,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sat/svx/source/stbctrls.po b/source/sat/svx/source/stbctrls.po
index c1ea775820b..ee789efd717 100644
--- a/source/sat/svx/source/stbctrls.po
+++ b/source/sat/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:06+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 12:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sat\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864401.000000\n"
+"X-POOTLE-MTIME: 1431520414.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sat/svx/uiconfig/ui.po b/source/sat/svx/uiconfig/ui.po
index f9757f70521..06381330cb4 100644
--- a/source/sat/svx/uiconfig/ui.po
+++ b/source/sat/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 07:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5110,16 +5110,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sd/cui/uiconfig/ui.po b/source/sd/cui/uiconfig/ui.po
index 465198fd6de..546d7f6ff72 100644
--- a/source/sd/cui/uiconfig/ui.po
+++ b/source/sd/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 14:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476802776.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476802694.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/sd/sfx2/source/dialog.po b/source/sd/sfx2/source/dialog.po
index 7b155c208af..0d146bc95be 100644
--- a/source/sd/sfx2/source/dialog.po
+++ b/source/sd/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 01:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457745447.000000\n"
+"X-POOTLE-MTIME: 1457745439.000000\n"
#: dialog.src
msgctxt ""
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "درجيوار"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/sd/sfx2/uiconfig/ui.po b/source/sd/sfx2/uiconfig/ui.po
index 33d8efab3ab..34372948500 100644
--- a/source/sd/sfx2/uiconfig/ui.po
+++ b/source/sd/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 07:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 07:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467705254.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467705228.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -800,7 +800,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sd/svtools/source/dialogs.po b/source/sd/svtools/source/dialogs.po
index f484cda8612..49314777a16 100644
--- a/source/sd/svtools/source/dialogs.po
+++ b/source/sd/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2014-08-19 10:48+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:01+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1408445336.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864066.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "رچيل متن [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sd/svtools/source/misc.po b/source/sd/svtools/source/misc.po
index c8688574f49..548507ad4d0 100644
--- a/source/sd/svtools/source/misc.po
+++ b/source/sd/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 10:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3922,6 +3922,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sd/svx/source/stbctrls.po b/source/sd/svx/source/stbctrls.po
index 9c52591e200..8a558d2b6fd 100644
--- a/source/sd/svx/source/stbctrls.po
+++ b/source/sd/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:05+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 14:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sd\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864325.000000\n"
+"X-POOTLE-MTIME: 1431527905.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sd/svx/uiconfig/ui.po b/source/sd/svx/uiconfig/ui.po
index 3376c697c49..deed8938961 100644
--- a/source/sd/svx/uiconfig/ui.po
+++ b/source/sd/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 08:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5093,16 +5093,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/si/cui/uiconfig/ui.po b/source/si/cui/uiconfig/ui.po
index 09dbdddf7dd..046bd66277d 100644
--- a/source/si/cui/uiconfig/ui.po
+++ b/source/si/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: si\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476802815.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476802712.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/si/helpcontent2/source/text/scalc/01.po b/source/si/helpcontent2/source/text/scalc/01.po
index 8426b5f9e60..d16c4c21a46 100644
--- a/source/si/helpcontent2/source/text/scalc/01.po
+++ b/source/si/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,7 +5695,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5703,7 +5703,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/si/helpcontent2/source/text/shared/optionen.po b/source/si/helpcontent2/source/text/shared/optionen.po
index f59ed5d04d8..6c672ae8247 100644
--- a/source/si/helpcontent2/source/text/shared/optionen.po
+++ b/source/si/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/si/sfx2/source/dialog.po b/source/si/sfx2/source/dialog.po
index bf89a6f6364..7411d4407e8 100644
--- a/source/si/sfx2/source/dialog.po
+++ b/source/si/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 01:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457745407.000000\n"
+"X-POOTLE-MTIME: 1457745405.000000\n"
#: dialog.src
msgctxt ""
@@ -731,6 +731,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ධූරාන්වයික"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/si/sfx2/uiconfig/ui.po b/source/si/sfx2/uiconfig/ui.po
index 34ac6b99484..02a80186188 100644
--- a/source/si/sfx2/uiconfig/ui.po
+++ b/source/si/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:39+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 08:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: si\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467707952.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467707928.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/si/svtools/source/dialogs.po b/source/si/svtools/source/dialogs.po
index b213fa6715c..7e0f2eb6e94 100644
--- a/source/si/svtools/source/dialogs.po
+++ b/source/si/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 21:18+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 19:53+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: si\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385500687.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449863591.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "හැඩතල ගැන්වූ පෙළ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/si/svtools/source/misc.po b/source/si/svtools/source/misc.po
index 019fb1175c4..afde49e8a31 100644
--- a/source/si/svtools/source/misc.po
+++ b/source/si/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462791889.000000\n"
+"X-POOTLE-MTIME: 1462791888.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/si/svx/source/stbctrls.po b/source/si/svx/source/stbctrls.po
index d1cd920160c..fea28dfdfcf 100644
--- a/source/si/svx/source/stbctrls.po
+++ b/source/si/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:57+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 15:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: si\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449863825.000000\n"
+"X-POOTLE-MTIME: 1431531544.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/si/svx/uiconfig/ui.po b/source/si/svx/uiconfig/ui.po
index 97a69f19b7c..e75e781a8b3 100644
--- a/source/si/svx/uiconfig/ui.po
+++ b/source/si/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 08:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5080,16 +5080,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sid/cui/uiconfig/ui.po b/source/sid/cui/uiconfig/ui.po
index 59b9760cc86..1c4d178b29d 100644
--- a/source/sid/cui/uiconfig/ui.po
+++ b/source/sid/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-06 19:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sid\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476802972.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481051187.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/sid/helpcontent2/source/text/scalc/01.po b/source/sid/helpcontent2/source/text/scalc/01.po
index 93ca36807eb..fed06f72971 100644
--- a/source/sid/helpcontent2/source/text/scalc/01.po
+++ b/source/sid/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Localizers\n"
@@ -5724,22 +5724,20 @@ msgid "Functions"
msgstr "Assiishshubba"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/shared/optionen.po b/source/sid/helpcontent2/source/text/shared/optionen.po
index 3854ba32c1b..fd9f1b09586 100644
--- a/source/sid/helpcontent2/source/text/shared/optionen.po
+++ b/source/sid/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 20:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/sid/sfx2/source/dialog.po b/source/sid/sfx2/source/dialog.po
index 7fd06ba871d..6ce941275f7 100644
--- a/source/sid/sfx2/source/dialog.po
+++ b/source/sid/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-12 01:17+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 18:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sdaama ICT\n"
"Language: sid\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1457745439.000000\n"
+"X-POOTLE-MTIME: 1481309281.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Deerraantete"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/sid/sfx2/uiconfig/ui.po b/source/sid/sfx2/uiconfig/ui.po
index a4db0687a5a..e7c14642f5c 100644
--- a/source/sid/sfx2/uiconfig/ui.po
+++ b/source/sid/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:40+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sid\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467708012.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481311408.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sid/svtools/source/dialogs.po b/source/sid/svtools/source/dialogs.po
index 505ae3994f0..98f4237e9fe 100644
--- a/source/sid/svtools/source/dialogs.po
+++ b/source/sid/svtools/source/dialogs.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 21:22+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 19:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sdaama ICT\n"
"Language: sid\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1385500944.000000\n"
+"X-POOTLE-MTIME: 1449863652.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -340,6 +340,14 @@ msgstr "Suuddino borro [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sid/svtools/source/misc.po b/source/sid/svtools/source/misc.po
index f22030da2d6..1f94e588b92 100644
--- a/source/sid/svtools/source/misc.po
+++ b/source/sid/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-09 11:12+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama translators\n"
"Language: sid\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1462792367.000000\n"
+"X-POOTLE-MTIME: 1481313616.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3894,6 +3894,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sid/svx/source/stbctrls.po b/source/sid/svx/source/stbctrls.po
index f96a7ded7ef..30c0f18bd31 100644
--- a/source/sid/svx/source/stbctrls.po
+++ b/source/sid/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:58+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 22:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sdaama ICT\n"
"Language: sid\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1449863890.000000\n"
+"X-POOTLE-MTIME: 1481321439.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sid/svx/uiconfig/ui.po b/source/sid/svx/uiconfig/ui.po
index 84daca51d6f..5ca7c800715 100644
--- a/source/sid/svx/uiconfig/ui.po
+++ b/source/sid/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-10 01:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -5087,16 +5087,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sk/cui/uiconfig/ui.po b/source/sk/cui/uiconfig/ui.po
index 572d85bae7e..3b4c9d32b75 100644
--- a/source/sk/cui/uiconfig/ui.po
+++ b/source/sk/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484835721.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 prispievatelia LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/scalc/01.po b/source/sk/helpcontent2/source/text/scalc/01.po
index 37b47ee309e..bdecadce0af 100644
--- a/source/sk/helpcontent2/source/text/scalc/01.po
+++ b/source/sk/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-22 08:56+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487753779.000000\n"
#: 01120000.xhp
@@ -5709,22 +5709,20 @@ msgid "Functions"
msgstr "Funkcie"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared/optionen.po b/source/sk/helpcontent2/source/text/shared/optionen.po
index 97279df424d..95f2039350e 100644
--- a/source/sk/helpcontent2/source/text/shared/optionen.po
+++ b/source/sk/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-01-19 15:42+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484840527.000000\n"
#: 01000000.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/sk/sfx2/source/dialog.po b/source/sk/sfx2/source/dialog.po
index 7625ba0bd99..6450e8e4458 100644
--- a/source/sk/sfx2/source/dialog.po
+++ b/source/sk/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-14 10:49+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484390961.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarchický"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/sk/sfx2/uiconfig/ui.po b/source/sk/sfx2/uiconfig/ui.po
index 5771da6397e..f65e6050c7b 100644
--- a/source/sk/sfx2/uiconfig/ui.po
+++ b/source/sk/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 14:21+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484835678.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME je k dispozícii za podmienok licencie Mozilla Public License, v. 2.0, ktorej kópiu nájdete na stránke http://mozilla.org/MPL/2.0/\n"
-"\n"
-"Doplnkové údaje o autorských právach a licenčných podmienkach tretích strán, vzťahujúcich sa na časti tohto programu, nájdete v súbore LICENSE.html. Ak sa chcete zoznámiť s detailami, zvoľte možnosť Zobraziť licenciu (informácie len v angličtine).\n"
-"\n"
-"Všetky ochranné známky a registrované ochranné známky, ktoré sú tu spomenuté, sú majetkom ich vlastníkov.\n"
-"\n"
-"Copyright © 2000–2016 prispievatelia do LibreOffice a / alebo ich pridružené spoločnosti. Všetky práva vyhradené.\n"
-"\n"
-"Tento produkt vytvorila %OOOVENDOR na základe OpenOffice.org, ktorý je Copyright 2000, 2011 Oracle a / alebo jeho pobočky. %OOOVENDOR ďakuje všetkým členom komunity, podrobnosti nájdete na stránke http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/sk/svtools/source/dialogs.po b/source/sk/svtools/source/dialogs.po
index 5d62b1e8ac2..364886d0260 100644
--- a/source/sk/svtools/source/dialogs.po
+++ b/source/sk/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484835745.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formátovaný text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sk/svtools/source/misc.po b/source/sk/svtools/source/misc.po
index 68d552c09a4..bc13c331d5a 100644
--- a/source/sk/svtools/source/misc.po
+++ b/source/sk/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484835747.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "maďarčina (staromaďarské písmo)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sk/svx/source/stbctrls.po b/source/sk/svx/source/stbctrls.po
index 2b89ea02ee4..d0ce747939c 100644
--- a/source/sk/svx/source/stbctrls.po
+++ b/source/sk/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-08 07:12+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483859530.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Prispôsobiť snímku aktuálnemu oknu."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sk/svx/uiconfig/ui.po b/source/sk/svx/uiconfig/ui.po
index 115a9022697..402ebf145fa 100644
--- a/source/sk/svx/uiconfig/ui.po
+++ b/source/sk/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484835744.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Pokračovať v núdzovom režime"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "U_končiť"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Použiť zmeny a _reštartovať"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/sq/cui/uiconfig/ui.po b/source/sq/cui/uiconfig/ui.po
index 0190d45da23..a982bd3eb6d 100644
--- a/source/sq/cui/uiconfig/ui.po
+++ b/source/sq/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-06 15:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LibreOffice Albanian Translators\n"
"Language: sq\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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476802847.000000\n"
+"X-POOTLE-MTIME: 1481039201.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 Kontribuuesit e LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/sq/helpcontent2/source/text/scalc/01.po b/source/sq/helpcontent2/source/text/scalc/01.po
index 0afe66421c9..35f4eafc5f1 100644
--- a/source/sq/helpcontent2/source/text/scalc/01.po
+++ b/source/sq/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 23:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5700,22 +5700,20 @@ msgid "Functions"
msgstr "Funksionet"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/sq/helpcontent2/source/text/shared/optionen.po b/source/sq/helpcontent2/source/text/shared/optionen.po
index c911126a5db..399d25fd1da 100644
--- a/source/sq/helpcontent2/source/text/shared/optionen.po
+++ b/source/sq/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 20:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/sq/sfx2/source/dialog.po b/source/sq/sfx2/source/dialog.po
index 2e37b2d2c77..0c4d4c8f113 100644
--- a/source/sq/sfx2/source/dialog.po
+++ b/source/sq/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-12 01:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 03:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457747942.000000\n"
+"X-POOTLE-MTIME: 1481254085.000000\n"
#: dialog.src
msgctxt ""
@@ -721,6 +721,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkike"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/sq/sfx2/uiconfig/ui.po b/source/sq/sfx2/uiconfig/ui.po
index cfb4d709bab..da8778505b8 100644
--- a/source/sq/sfx2/uiconfig/ui.po
+++ b/source/sq/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 09:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 04:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: sq\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467710295.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481256356.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -796,7 +796,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sq/svtools/source/dialogs.po b/source/sq/svtools/source/dialogs.po
index bb684855f30..f092a5d8659 100644
--- a/source/sq/svtools/source/dialogs.po
+++ b/source/sq/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-06-18 09:43+0000\n"
-"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:05+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1434620595.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864334.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Tekst i formatizuar [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sq/svtools/source/misc.po b/source/sq/svtools/source/misc.po
index 0fff921d757..d76f691c4cc 100644
--- a/source/sq/svtools/source/misc.po
+++ b/source/sq/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-09 11:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 07:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: sq\n"
"Language: sq\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1462791776.000000\n"
+"X-POOTLE-MTIME: 1481266910.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3890,6 +3890,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sq/svx/source/stbctrls.po b/source/sq/svx/source/stbctrls.po
index 0d5f13ed16a..98c2bd83aff 100644
--- a/source/sq/svx/source/stbctrls.po
+++ b/source/sq/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:08+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-09 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864495.000000\n"
+"X-POOTLE-MTIME: 1481284666.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Përshtat diapozitivin me dritaren aktuale."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sq/svx/uiconfig/ui.po b/source/sq/svx/uiconfig/ui.po
index 174c35e67ef..0db5bb89def 100644
--- a/source/sq/svx/uiconfig/ui.po
+++ b/source/sq/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-09 16:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5066,16 +5066,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ss/cui/uiconfig/ui.po b/source/ss/cui/uiconfig/ui.po
index 5e907fb7ade..a37c97f8708 100644
--- a/source/ss/cui/uiconfig/ui.po
+++ b/source/ss/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476802893.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ss/sfx2/source/dialog.po b/source/ss/sfx2/source/dialog.po
index 8defbd9343b..b0373d0e80c 100644
--- a/source/ss/sfx2/source/dialog.po
+++ b/source/ss/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 01:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457744794.000000\n"
+"X-POOTLE-MTIME: 1457744790.000000\n"
#: dialog.src
msgctxt ""
@@ -715,6 +715,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ngekwetigaba"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/ss/sfx2/uiconfig/ui.po b/source/ss/sfx2/uiconfig/ui.po
index 25621e1c3a4..288d8924eb3 100644
--- a/source/ss/sfx2/uiconfig/ui.po
+++ b/source/ss/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 08:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467709112.000000\n"
#: alienwarndialog.ui
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ss/svtools/source/dialogs.po b/source/ss/svtools/source/dialogs.po
index e476ad3d2c2..5f46cf05526 100644
--- a/source/ss/svtools/source/dialogs.po
+++ b/source/ss/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 21:36+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:02+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ss\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385501781.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864138.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Umbhalo lohleliwe [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ss/svtools/source/misc.po b/source/ss/svtools/source/misc.po
index 2a64252cdb5..9ca8d548154 100644
--- a/source/ss/svtools/source/misc.po
+++ b/source/ss/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 10:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3935,6 +3935,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ss/svx/source/stbctrls.po b/source/ss/svx/source/stbctrls.po
index abb4489ce1c..bfbc22d9d09 100644
--- a/source/ss/svx/source/stbctrls.po
+++ b/source/ss/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 19:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ss\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864259.000000\n"
+"X-POOTLE-MTIME: 1431543908.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ss/svx/uiconfig/ui.po b/source/ss/svx/uiconfig/ui.po
index a4ac284b380..77e1f1cad0e 100644
--- a/source/ss/svx/uiconfig/ui.po
+++ b/source/ss/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/st/cui/uiconfig/ui.po b/source/st/cui/uiconfig/ui.po
index 758a48f94f7..100eac27a1b 100644
--- a/source/st/cui/uiconfig/ui.po
+++ b/source/st/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476802980.000000\n"
#: aboutconfigdialog.ui
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/st/sfx2/source/dialog.po b/source/st/sfx2/source/dialog.po
index 26987eac942..c7875e13cad 100644
--- a/source/st/sfx2/source/dialog.po
+++ b/source/st/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 03:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -716,6 +716,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "E nang le mehato e fapaneng"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/st/sfx2/uiconfig/ui.po b/source/st/sfx2/uiconfig/ui.po
index a87f6ff1f01..00ac1e5067f 100644
--- a/source/st/sfx2/uiconfig/ui.po
+++ b/source/st/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467710669.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467710668.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/st/svtools/source/dialogs.po b/source/st/svtools/source/dialogs.po
index 099f2922659..c11f1b627a4 100644
--- a/source/st/svtools/source/dialogs.po
+++ b/source/st/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 21:43+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:02+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: st\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385502236.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864158.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Temana e fomatilweng [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/st/svtools/source/misc.po b/source/st/svtools/source/misc.po
index 1f110d5a449..15a9604a050 100644
--- a/source/st/svtools/source/misc.po
+++ b/source/st/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 10:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3973,6 +3973,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/st/svx/source/stbctrls.po b/source/st/svx/source/stbctrls.po
index ccdaeda29ee..a7c0d3f4d64 100644
--- a/source/st/svx/source/stbctrls.po
+++ b/source/st/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 19:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: st\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449864277.000000\n"
+"X-POOTLE-MTIME: 1431546174.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/st/svx/uiconfig/ui.po b/source/st/svx/uiconfig/ui.po
index 80dc64ddb49..ac4da9d7f54 100644
--- a/source/st/svx/uiconfig/ui.po
+++ b/source/st/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sv/cui/uiconfig/ui.po b/source/sv/cui/uiconfig/ui.po
index e401fd7b515..e8fd9f949ba 100644
--- a/source/sv/cui/uiconfig/ui.po
+++ b/source/sv/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-29 11:08+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490785680.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice bidragsgivare."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/sv/extensions/source/propctrlr.po b/source/sv/extensions/source/propctrlr.po
index e5c12f0ca0f..7c49a05a160 100644
--- a/source/sv/extensions/source/propctrlr.po
+++ b/source/sv/extensions/source/propctrlr.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 19:50+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-31 17:11+0000\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449863447.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490980282.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -1279,7 +1279,7 @@ msgctxt ""
"13:45\n"
"itemlist.text"
msgid "13:45"
-msgstr ""
+msgstr "13:45"
#: formres.src
msgctxt ""
@@ -1288,7 +1288,7 @@ msgctxt ""
"13:45:00\n"
"itemlist.text"
msgid "13:45:00"
-msgstr ""
+msgstr "13:45:00"
#: formres.src
msgctxt ""
@@ -1297,7 +1297,7 @@ msgctxt ""
"01:45 PM\n"
"itemlist.text"
msgid "01:45 PM"
-msgstr ""
+msgstr "01:45 PM"
#: formres.src
msgctxt ""
@@ -1306,7 +1306,7 @@ msgctxt ""
"01:45:00 PM\n"
"itemlist.text"
msgid "01:45:00 PM"
-msgstr ""
+msgstr "01:45:00 PM"
#: formres.src
msgctxt ""
@@ -1315,7 +1315,7 @@ msgctxt ""
"Not Selected\n"
"itemlist.text"
msgid "Not Selected"
-msgstr ""
+msgstr "Ej vald"
#: formres.src
msgctxt ""
@@ -1333,7 +1333,7 @@ msgctxt ""
"Not Defined\n"
"itemlist.text"
msgid "Not Defined"
-msgstr ""
+msgstr "Inte definierad"
#: formres.src
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"All records\n"
"itemlist.text"
msgid "All records"
-msgstr ""
+msgstr "Alla poster"
#: formres.src
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"Active record\n"
"itemlist.text"
msgid "Active record"
-msgstr ""
+msgstr "Aktiv post"
#: formres.src
msgctxt ""
@@ -1360,7 +1360,7 @@ msgctxt ""
"Current page\n"
"itemlist.text"
msgid "Current page"
-msgstr ""
+msgstr "Aktuell sida"
#: formres.src
msgctxt ""
@@ -1369,7 +1369,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "Nej"
#: formres.src
msgctxt ""
@@ -1378,7 +1378,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#: formres.src
msgctxt ""
@@ -1387,7 +1387,7 @@ msgctxt ""
"Parent Form\n"
"itemlist.text"
msgid "Parent Form"
-msgstr ""
+msgstr "Huvudformulär"
#: formres.src
msgctxt ""
@@ -1396,7 +1396,7 @@ msgctxt ""
"_blank\n"
"itemlist.text"
msgid "_blank"
-msgstr ""
+msgstr "_blank"
#: formres.src
msgctxt ""
@@ -1405,7 +1405,7 @@ msgctxt ""
"_parent\n"
"itemlist.text"
msgid "_parent"
-msgstr ""
+msgstr "_parent"
#: formres.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"_self\n"
"itemlist.text"
msgid "_self"
-msgstr ""
+msgstr "_self"
#: formres.src
msgctxt ""
@@ -1423,7 +1423,7 @@ msgctxt ""
"_top\n"
"itemlist.text"
msgid "_top"
-msgstr ""
+msgstr "_top"
#: formres.src
msgctxt ""
@@ -1432,7 +1432,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: formres.src
msgctxt ""
@@ -1992,7 +1992,7 @@ msgctxt ""
"Cancel\n"
"itemlist.text"
msgid "Cancel"
-msgstr ""
+msgstr "Avbryt"
#: formres.src
msgctxt ""
@@ -2001,7 +2001,7 @@ msgctxt ""
"Help\n"
"itemlist.text"
msgid "Help"
-msgstr ""
+msgstr "Hjälp"
#: formres.src
msgctxt ""
@@ -2076,7 +2076,7 @@ msgctxt ""
"Single-line\n"
"itemlist.text"
msgid "Single-line"
-msgstr ""
+msgstr "Enradig"
#: formres.src
msgctxt ""
@@ -2085,7 +2085,7 @@ msgctxt ""
"Multi-line\n"
"itemlist.text"
msgid "Multi-line"
-msgstr ""
+msgstr "Flerradig"
#: formres.src
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"Multi-line with formatting\n"
"itemlist.text"
msgid "Multi-line with formatting"
-msgstr ""
+msgstr "Flerradig med formateringar"
#: formres.src
msgctxt ""
@@ -2119,7 +2119,7 @@ msgctxt ""
"LF (Unix)\n"
"itemlist.text"
msgid "LF (Unix)"
-msgstr ""
+msgstr "LF (Unix)"
#: formres.src
msgctxt ""
@@ -2128,7 +2128,7 @@ msgctxt ""
"CR+LF (Windows)\n"
"itemlist.text"
msgid "CR+LF (Windows)"
-msgstr ""
+msgstr "CR+LF (Windows)"
#: formres.src
msgctxt ""
@@ -2137,7 +2137,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: formres.src
msgctxt ""
@@ -2146,7 +2146,7 @@ msgctxt ""
"Horizontal\n"
"itemlist.text"
msgid "Horizontal"
-msgstr ""
+msgstr "Horisontell"
#: formres.src
msgctxt ""
@@ -2155,7 +2155,7 @@ msgctxt ""
"Vertical\n"
"itemlist.text"
msgid "Vertical"
-msgstr ""
+msgstr "Vertikal"
#: formres.src
msgctxt ""
@@ -2164,7 +2164,7 @@ msgctxt ""
"Both\n"
"itemlist.text"
msgid "Both"
-msgstr ""
+msgstr "Båda"
#: formres.src
msgctxt ""
@@ -2173,7 +2173,7 @@ msgctxt ""
"Table\n"
"itemlist.text"
msgid "Table"
-msgstr ""
+msgstr "Tabell"
#: formres.src
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"Query\n"
"itemlist.text"
msgid "Query"
-msgstr ""
+msgstr "Fråga"
#: formres.src
msgctxt ""
@@ -2191,7 +2191,7 @@ msgctxt ""
"SQL command\n"
"itemlist.text"
msgid "SQL command"
-msgstr ""
+msgstr "SQL-kommando"
#: formres.src
msgctxt ""
@@ -2232,7 +2232,7 @@ msgctxt ""
"3D\n"
"itemlist.text"
msgid "3D"
-msgstr ""
+msgstr "3D"
#: formres.src
msgctxt ""
@@ -2241,7 +2241,7 @@ msgctxt ""
"Flat\n"
"itemlist.text"
msgid "Flat"
-msgstr ""
+msgstr "Platt"
#: formres.src
msgctxt ""
@@ -3084,7 +3084,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "Nej"
#: propres.src
msgctxt ""
@@ -3093,7 +3093,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#: propres.src
msgctxt ""
diff --git a/source/sv/filter/source/config/fragments/internalgraphicfilters.po b/source/sv/filter/source/config/fragments/internalgraphicfilters.po
index 70dcaa51975..8155a99a0c4 100644
--- a/source/sv/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/sv/filter/source/config/fragments/internalgraphicfilters.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-11 23:46+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-31 17:11+0000\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457739972.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490980315.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: pdf_Import.xcu
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: pgm_Import.xcu
msgctxt ""
diff --git a/source/sv/filter/uiconfig/ui.po b/source/sv/filter/uiconfig/ui.po
index d434b43caf5..f3e5ca0c33d 100644
--- a/source/sv/filter/uiconfig/ui.po
+++ b/source/sv/filter/uiconfig/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-25 18:02+0000\n"
+"PO-Revision-Date: 2017-03-31 17:12+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464199327.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490980322.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "XML Filter List"
-msgstr ""
+msgstr "XML-filterlista"
#: xmlfiltertabpagegeneral.ui
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/sbasic/shared.po b/source/sv/helpcontent2/source/text/sbasic/shared.po
index 5ada36b9d66..ce2f072f44c 100644
--- a/source/sv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sv/helpcontent2/source/text/sbasic/shared.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 17:09+0000\n"
+"PO-Revision-Date: 2017-03-30 10:23+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467824974.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490869408.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -27622,7 +27622,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "String variable"
-msgstr "8"
+msgstr "Strängvariabel"
#: 03103600.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/scalc/00.po b/source/sv/helpcontent2/source/text/scalc/00.po
index f464e09c443..cb8d649651f 100644
--- a/source/sv/helpcontent2/source/text/scalc/00.po
+++ b/source/sv/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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-25 07:43+0000\n"
+"PO-Revision-Date: 2017-04-04 11:02+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490427838.000000\n"
+"X-POOTLE-MTIME: 1491303721.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1336,7 +1336,7 @@ msgctxt ""
"48\n"
"help.text"
msgid "On Table Data bar, click <emph>Reset Filter/Sort</emph>"
-msgstr "<emph>Formulärnavigering -</emph> ikonen <emph>Nollställ filter/sortering</emph>"
+msgstr "På verktygsraden Formulärnavigering, klicka på <emph>Nollställ filter/sortering</emph>"
#: 00000412.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/scalc/01.po b/source/sv/helpcontent2/source/text/scalc/01.po
index 4ad7f84af34..302ae658bfa 100644
--- a/source/sv/helpcontent2/source/text/scalc/01.po
+++ b/source/sv/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ 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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2016-12-22 17:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-03-30 10:31+0000\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482426324.000000\n"
+"X-POOTLE-MTIME: 1490869903.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5684,22 +5684,20 @@ msgid "Functions"
msgstr "Funktioner"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
@@ -22314,7 +22312,7 @@ msgctxt ""
"par_idN1182D\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=LÄNK($B4)</item> där cell B4 innehåller <item type=\"input\">http://www.example.org</item>. Funktionen lägger till http://www.exempel.org till webbadressen för länkcellen, och returnerar samma text som används som formelresultat."
+msgstr "<item type=\"input\">=LÄNK($B4)</item> där cell B4 innehåller <item type=\"input\">http://www.exampel.org</item>. Funktionen lägger till http://www.exempel.org till webbadressen för länkcellen, och returnerar samma text som används som formelresultat."
#: 04060109.xhp
msgctxt ""
@@ -45444,14 +45442,13 @@ msgid "Example"
msgstr "Exempel"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859147\n"
"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr "<item type=\"input\">=PERCENTIL(A1:A50;0,1)</item> representerar det värde i datamängden som motsvarar 10 % av den totala dataskalan i A1:A50."
+msgstr "<item type=\"input\">=PERCENTIL.EXK(A1:A50;10%)</item> representerar det värde i datamängden som motsvarar 10 % av den totala dataskalan i A1:A50."
#: 04060184.xhp
#, fuzzy
@@ -58409,14 +58406,13 @@ msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>
msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Alternativ\">Alternativ</link>"
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"par_id3147102\n"
"2\n"
"help.text"
msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Visar eller döljer ytterligare filtreringsalternativ.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Visar eller döljer ytterligare filtreringsalternativ.</ahelp></variable>"
#: 12090104.xhp
msgctxt ""
@@ -61795,13 +61791,12 @@ msgid "The function searches what cells from the range A2:A6 contain a combinati
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"par_id316901523627285\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&E2;C2:C6)</item>"
-msgstr "<item type=\"input\">=MEDEL (A1:A50)</item>"
+msgstr "<item type=\"input\">=MEDEL.OM(B2:B6;\"<\"&E2;C2:C6)</item>"
#: func_averageif.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/scalc/guide.po b/source/sv/helpcontent2/source/text/scalc/guide.po
index 650fc23e11e..6381a3a6f1b 100644
--- a/source/sv/helpcontent2/source/text/scalc/guide.po
+++ b/source/sv/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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2016-11-21 21:03+0000\n"
+"PO-Revision-Date: 2017-03-30 10:31+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479762222.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490869918.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -6307,7 +6307,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "Displays 16% of the contents of A1."
-msgstr "Visar 16 procent av innehållet i A1."
+msgstr "Visar 16 % av innehållet i A1."
#: formulas.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/01.po b/source/sv/helpcontent2/source/text/shared/01.po
index 5061d94a1bd..a119c07064d 100644
--- a/source/sv/helpcontent2/source/text/shared/01.po
+++ b/source/sv/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-19 14:53+0000\n"
+"PO-Revision-Date: 2017-03-30 10:37+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487516003.000000\n"
+"X-POOTLE-MTIME: 1490870252.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -120,7 +120,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "Creates a new text document ($[officename] Writer)."
-msgstr "Skapar ett nytt textdokument."
+msgstr "Skapar ett nytt textdokument ($[officename] Writer)."
#: 01010000.xhp
msgctxt ""
@@ -146,7 +146,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "Creates a new spreadsheet document ($[officename] Calc)."
-msgstr "Skapar ett nytt kalkylblad."
+msgstr "Skapar ett nytt kalkylblad ($[officename] Calc)."
#: 01010000.xhp
msgctxt ""
@@ -324,7 +324,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "Creates a new formula document ($[officename] Math)."
-msgstr "Skapar ett nytt formeldokument."
+msgstr "Skapar ett nytt formeldokument ($[officename] Math)."
#: 01010000.xhp
msgctxt ""
@@ -6698,7 +6698,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Om du vill markera alla celler i en tabell klickar du på knappen i skärningspunkten mellan kolumn- och radhuvudena i tabellens övre vänstra hörn.</caseinline> <defaultinline/> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Om du vill markera alla celler på ett blad klickar du på knappen i skärningspunkten mellan kolumn- och radhuvudena i tabellens övre vänstra hörn.</caseinline> <defaultinline/> </switchinline>"
#: 02090000.xhp
msgctxt ""
@@ -9921,13 +9921,12 @@ msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Redigera\">Redigera</link>"
#: 02200100.xhp
-#, fuzzy
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Med det här alternativet kan du redigera ett markerat objekt i filen som är infogat med kommandot <emph>Infoga - Objekt</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".\">Med det här alternativet kan du redigera ett markerat objekt i filen som är infogat med kommandot <emph>Infoga - Objekt</emph>.</ahelp>"
#: 02200200.xhp
msgctxt ""
@@ -10462,13 +10461,12 @@ msgid "Rectangle"
msgstr "Rektangel"
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3150870\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_RECT\">Draws a rectangular hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_RECT\">Ritar en rektangulär stödpunkt där du drar i grafiken. Du kan sedan ange <emph>adress</emph> och <emph>text</emph> för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_RECT\">Ritar en rektangulär stödpunkt där du drar i grafiken. Du kan sedan ange <emph>adress och text</emph> för stödpunkten, och markera den <emph>ram</emph> där du vill att URL:en ska öppnas.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -10497,13 +10495,12 @@ msgid "Ellipse"
msgstr "Ellips"
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3145591\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_CIRCLE\">Draws an elliptical hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_CIRCLE\">Ritar en elliptisk stödpunkt där du drar i grafiken. Du kan sedan ange <emph>adress</emph> och <emph>text</emph> för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_CIRCLE\">Ritar en elliptisk stödpunkt där du drar i grafiken. Du kan sedan ange <emph>adress och text</emph> för stödpunkten, och markera den <emph>ram</emph> där du vill att URL:en ska öppnas.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -10532,13 +10529,12 @@ msgid "Polygon"
msgstr "Polygon"
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3153190\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_POLY\">Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_POLY\">Ritar en polygon stödpunkt i det grafiska objektet. Definiera en sida av polygonen genom att klicka på den här ikonen, dra i grafiken och klicka igen. Flytta till den position där du vill placera slutet av nästa sida och klicka. Upprepa operationen tills du har ritat alla polygonens sidor. När du är färdig sluter du polygonen genom att dubbelklicka. Du kan sedan ange <emph>adress</emph> och <emph>text</emph> för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_POLY\">Ritar en polygon stödpunkt i det grafiska objektet. Definiera en sida av polygonen genom att klicka på den här ikonen, dra i grafiken och klicka igen. Flytta till den position där du vill placera slutet av nästa sida och klicka. Upprepa operationen tills du har ritat alla polygonens sidor. När du är färdig sluter du polygonen genom att dubbelklicka. Du kan sedan ange <emph>adress och text</emph> för stödpunkten, och markera den <emph>ram</emph> där du vill att URL:en ska öppnas.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -10567,13 +10563,12 @@ msgid "Freeform Polygon"
msgstr "Frihandspolygon"
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3147046\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_FREEPOLY\">Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_FREEPOLY\">Ritar en stödpunkt som är baserad på en frihandspolygon. Klicka på ikonen och flytta till den plats där du vill rita en stödpunkt. Dra en frihandslinje och slut formen genom att släppa knappen. Du kan sedan ange <emph>adress</emph> och <emph>text</emph> för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_FREEPOLY\">Ritar en stödpunkt som är baserad på en frihandspolygon. Klicka på ikonen och flytta till den plats där du vill rita en stödpunkt. Dra en frihandslinje och slut formen genom att släppa knappen. Du kan sedan ange <emph>adress och text</emph> för stödpunkten, och markera den <emph>ram</emph> där du vill att URL:en ska öppnas.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -10910,13 +10905,12 @@ msgid "Graphic View"
msgstr "Grafikvy"
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3150382\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/container\">Displays the image map, so that you can click and edit the hotspots.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/container\"/>Visar en image map där du kan klicka och redigera stödpunkterna."
+msgstr "<ahelp hid=\"svx/ui/imapdialog/container\">Visar en image map där du kan klicka och redigera stödpunkterna.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -12343,7 +12337,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "The supplied bibliography database contains sample records of books."
-msgstr "Den litteraturförteckning som följer med programmet innehåller exempel på böcker om $[officename]."
+msgstr "Den litteraturförteckning som följer med programmet innehåller exempel på böcker."
#: 02250000.xhp
msgctxt ""
@@ -19332,13 +19326,12 @@ msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian La
msgstr "<link href=\"text/shared/01/05020600.xhp\" name=\"Asiatisk layout\">Asiatisk layout</link>"
#: 05020600.xhp
-#, fuzzy
msgctxt ""
"05020600.xhp\n"
"par_id3155351\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\"\">Anger alternativ för dubbelrader i asiatiska språk. Markera tecknen i texten och välj detta kommando.</ahelp>"
+msgstr "<ahelp hid=\".\">Anger alternativ för dubbelrader i asiatiska språk. Markera tecknen i texten och välj detta kommando.</ahelp>"
#: 05020600.xhp
msgctxt ""
@@ -25328,14 +25321,13 @@ msgid "Name"
msgstr "Namn"
#: 05200200.xhp
-#, fuzzy
msgctxt ""
"05200200.xhp\n"
"par_id3153681\n"
"20\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name.</ahelp>"
-msgstr "<ahelp hid=\"\">Skriv ett namn.</ahelp>"
+msgstr "<ahelp hid=\".\">Skriv ett namn.</ahelp>"
#: 05200200.xhp
msgctxt ""
@@ -37596,13 +37588,12 @@ msgid "Append libraries"
msgstr "Lägga till bibliotek"
#: 06130500.xhp
-#, fuzzy
msgctxt ""
"06130500.xhp\n"
"par_id3155271\n"
"help.text"
msgid "<ahelp hid=\".\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr "<ahelp hid=\"\">Leta upp det bibliotek för <item type=\"productname\">%PRODUCTNAME</item> Basic som du vill lägga till i den aktuella listan och klicka sedan på Öppna.</ahelp>"
+msgstr "<ahelp hid=\".\">Leta upp det bibliotek för <item type=\"productname\">%PRODUCTNAME</item> Basic som du vill lägga till i den aktuella listan och klicka sedan på Öppna.</ahelp>"
#: 06130500.xhp
msgctxt ""
@@ -39475,14 +39466,13 @@ msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=
msgstr "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"Allmänt\">Allmänt</link></variable>"
#: 06150110.xhp
-#, fuzzy
msgctxt ""
"06150110.xhp\n"
"par_id3149038\n"
"12\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"\">Ange eller redigera allmän information för ett <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML-filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Ange eller redigera allmän information för ett <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML-filter</link>.</ahelp>"
#: 06150110.xhp
msgctxt ""
@@ -39592,14 +39582,13 @@ msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\
msgstr "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Tarnsformering\">Tarnsformering</link></variable>"
#: 06150120.xhp
-#, fuzzy
msgctxt ""
"06150120.xhp\n"
"par_id3154350\n"
"1\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Ange eller redigera filinformation för ett <link href=\"text/shared/01/06150000.xhp\" name=\"XML-filter\">XML-filter</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".\">Ange eller redigera filinformation för ett <link href=\"text/shared/01/06150000.xhp\" name=\"XML-filter\">XML-filter</link>.</ahelp>"
#: 06150120.xhp
msgctxt ""
@@ -43286,14 +43275,13 @@ msgid "Set Master Password"
msgstr "Ange huvudlösenord"
#: password_main.xhp
-#, fuzzy
msgctxt ""
"password_main.xhp\n"
"par_id3154841\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Assign a master password to protect the access to a saved password.</ahelp>"
-msgstr "<ahelp hid=\"\">Tilldela ett huvudlösenord som skyddar sparade lösenord.</ahelp>"
+msgstr "<ahelp hid=\".\">Tilldela ett huvudlösenord som skyddar sparade lösenord.</ahelp>"
#: password_main.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/02.po b/source/sv/helpcontent2/source/text/shared/02.po
index 2f218edfb34..91a260f340e 100644
--- a/source/sv/helpcontent2/source/text/shared/02.po
+++ b/source/sv/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-21 21:12+0000\n"
+"PO-Revision-Date: 2017-03-30 10:00+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479762767.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868041.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -11895,7 +11895,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Loads a document specified by an entered URL. You can type a new URL, edit an URL, or select one from the list. Displays the full path of the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Läser in ett dokument som angetts i form av en URL. Du kan ange URL-adressen eller välja en från listan. Filsökvägen omvandlas automatiskt till URL-format i %PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\".\">Läser in ett dokument som angetts i form av en URL. Du kan ange URL-adressen eller välja en från listan. Visar den fullständiga sökvägen till aktuellt dokument.</ahelp>"
#: 07010000.xhp
msgctxt ""
@@ -14195,7 +14195,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the \"none\" entry in the <emph>Paragraph Style</emph> list box. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document.</ahelp> The list box displays the available Paragraph Styles defined in <item type=\"productname\">%PRODUCTNAME</item> and managed in the <link href=\"text/swriter/01/05130000.xhp\" name=\"Style Catalog\">Style Catalog</link>."
-msgstr "Standardinställningen är att de infogade styckena formateras med den aktuella styckeformatmallen. Detta format motsvaras av alternativet \"ingen\" i listrutan <emph>Styckeformatmall</emph>. <ahelp visibility=\"visible\" hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\">Här kan du välja andra styckeformatmallar som ska användas i det stycke som kommer att infogas i dokumentet.</ahelp> I listrutan visas andra styckeformatmallar som finns definierade i $[officename] och som hanteras med <link href=\"text/swriter/01/05130000.xhp\" name=\"mallkatalogen\">mallkatalogen</link>."
+msgstr "Standardinställningen är att de infogade styckena formateras med den aktuella styckeformatmallen. Detta format motsvaras av alternativet \"ingen\" i listrutan <emph>Styckeformatmall</emph>. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">Här kan du välja andra styckeformatmallar som ska användas i det stycke som kommer att infogas i dokumentet.</ahelp> I listrutan visas andra styckeformatmallar som finns definierade i <item type=\"productname\">%PRODUCTNAME</item> och som hanteras med <link href=\"text/swriter/01/05130000.xhp\" name=\"Style Catalog\">mallkatalogen</link>."
#: 12070300.xhp
msgctxt ""
@@ -14979,7 +14979,7 @@ msgctxt ""
"111\n"
"help.text"
msgid "The search described here is carried out by <item type=\"productname\">%PRODUCTNAME</item>. If you want to use the SQL server to search in a database, then you should use the <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">Form-based Filters</link> icon on the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">Form Bar</link>."
-msgstr "Den sökning som beskrivs här utförs av $[officename]. Om du vill låta en SQL-server söka i databasen ska du använda ikonen <link href=\"text/shared/02/12110000.xhp\" name=\"Formulärbaserat filter\">Formulärbaserat filter</link> på symbollisten <link href=\"text/shared/main0213.xhp\" name=\"Formulär\">Formulär</link>."
+msgstr "Den sökning som beskrivs här utförs av <item type=\"productname\">%PRODUCTNAME</item>. Om du vill låta en SQL-server söka i databasen ska du använda ikonen <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">Formulärbaserat filter</link> på verktygsraden <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">Formulär</link>."
#: 12100200.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/05.po b/source/sv/helpcontent2/source/text/shared/05.po
index 8f26b970507..a1d1c837716 100644
--- a/source/sv/helpcontent2/source/text/shared/05.po
+++ b/source/sv/helpcontent2/source/text/shared/05.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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2015-12-11 12:42+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-03-30 10:01+0000\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449837748.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868112.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "For a summary of the current support services refer to the <emph>Readme</emph> file in the <item type=\"productname\">%PRODUCTNAME</item> folder."
-msgstr "Det finns en sammanfattning av alla supporttjänster som vi för närvarande erbjuder i en <emph>\"Readme\"-fil</emph> i $[officename]-mappen."
+msgstr "Det finns en sammanfattning av alla supporttjänster som vi för närvarande erbjuder i en <emph>\"Readme\"-fil</emph> i <item type=\"productname\">%PRODUCTNAME</item>-mappen."
#: 00000001.xhp
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"par_id0915200811081778\n"
"help.text"
msgid "You can access web forums to ask and answer questions about %PRODUCTNAME."
-msgstr "Du kan vända dig till webbforum för frågor och svar om OpenOffice.org."
+msgstr "Du kan vända dig till webbforum för frågor och svar om %PRODUCTNAME."
#: 00000001.xhp
msgctxt ""
@@ -169,7 +169,7 @@ msgctxt ""
"par_id0120200910361848\n"
"help.text"
msgid "If you want to take an active role in the worldwide %PRODUCTNAME community, you are very welcome to give feedback, discuss features, propose enhancements, write your own article in an FAQ, how-to, manual, create a video tutorial, etc."
-msgstr "Om du vill ta på dig en aktiv roll i den världsomspännande nätgemenskapen OpenOffice.org så är du varmt välkommen att ge feedback, diskutera funktioner, föreslå förbättringar eller bidra med en artikel i vanliga frågor och svar (FAQ), instruktionerna eller i användarhandledningen. Du kan också skapa en egen utbildningsvideo."
+msgstr "Om du vill ta på dig en aktiv roll i den världsomspännande nätgemenskapen %PRODUCTNAME så är du varmt välkommen att ge feedback, diskutera funktioner, föreslå förbättringar eller bidra med en artikel i vanliga frågor och svar (FAQ), instruktionerna eller i användarhandledningen. Du kan också skapa en egen utbildningsvideo."
#: 00000001.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/autopi.po b/source/sv/helpcontent2/source/text/shared/autopi.po
index 4a3ac671f03..48413560077 100644
--- a/source/sv/helpcontent2/source/text/shared/autopi.po
+++ b/source/sv/helpcontent2/source/text/shared/autopi.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-26 06:51+0000\n"
+"PO-Revision-Date: 2017-03-30 10:03+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1472194295.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868227.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -409,7 +409,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_CHKPAPERCOMPANYLOGO\">Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_LTRWIZ_CHKPAPERCOMPANYLOGO\">Anger att en logotyp inte har inkluderats i brevet eller faxmeddelandet.</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZ_CHKPAPERCOMPANYLOGO\">Anger att en logotyp redan finns förtryckt på brevpappret. %PRODUCTNAME kommer inte att skruva ut någon logotyp.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -4060,13 +4060,12 @@ msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Cho
msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">Rapportguiden - Layouturval</link>"
#: 01100400.xhp
-#, fuzzy
msgctxt ""
"01100400.xhp\n"
"par_id3154894\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the layout from different templates and styles, and choose landscape or portrait page orientation.</ahelp>"
-msgstr "<ahelp hid=\"\">Välj layouten från olika mallar och formatmallar, och välj sedan liggande eller stående orientering.</ahelp>"
+msgstr "<ahelp hid=\".\">Välj layouten från olika mallar och formatmallar, och välj sedan liggande eller stående orientering.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -7649,13 +7648,12 @@ msgid "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Field Assignment\">
msgstr "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Fälttilldelning\">Fälttilldelning</link>"
#: 01170500.xhp
-#, fuzzy
msgctxt ""
"01170500.xhp\n"
"par_id3143284\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog that allows you to specify the field assignment.</ahelp>"
-msgstr "<ahelp hid=\"\">Öppnar en dialogruta som du kan använda för att ange fälttilldelningar.</ahelp>"
+msgstr "<ahelp hid=\".\">Öppnar en dialogruta som du kan använda för att ange fälttilldelningar.</ahelp>"
#: 01170500.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/explorer/database.po b/source/sv/helpcontent2/source/text/shared/explorer/database.po
index b0f2db20b8b..77639890e73 100644
--- a/source/sv/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/sv/helpcontent2/source/text/shared/explorer/database.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 20:42+0000\n"
+"PO-Revision-Date: 2017-03-30 09:49+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476823367.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490867343.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -5468,13 +5468,12 @@ msgid "Table description"
msgstr "Tabellbeskrivning"
#: 05040200.xhp
-#, fuzzy
msgctxt ""
"05040200.xhp\n"
"par_id3154422\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the description for the selected table.</ahelp>"
-msgstr "<ahelp hid=\"\">Visar beskrivningen för den markerade tabellen.</ahelp>"
+msgstr "<ahelp hid=\".\">Visar beskrivningen för den markerade tabellen.</ahelp>"
#: 11000002.xhp
msgctxt ""
@@ -5564,13 +5563,12 @@ msgid "<link href=\"text/shared/explorer/database/11020000.xhp\" name=\"ODBC\">O
msgstr "<link href=\"text/shared/explorer/database/11020000.xhp\" name=\"ODBC\">ODBC</link>"
#: 11020000.xhp
-#, fuzzy
msgctxt ""
"11020000.xhp\n"
"par_id3150499\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
-msgstr "<ahelp hid=\"\">Anger inställningarna för <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link>-databaser. Här ingår dina användaråtkomstdata, drivrutinsinställningar och teckensnittsdefinitioner.</ahelp>"
+msgstr "<ahelp hid=\".\">Anger inställningarna för <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link>-databaser. Här ingår dina användaråtkomstdata, drivrutinsinställningar och teckensnittsdefinitioner.</ahelp>"
#: 11020000.xhp
msgctxt ""
@@ -5806,13 +5804,12 @@ msgid "<link href=\"text/shared/explorer/database/11030000.xhp\" name=\"dBase\">
msgstr "<link href=\"text/shared/explorer/database/11030000.xhp\" name=\"dBase\">dBASE</link>"
#: 11030000.xhp
-#, fuzzy
msgctxt ""
"11030000.xhp\n"
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the settings for a dBASE database.</ahelp>"
-msgstr "<ahelp hid=\"\">Ange inställningar för en dBASE-databas.</ahelp>"
+msgstr "<ahelp hid=\".\">Ange inställningar för en dBASE-databas.</ahelp>"
#: 11030000.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/guide.po b/source/sv/helpcontent2/source/text/shared/guide.po
index c39e389cf8c..c1318c4451c 100644
--- a/source/sv/helpcontent2/source/text/shared/guide.po
+++ b/source/sv/helpcontent2/source/text/shared/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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2016-11-21 21:16+0000\n"
+"PO-Revision-Date: 2017-03-30 10:48+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479762968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490870886.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"bm_id3143267\n"
"help.text"
msgid "<bookmark_value>ActiveX control</bookmark_value><bookmark_value>installing;ActiveX control</bookmark_value><bookmark_value>Internet; Internet Explorer for displaying $[officename] documents</bookmark_value><bookmark_value>$[officename] documents;viewing and editing in Internet Explorer</bookmark_value><bookmark_value>viewing;%PRODUCTNAME documents in Internet Explorer</bookmark_value><bookmark_value>editing;%PRODUCTNAME documents in Internet Explorer</bookmark_value>"
-msgstr "<bookmark_value>ActiveX-kontroll</bookmark_value><bookmark_value>Installera;ActiveX-kontroll</bookmark_value><bookmark_value>Internet; Internet Explorer för visning av $[officename] dokument</bookmark_value><bookmark_value>$[officename] dokument;visa och redigera i Internet Explorer</bookmark_value><bookmark_value>Visa;%PRODUCTNAME dokument i Internet Explorer</bookmark_value>"
+msgstr "<bookmark_value>ActiveX-kontroll</bookmark_value><bookmark_value>Installera; ActiveX-kontroll</bookmark_value><bookmark_value>Internet; Internet Explorer för visning av %PRODUCTNAME dokument</bookmark_value><bookmark_value>%PRODUCTNAME dokument; visa och redigera i Internet Explorer</bookmark_value><bookmark_value>Visa; %PRODUCTNAME dokument i Internet Explorer</bookmark_value>"
#: activex.xhp
msgctxt ""
@@ -3808,7 +3808,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> you can register different data sources. The contents of the data fields are then available to you for use in various fields and controls. Your system address book is such a data source."
-msgstr "I $[officename] kan du registrera olika datakällor. Innehållet i datafälten är sedan tillgängliga att användas i olika fält och kontroller. Systemets adressbok är en sådan datakälla."
+msgstr "I <item type=\"productname\">%PRODUCTNAME</item> kan du registrera olika datakällor. Innehållet i datafälten är sedan tillgängliga att användas i olika fält och kontroller. Systemets adressbok är en sådan datakälla."
#: data_addressbook.xhp
msgctxt ""
@@ -8377,14 +8377,13 @@ msgid "You can configure $[officename] so that a single click on an icon automat
msgstr "Du kan konfigurera $[officename] så att du via en enkelklickning på en ikon automatiskt skickar det aktuella dokumentet som ett fax-meddelande:"
#: fax.xhp
-#, fuzzy
msgctxt ""
"fax.xhp\n"
"par_id3145315\n"
"11\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link>."
-msgstr "Välj <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – <link href=\"text/shared/optionen/01040400.xhp\" name=\" Writer – Skriv ut\">%PRODUCTNAMEWriter – Skriv ut</link></emph>."
+msgstr "Välj <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Inställningar</emph></caseinline><defaultinline><emph>Verktyg - Alternativ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040400.xhp\" name=\" Writer - Skriv ut\"><emph>%PRODUCTNAME Writer - Skriv ut</emph></link>."
#: fax.xhp
msgctxt ""
@@ -12791,7 +12790,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc, choose <emph>Format - Cells</emph> and proceed accordingly."
-msgstr "I $[officename] Calc väljer du <emph>Format - Cell</emph> och gör på samma sätt."
+msgstr "I <item type=\"productname\">%PRODUCTNAME</item> Calc väljer du <emph>Format - Celler</emph> och gör på samma sätt."
#: language_select.xhp
msgctxt ""
@@ -13914,7 +13913,7 @@ msgctxt ""
"hd_id3145261\n"
"help.text"
msgid "Configuring and Modifying <item type=\"productname\">%PRODUCTNAME</item>"
-msgstr "Anpassa och ändra $[officename]"
+msgstr "Anpassa och ändra <item type=\"productname\">%PRODUCTNAME</item>"
#: main.xhp
msgctxt ""
@@ -14051,7 +14050,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\">%PRODUCTNAME Writer - General</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer – Allmänt\">%PRODUCTNAMEWriter – Allmänt</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Inställningar</caseinline><defaultinline>Verktyg - Alternativ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - Allmänt\">%PRODUCTNAME Writer - Allmänt</link>"
#: microsoft_terms.xhp
msgctxt ""
@@ -16154,13 +16153,12 @@ msgid "The current document will be printed in black and white."
msgstr "Det aktuella dokumentet skrivs ut i svartvitt."
#: print_blackwhite.xhp
-#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3147653\n"
"help.text"
msgid "Printing in Black and White in <item type=\"productname\">%PRODUCTNAME</item> Impress and <item type=\"productname\">%PRODUCTNAME</item> Draw"
-msgstr "Skriva ut i $[officename] Impress och $[officename] Draw"
+msgstr "Skriva ut i svartvitt i <item type=\"productname\">%PRODUCTNAME</item> Impress och <item type=\"productname\">%PRODUCTNAME</item> Draw"
#: print_blackwhite.xhp
msgctxt ""
@@ -16232,7 +16230,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Writer you can choose to print color-formatted text in black and white. You can specify this either for all subsequent text documents to be printed, or only for the current printing process."
-msgstr "I $[officename] Writer kan du välja att skriva ut färgformaterad text i svartvitt. Du kan välja det här alternativet för alla senare textdokument som ska skrivas ut, eller endast för den aktuella utskriften."
+msgstr "I <item type=\"productname\">%PRODUCTNAME</item> Writer kan du välja att skriva ut färgformaterad text i svartvitt. Du kan välja det här alternativet för alla senare textdokument som ska skrivas ut, eller endast för den aktuella utskriften."
#: print_blackwhite.xhp
#, fuzzy
@@ -16461,7 +16459,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "The following is an overview of the different ways of protecting contents in <item type=\"productname\">%PRODUCTNAME</item> from being modified, deleted or viewed."
-msgstr "Följande avsnitt är en översikt över olika sätt att skydda innehåll i $[officename] från att ändras, tas bort eller visas."
+msgstr "Följande avsnitt är en översikt över olika sätt att skydda innehåll i <item type=\"productname\">%PRODUCTNAME</item> från att ändras, tas bort eller visas."
#: protection.xhp
msgctxt ""
@@ -16542,7 +16540,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "With every change made in <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> Writer, the review function records who made the change. This function can be turned on with protection, so that it can only be turned off when the correct password is entered. Until then, all changes will continue to be recorded. Acceptance or rejection of changes is not possible."
-msgstr "Du kan använda granskningsfunktionen för att visa vem som gjort en ändring i $[officename] Calc och $[officename] Writer. Du kan aktivera funktionen med lösenord så att den bara den som känner till lösenordet kan stänga av granskningsfunktionen. Tills funktionen stängs av kommer alla ändringar att registreras. Det går inte att godkänna eller ignorera ändringar."
+msgstr "Du kan använda granskningsfunktionen för att visa vem som gjort en ändring i <item type=\"productname\">%PRODUCTNAME</item> Calc och <item type=\"productname\">%PRODUCTNAME</item> Writer. Du kan aktivera funktionen med lösenord så att den bara den som känner till lösenordet kan stänga av granskningsfunktionen. Tills funktionen stängs av kommer alla ändringar att registreras. Det går inte att godkänna eller ignorera ändringar."
#: protection.xhp
msgctxt ""
@@ -16945,7 +16943,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "If one of the authors has made changes to a document without recording them, you can compare the changed document to your original document."
-msgstr "Kanske har någon av de personer som har fått en kopia av dokumentet gjort ändringar utan att registrera dem med kommandot <emph>Redigera - Ändringar - Registrera</emph>. Du kan antingen be personen göra om ändringarna och registrera dem i $[officename], eller så kan du själv jämföra kopian av dokumentet med originalet."
+msgstr "Kanske har någon av de personer som har fått en kopia av dokumentet gjort ändringar utan att registrera dem med funktionen spåra ändringar. Du kan antingen be personen göra om ändringarna och registrera dem, eller så kan du själv jämföra kopian av dokumentet med originalet."
#: redlining_doccompare.xhp
msgctxt ""
@@ -18051,13 +18049,12 @@ msgid "Replacing hyphens by dashes"
msgstr ""
#: space_hyphen.xhp
-#, fuzzy
msgctxt ""
"space_hyphen.xhp\n"
"par_id3154749\n"
"help.text"
msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoCorrect Options</link>)."
-msgstr "Om du vill mata in längre streck kan du använda alternativet <emph>Verktyg - Autokorrigering</emph><emph>- Alternativ</emph> alternativet <emph>Ersätt tankstreck</emph>. Det här alternativet ersätter ett eller två minustecken under vissa villkor med ett kort eller långt tankstreck (se <link href=\"text/shared/01/06040100.xhp\" name=\"$[officename]-hjälpen\">$[officename]-hjälpen</link>)."
+msgstr "Om du vill mata in tankstreck kan du använda alternativet <emph>Verktyg - Autokorrigering - Alternativ</emph> alternativet <emph>Ersätt tankstreck</emph>. Det här alternativet ersätter ett eller två minustecken under vissa villkor med ett kort eller långt tankstreck (se <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">Alternativ för autokorrigering</link>)."
#: space_hyphen.xhp
#, fuzzy
diff --git a/source/sv/helpcontent2/source/text/shared/optionen.po b/source/sv/helpcontent2/source/text/shared/optionen.po
index fc81ec9e1bc..d361cdf709f 100644
--- a/source/sv/helpcontent2/source/text/shared/optionen.po
+++ b/source/sv/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-11-21 21:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-03-30 12:50+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479762998.000000\n"
+"X-POOTLE-MTIME: 1490878251.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -912,7 +912,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "The Help tip always displays an absolute path. However, if a document is saved in HTML format, <item type=\"productname\">%PRODUCTNAME</item> will enter a relative path if the appropriate check box is selected."
-msgstr "Visningen i tipshjälpen visar alltid en absolut sökväg. Men när du sparar i HTML-filformat anges en relativ sökväg i $[officename] om du aktiverar det här alternativet."
+msgstr "Visningen i tipshjälpen visar alltid en absolut sökväg. Men när du sparar i HTML-filformat anges en relativ sökväg i <item type=\"productname\">%PRODUCTNAME</item> om du aktiverar det här alternativet."
#: 01010200.xhp
msgctxt ""
@@ -2177,7 +2177,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "For all language selection fields in <item type=\"productname\">%PRODUCTNAME</item>, the following applies:"
-msgstr "Följande gäller för alla språkvalsfält i $[officename]:"
+msgstr "Följande gäller för alla språkvalsfält i <item type=\"productname\">%PRODUCTNAME</item>:"
#: 01010401.xhp
msgctxt ""
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
@@ -4630,7 +4630,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "High contrast is an operating system setting that changes the system color scheme to improve readability. You can decide how <item type=\"productname\">%PRODUCTNAME</item> uses the high contrast settings of the operating system."
-msgstr "Högkontrast är en operativsysteminställning som ändrar systemets färgschema för att förbättra läsbarheten. Du kan bestämma hur $[officename] använder högkontrastinställningarna."
+msgstr "Högkontrast är en operativsysteminställning som ändrar systemets färgschema för att förbättra läsbarheten. Du kan bestämma hur <item type=\"productname\">%PRODUCTNAME</item> använder högkontrastinställningarna."
#: 01013000.xhp
msgctxt ""
@@ -4837,14 +4837,13 @@ msgid "Load/Save options"
msgstr "Alternativ för att läsa in/spara"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id3146957\n"
"2\n"
"help.text"
msgid "<variable id=\"laden\"><ahelp hid=\".\" visibility=\"visible\">Specifies general Load/Save settings. </ahelp></variable>"
-msgstr "<variable id=\"laden\"><ahelp hid=\"\" visibility=\"visible\">Anger allmänna inställningar för inläsning/spara. </ahelp></variable>"
+msgstr "<variable id=\"laden\"><ahelp hid=\".\" visibility=\"visible\">Anger allmänna inställningar för inläsning/spara. </ahelp></variable>"
#: 01020100.xhp
msgctxt ""
@@ -8988,13 +8987,12 @@ msgid "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Background\">Back
msgstr "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Bakgrund\">Bakgrund</link>"
#: 01050300.xhp
-#, fuzzy
msgctxt ""
"01050300.xhp\n"
"par_id3150443\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the background for HTML documents.</ahelp> The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Anger bakgrunden för HTML dokument.</ahelp> Bakgrunden är giltig både för nya HTML dokument och för de dokument som du laddar, under förutsättning att det inte redan finns en bakgrund definierad för dokumenten."
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Anger bakgrunden för HTML dokument.</ahelp> Bakgrunden är giltig både för nya HTML dokument och för de dokument som du laddar, under förutsättning att det inte redan finns en bakgrund definierad för dokumenten."
#: 01050300.xhp
msgctxt ""
@@ -10807,13 +10805,12 @@ msgid "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Print\">Print</li
msgstr "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Skriv ut\">Skriv ut</link>"
#: 01060700.xhp
-#, fuzzy
msgctxt ""
"01060700.xhp\n"
"par_id3143267\n"
"help.text"
msgid "<ahelp hid=\".\">Determines the printer settings for spreadsheets.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Anger utskriftsinställningar för kalykylblad</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Anger utskriftsinställningar för kalykylblad</ahelp>"
#: 01060700.xhp
#, fuzzy
@@ -12827,13 +12824,12 @@ msgid "Chart options"
msgstr "Diagramalternativ"
#: 01110000.xhp
-#, fuzzy
msgctxt ""
"01110000.xhp\n"
"par_id3149182\n"
"help.text"
msgid "<variable id=\"farbe\"><ahelp hid=\".\" visibility=\"visible\">Defines the general settings for charts.</ahelp></variable>"
-msgstr "<variable id=\"farbe\"><ahelp hid=\"\" visibility=\"visible\">Definierar allmänna inställningar för diagram.</ahelp></variable>"
+msgstr "<variable id=\"farbe\"><ahelp hid=\".\" visibility=\"visible\">Definierar allmänna inställningar för diagram.</ahelp></variable>"
#: 01110100.xhp
msgctxt ""
@@ -14027,7 +14023,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "In languages such as Thai, rules specify that certain characters are not allowed next to other characters. If Sequence Input Checking (SIC) is enabled, <item type=\"productname\">%PRODUCTNAME</item> will not allow a character next to another if this is forbidden by a rule."
-msgstr "I språk som t.ex. thailändska finns det regler som anger att vissa tecken inte får förekomma intill varandra. OM SIC (Sequence Input Checking) är aktiverad tillämpas de här reglerna i $[officename]."
+msgstr "I språk som t.ex. thailändska finns det regler som anger att vissa tecken inte får förekomma intill varandra. OM SIC (Sequence Input Checking) är aktiverad tillämpas de här reglerna i <item type=\"productname\">%PRODUCTNAME</item>."
#: 01150300.xhp
msgctxt ""
@@ -14178,7 +14174,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "This setting is not saved in the document but in the <item type=\"productname\">%PRODUCTNAME</item> configuration."
-msgstr "Den här inställningen sparas inte i dokumentet utan i $[officename]-konfigurationen."
+msgstr "Den här inställningen sparas inte i dokumentet utan i <item type=\"productname\">%PRODUCTNAME</item>-konfigurationen."
#: 01160000.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/simpress/01.po b/source/sv/helpcontent2/source/text/simpress/01.po
index 2c38afa0d71..ee0d88fcf34 100644
--- a/source/sv/helpcontent2/source/text/simpress/01.po
+++ b/source/sv/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-27 11:37+0000\n"
+"PO-Revision-Date: 2017-03-30 10:16+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1472297858.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868974.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -5476,7 +5476,7 @@ msgctxt ""
"86\n"
"help.text"
msgid "You can copy and paste animations into <item type=\"productname\">%PRODUCTNAME</item> Writer."
-msgstr "Du kan kopiera och klistra in animationer i $[officename] Writer."
+msgstr "Du kan kopiera och klistra in animationer i <item type=\"productname\">%PRODUCTNAME</item> Writer."
#: 06050000.xhp
msgctxt ""
@@ -7355,13 +7355,12 @@ msgid "Define Custom Slide Show"
msgstr "Definiera anpassad presentation"
#: 06100100.xhp
-#, fuzzy
msgctxt ""
"06100100.xhp\n"
"par_id3154659\n"
"help.text"
msgid "<variable id=\"neu\"><ahelp hid=\".\" visibility=\"visible\">Creates a custom slide show.</ahelp></variable>"
-msgstr "<variable id=\"neu\"><ahelp hid=\"\" visibility=\"visible\">Skapar en anpassad presentation.</ahelp></variable>"
+msgstr "<variable id=\"neu\"><ahelp hid=\".\" visibility=\"visible\">Skapar en anpassad presentation.</ahelp></variable>"
#: 06100100.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/simpress/04.po b/source/sv/helpcontent2/source/text/simpress/04.po
index f5e40123a91..87703beb5eb 100644
--- a/source/sv/helpcontent2/source/text/simpress/04.po
+++ b/source/sv/helpcontent2/source/text/simpress/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: 2016-01-08 13:42+0100\n"
-"PO-Revision-Date: 2015-05-11 22:17+0000\n"
+"PO-Revision-Date: 2017-03-30 12:51+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431382625.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878310.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -66,7 +66,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Function Keys for $[officename] Impress"
-msgstr "Funktionstangenter vid presentationsdokument"
+msgstr "Funktionstangenter i $[officename] Impress"
#: 01020000.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/simpress/guide.po b/source/sv/helpcontent2/source/text/simpress/guide.po
index 2578e6f7cb2..440cdcbf9b7 100644
--- a/source/sv/helpcontent2/source/text/simpress/guide.po
+++ b/source/sv/helpcontent2/source/text/simpress/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-27 11:37+0000\n"
+"PO-Revision-Date: 2017-03-30 13:03+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1472297876.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878994.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "Locate the file containing the line styles that you want to load, and then click <emph>OK</emph>. The file has the format [filename].sod."
-msgstr "Leta rätt på filen som innehåller de formatmallar som ska läggas till och klicka på <emph>OK</emph>. Filen har formatet [filnamn].sod."
+msgstr "Leta rätt på filen som innehåller de linjestilar som ska läggas till och klicka på <emph>OK</emph>. Filen har formatet [filnamn].sod."
#: line_arrow_styles.xhp
msgctxt ""
@@ -2986,7 +2986,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "Locate the file containing the arrow styles that you want to load, and then click <emph>OK</emph>. The file has the format [filename].soe."
-msgstr "Leta rätt på filen som innehåller de linjeslutstilar som ska läggas till och klicka på <emph>OK</emph>. Filen har formatet [filnamn].soe."
+msgstr "Leta rätt på filen som innehåller de linjestilar som ska läggas till och klicka på <emph>OK</emph>. Filen har formatet [filnamn].soe."
#: line_arrow_styles.xhp
msgctxt ""
@@ -4300,7 +4300,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "Locate the gradient list that you want to load, and then click <emph>Open</emph>. A gradient list file has the format [filename].sog."
-msgstr "Leta rätt på gradienttabellen som du ska ladda och klicka på <emph>Öppna</emph>. En gradienttabellfil har formatet [filnamn].sog."
+msgstr "Leta rätt på övertoningstabellen som du ska ladda och klicka på <emph>Öppna</emph>. En övertoningstabellfil har formatet [filnamn].sog."
#: palette_files.xhp
msgctxt ""
@@ -4754,7 +4754,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Prepare the slides, start the show using a special icon, tell your imaginary audience what you want to tell for the first slide, then advance to the next slide and so on. $[officename] records the display time for each slide, so the next time you play the show with automatic slide changes, the timing will be as recorded."
-msgstr "Skapa sidorna, starta presentationen med en särskild ikon och håll presentationen som du tänker hålla den för en riktig publik. När du byter sida sparas visningslängden för varje sida så att du kan köra presentationen automatiskt nästa gång."
+msgstr "Skapa presentationssidorna, starta presentationen med en särskild ikon och håll presentationen som du tänker hålla den för en riktig publik. När du byter sida sparar $[officename] visningslängden för varje sida så att du kan köra presentationen automatiskt nästa gång."
#: rehearse_timings.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/smath/01.po b/source/sv/helpcontent2/source/text/smath/01.po
index e3e2a31c832..52ed86e2cd0 100644
--- a/source/sv/helpcontent2/source/text/smath/01.po
+++ b/source/sv/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-11-21 21:24+0000\n"
+"PO-Revision-Date: 2017-03-30 10:16+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479763458.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868985.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6844,7 +6844,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "More detailed information about scaling in <emph><item type=\"productname\">%PRODUCTNAME</item> Math</emph> as well as some examples can be found here. (The quotation marks in this text are for emphasis purposes only and are not part of the examples.)"
-msgstr "Här finns mer information om skalning i <emph>$[officename] Math</emph> och tillhörande exempel. (Citattecknen används bara för att framhäva delar av texten och ingår inte i exemplen.)"
+msgstr "Här finns mer information om skalning i <emph><item type=\"productname\">%PRODUCTNAME</item> Math</emph> och tillhörande exempel. (Citattecknen används bara för att framhäva delar av texten och ingår inte i exemplen.)"
#: 03091400.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/smath/guide.po b/source/sv/helpcontent2/source/text/smath/guide.po
index 26108b27dc3..24c37f1ed99 100644
--- a/source/sv/helpcontent2/source/text/smath/guide.po
+++ b/source/sv/helpcontent2/source/text/smath/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2015-06-22 13:43+0000\n"
+"PO-Revision-Date: 2017-03-30 10:16+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1434980594.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490868992.000000\n"
#: align.xhp
msgctxt ""
@@ -751,7 +751,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Math, can brackets be shown separately so that the distance between them is freely definable?"
-msgstr "Kan parenteser i $[officename] Math även visas enskilt och i fritt definierbar storlek?"
+msgstr "Kan parenteser i <item type=\"productname\">%PRODUCTNAME</item> Math även visas enskilt och i fritt definierbar storlek?"
#: parentheses.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/01.po b/source/sv/helpcontent2/source/text/swriter/01.po
index 332acfc2a98..3db5b0e8a67 100644
--- a/source/sv/helpcontent2/source/text/swriter/01.po
+++ b/source/sv/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-11-21 21:25+0000\n"
+"PO-Revision-Date: 2017-04-04 10:43+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479763505.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491302616.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -12462,7 +12462,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Page number (#)"
-msgstr "Sidnr"
+msgstr "Sidnummer (#)"
#: 04120221.xhp
msgctxt ""
@@ -14107,7 +14107,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040500.xhp\" name=\"Writer - Table\">%PRODUCTNAME Writer - Table</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – <link href=\"text/shared/optionen/01040500.xhp\" name=\"Writer – Tabell\">%PRODUCTNAMEWriter – Tabell</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME – Inställningar</caseinline><defaultinline>Verktyg – Alternativ</defaultinline></switchinline> – <link href=\"text/shared/optionen/01040500.xhp\" name=\"Writer – Table\">%PRODUCTNAME Writer – Tabell</link>"
#: 04180400.xhp
msgctxt ""
@@ -16086,14 +16086,13 @@ msgid "<link href=\"text/swriter/01/05040700.xhp\" name=\"Footnotes/Endnotes\">F
msgstr "<link href=\"text/swriter/01/05040700.xhp\" name=\"Fot-/slutnoter\">Fot-/slutnoter</link>"
#: 05040700.xhp
-#, fuzzy
msgctxt ""
"05040700.xhp\n"
"par_id3147170\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies where footnotes and endnotes are displayed as well as their numbering formats.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Anger var fotnoter och slutnoter ska visas och deras numreringsformat.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Anger var fotnoter och slutnoter ska visas och deras numreringsformat.</ahelp>"
#: 05040700.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/04.po b/source/sv/helpcontent2/source/text/swriter/04.po
index 6aefa9e2975..62cce0ee8cc 100644
--- a/source/sv/helpcontent2/source/text/swriter/04.po
+++ b/source/sv/helpcontent2/source/text/swriter/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: 2016-07-04 16:53+0200\n"
-"PO-Revision-Date: 2016-05-25 03:47+0000\n"
+"PO-Revision-Date: 2017-03-30 10:17+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464148026.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490869044.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -66,7 +66,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Function Keys for <item type=\"productname\">%PRODUCTNAME</item> Writer"
-msgstr "Funktioner i textdokument med funktionstangenterna"
+msgstr "Funktionstangenterna i <item type=\"productname\">%PRODUCTNAME</item> Writer"
#: 01020000.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/guide.po b/source/sv/helpcontent2/source/text/swriter/guide.po
index 03d9e3ee879..27984f56da5 100644
--- a/source/sv/helpcontent2/source/text/swriter/guide.po
+++ b/source/sv/helpcontent2/source/text/swriter/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-21 21:29+0000\n"
+"PO-Revision-Date: 2017-04-04 10:48+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479763743.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491302890.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -2411,7 +2411,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Click in the first cell of the series you want to sum up, drag to the final cell, and then release.<br/>$[officename] inserts a formula for calculating the sum of the values in the current column."
-msgstr "Klicka i den första cellen i serien, dra till den sista cellen och släpp."
+msgstr "Klicka i den första cellen i den serie som ska summeras, dra till den sista cellen och släpp.<br/>$[officename] infogar en formel för att beräkna summan av värdena i den aktuella kolumnen."
#: calculate_intable.xhp
msgctxt ""
@@ -8597,7 +8597,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"insert_graphic_fromchart\"><link href=\"text/swriter/guide/insert_graphic_fromchart.xhp\" name=\"Inserting a Calc Chart into a Text Document\">Inserting a Calc Chart into a Text Document</link></variable>"
-msgstr "<variable id=\"insert_graphic_fromchart\"><link href=\"text/swriter/guide/insert_graphic_fromchart.xhp\" name=\"Infoga ett diagram från $[officename] Calc\">Infoga ett diagram från $[officename] Calc</link></variable>"
+msgstr "<variable id=\"insert_graphic_fromchart\"><link href=\"text/swriter/guide/insert_graphic_fromchart.xhp\" name=\"Inserting a Calc Chart into a Text Document\">Infoga ett Calc-diagram i ett textdokument</link></variable>"
#: insert_graphic_fromchart.xhp
msgctxt ""
@@ -13822,13 +13822,12 @@ msgid "You can manually check the spelling and grammar of a text selection or th
msgstr "Du kan kontrollera stavningen och grammatiken manuellt i ett markerat textavsnitt eller i hela dokumentet."
#: spellcheck_dialog.xhp
-#, fuzzy
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"http://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
-msgstr "För att kontrollera stavning och grammatik i en text så måste de tillhörande ordböckerna vara installerade. För många språk finns tre ordbokstyper: stavningskontroll, avstavning och synonymordbok. Varje ordbok täcker endast ett språk. Grammatikkontroller kan laddas ner som tillägg. Se hemsidan <link href=\"http://extensions.libreoffice.org/dictionary\">Tillägg</link>."
+msgstr "För att kontrollera stavning och grammatik i en text så måste de tillhörande ordböckerna vara installerade. För många språk finns tre ordbokstyper: stavningskontroll, avstavning och synonymordbok. Varje ordbok täcker endast ett språk. Grammatikkontroller kan laddas ner som tillägg. Se hemsidan <link href=\"http://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">Tillägg</link>."
#: spellcheck_dialog.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/librelogo.po b/source/sv/helpcontent2/source/text/swriter/librelogo.po
index f7a6779c614..fd3ac480db0 100644
--- a/source/sv/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/sv/helpcontent2/source/text/swriter/librelogo.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-08-06 22:51+0200\n"
-"PO-Revision-Date: 2016-11-21 21:29+0000\n"
+"PO-Revision-Date: 2017-04-04 10:49+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479763780.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491302984.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -935,7 +935,7 @@ msgctxt ""
"par_1226\n"
"help.text"
msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%<br/> FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%<br/> FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%<br/> FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle<br/> FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center<br/>"
-msgstr "FILLTRANSPARENCY 80 ; anger att aktuella fyllnadsfärgen ska vara 80% transparent (genomskinlig)<br/> FILLTRANSPARENCY [80] ; anger linjär transparent toning från 80% till 0%<br/> FILLTRANSPARENCY [80, 20, 1, 90] ; anger axiell transparent toning roterat med 90 grader från sköldpaddans aktuella position<br/> FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; anger radiell transparent toning från yttre 80% till inre 20% transparens med 20% inramning och 50-50% horisontell och vertikal position från mitten<br/> "
+msgstr "FILLTRANSPARENCY 80 ; anger att aktuella fyllnadsfärgen ska vara 80% transparent (genomskinlig)<br/> FILLTRANSPARENCY [80] ; anger linjär transparent toning från 80% till 0%<br/> FILLTRANSPARENCY [80, 20] ; anger linjär transparent toning från 80% till 20%<br/> FILLTRANSPARENCY [80, 20, 1, 90] ; anger axiell transparent toning roterat med 90 grader från sköldpaddans aktuella position<br/> FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; anger radiell transparent toning från yttre 80% till inre 20% transparens med 20% inramning och 50-50% horisontell och vertikal position från mitten<br/> "
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po
index 24d30ab54b5..979dbacb2fe 100644
--- a/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sv/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-23 19:08+0000\n"
+"PO-Revision-Date: 2017-03-31 18:34+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490296084.000000\n"
+"X-POOTLE-MTIME: 1490985265.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Pivottabell"
#: CalcCommands.xcu
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Pivot Table"
-msgstr ""
+msgstr "Infoga pivottabell"
#: CalcCommands.xcu
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Create..."
-msgstr ""
+msgstr "Skapa..."
#: CalcCommands.xcu
msgctxt ""
@@ -1202,7 +1202,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Edit Mode"
-msgstr ""
+msgstr "Cellredigeringsläge"
#: CalcCommands.xcu
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr ""
+msgstr "Utskriftsområde"
#: CalcCommands.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr ""
+msgstr "Definiera utskriftsområde"
#: CalcCommands.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Töm"
#: CalcCommands.xcu
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Ta bort utskriftsområde"
#: CalcCommands.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "Redigera"
#: CalcCommands.xcu
msgctxt ""
@@ -1346,7 +1346,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Edit Print Ranges"
-msgstr ""
+msgstr "Redigera utskriftsområden"
#: CalcCommands.xcu
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add"
-msgstr ""
+msgstr "Lägg till"
#: CalcCommands.xcu
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr ""
+msgstr "Lägg till utskriftsområde"
#: CalcCommands.xcu
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr ""
+msgstr "Växla cellreferenstyp"
#: CalcCommands.xcu
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr ""
+msgstr "Infoga namngivet områden eller uttryck"
#: CalcCommands.xcu
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Named Range or Expression..."
-msgstr ""
+msgstr "Namngivet områden eller uttryck"
#: CalcCommands.xcu
msgctxt ""
@@ -2435,7 +2435,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Ce~lls..."
-msgstr "~Celler ..."
+msgstr "~Celler..."
#: CalcCommands.xcu
msgctxt ""
@@ -3128,7 +3128,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Sheet At End..."
-msgstr ""
+msgstr "Infoga blad vid slutet..."
#: CalcCommands.xcu
msgctxt ""
@@ -3236,7 +3236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Valuta"
#: CalcCommands.xcu
msgctxt ""
@@ -3245,7 +3245,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Formatera som valuta"
#: CalcCommands.xcu
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Valuta"
#: CalcCommands.xcu
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Formatera som valuta"
#: CalcCommands.xcu
msgctxt ""
@@ -3272,7 +3272,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Percent"
-msgstr ""
+msgstr "Procent"
#: CalcCommands.xcu
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Percent"
-msgstr ""
+msgstr "Formatera som procent"
#: CalcCommands.xcu
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "General"
-msgstr ""
+msgstr "Allmänt"
#: CalcCommands.xcu
msgctxt ""
@@ -3299,7 +3299,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as General"
-msgstr ""
+msgstr "Formatera som allmänt"
#: CalcCommands.xcu
msgctxt ""
@@ -3308,7 +3308,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Date"
-msgstr ""
+msgstr "Formatera som datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number"
-msgstr ""
+msgstr "Tal"
#: CalcCommands.xcu
msgctxt ""
@@ -3335,7 +3335,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Number"
-msgstr ""
+msgstr "Formatera som tal"
#: CalcCommands.xcu
msgctxt ""
@@ -3344,7 +3344,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scientific"
-msgstr ""
+msgstr "Vetenskaplig"
#: CalcCommands.xcu
msgctxt ""
@@ -3353,7 +3353,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Scientific"
-msgstr ""
+msgstr "Formatera som vetenskaplig"
#: CalcCommands.xcu
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Time"
-msgstr ""
+msgstr "Tid"
#: CalcCommands.xcu
msgctxt ""
@@ -3371,7 +3371,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Time"
-msgstr ""
+msgstr "Formatera som tid"
#: CalcCommands.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Ranges and Expressions"
-msgstr ""
+msgstr "Namngivna områden och uttryck"
#: CalcCommands.xcu
msgctxt ""
@@ -3722,7 +3722,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ro~ws"
-msgstr ""
+msgstr "~Rader"
#: CalcCommands.xcu
msgctxt ""
@@ -3731,7 +3731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mns"
-msgstr ""
+msgstr "K~olumner"
#: CalcCommands.xcu
msgctxt ""
@@ -3821,7 +3821,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Date"
-msgstr ""
+msgstr "Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3839,7 +3839,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Time"
-msgstr ""
+msgstr "Tid"
#: CalcCommands.xcu
msgctxt ""
@@ -3857,7 +3857,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Link"
-msgstr ""
+msgstr "Redigera länk"
#: CalcCommands.xcu
msgctxt ""
@@ -3866,7 +3866,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Link"
-msgstr ""
+msgstr "Ta bort länk"
#: CalcCommands.xcu
msgctxt ""
@@ -3938,7 +3938,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only Numbers"
-msgstr ""
+msgstr "Klistra endast in nummer"
#: CalcCommands.xcu
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert..."
-msgstr ""
+msgstr "Infoga..."
#: CalcWindowState.xcu
msgctxt ""
@@ -4460,7 +4460,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Pilar"
#: ChartCommands.xcu
msgctxt ""
@@ -4523,7 +4523,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tre~nd Line..."
-msgstr ""
+msgstr "Tre~ndlinje..."
#: ChartCommands.xcu
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Open..."
-msgstr ""
+msgstr "Öppna..."
#: DbuCommands.xcu
msgctxt ""
@@ -6116,7 +6116,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Rapport..."
#: DbuCommands.xcu
msgctxt ""
@@ -13937,7 +13937,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Öka styckeavståndet"
#: GenericCommands.xcu
msgctxt ""
@@ -13946,7 +13946,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Öka styckeavståndet"
#: GenericCommands.xcu
msgctxt ""
@@ -13955,7 +13955,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Minska"
#: GenericCommands.xcu
msgctxt ""
@@ -13964,7 +13964,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Minska styckeavståndet"
#: GenericCommands.xcu
msgctxt ""
@@ -13973,7 +13973,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Minska styckeavståndet"
#: GenericCommands.xcu
msgctxt ""
@@ -13982,7 +13982,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arrow Shapes"
-msgstr ""
+msgstr "Pilformer"
#: GenericCommands.xcu
msgctxt ""
@@ -13991,7 +13991,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Arrow"
-msgstr ""
+msgstr "Pil"
#: GenericCommands.xcu
msgctxt ""
@@ -14009,7 +14009,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Flowchart"
-msgstr ""
+msgstr "Flödesschema"
#: GenericCommands.xcu
msgctxt ""
@@ -14027,7 +14027,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Callout"
-msgstr ""
+msgstr "Pratbubblor"
#: GenericCommands.xcu
msgctxt ""
@@ -15512,7 +15512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Öka"
#: GenericCommands.xcu
msgctxt ""
@@ -15530,7 +15530,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Font Size"
-msgstr ""
+msgstr "Öka teckenstorlek"
#: GenericCommands.xcu
msgctxt ""
@@ -15539,7 +15539,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Minska"
#: GenericCommands.xcu
msgctxt ""
@@ -15557,7 +15557,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Font Size"
-msgstr ""
+msgstr "Minska teckenstorlek"
#: GenericCommands.xcu
msgctxt ""
@@ -15818,7 +15818,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left"
-msgstr ""
+msgstr "Vänster"
#: GenericCommands.xcu
msgctxt ""
@@ -15827,7 +15827,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Left"
-msgstr ""
+msgstr "Vänsterjustera"
#: GenericCommands.xcu
msgctxt ""
@@ -15836,7 +15836,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right"
-msgstr ""
+msgstr "Höger"
#: GenericCommands.xcu
msgctxt ""
@@ -15845,7 +15845,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Right"
-msgstr ""
+msgstr "Högerjusterat"
#: GenericCommands.xcu
msgctxt ""
@@ -16385,7 +16385,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Crop"
-msgstr ""
+msgstr "Beskär"
#: GenericCommands.xcu
msgctxt ""
@@ -16936,7 +16936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart from File..."
-msgstr ""
+msgstr "Diagram från fil..."
#: GenericCommands.xcu
msgctxt ""
@@ -17296,7 +17296,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "St~yles and Formatting"
-msgstr ""
+msgstr "~Formatmallar och formatering"
#: GenericCommands.xcu
msgctxt ""
@@ -17521,7 +17521,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style..."
-msgstr ""
+msgstr "~Ny formatmall..."
#: GenericCommands.xcu
msgctxt ""
@@ -17557,7 +17557,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Update Style"
-msgstr ""
+msgstr "~Uppdatera formatmall"
#: GenericCommands.xcu
msgctxt ""
@@ -18853,7 +18853,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Klona formatering"
#: GenericCommands.xcu
msgctxt ""
@@ -19519,7 +19519,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Display Grid"
-msgstr ""
+msgstr "~Visa raster"
#: GenericCommands.xcu
msgctxt ""
@@ -19636,7 +19636,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Co~mpare Document..."
-msgstr ""
+msgstr "~Jämför dokument..."
#: GenericCommands.xcu
msgctxt ""
@@ -19663,7 +19663,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Merge Documen~t..."
-msgstr ""
+msgstr "Sammanfoga dokument..."
#: GenericCommands.xcu
msgctxt ""
@@ -21598,7 +21598,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar Layout"
-msgstr ""
+msgstr "Typ av verktygsrad"
#: GenericCommands.xcu
msgctxt ""
@@ -21967,7 +21967,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Chart"
-msgstr ""
+msgstr "Diagram"
#: GenericCommands.xcu
msgctxt ""
@@ -22219,7 +22219,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Audio or ~Video..."
-msgstr ""
+msgstr "Ljud eller video..."
#: GenericCommands.xcu
msgctxt ""
@@ -24784,7 +24784,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -24793,7 +24793,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single toolbar"
-msgstr ""
+msgstr "Enkel"
#: ToolbarMode.xcu
msgctxt ""
@@ -24802,7 +24802,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr ""
+msgstr "Sidopanel"
#: ToolbarMode.xcu
msgctxt ""
@@ -24811,7 +24811,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Notebook"
#: ToolbarMode.xcu
msgctxt ""
@@ -24820,7 +24820,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -24829,7 +24829,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single toolbar"
-msgstr ""
+msgstr "Enkel"
#: ToolbarMode.xcu
msgctxt ""
@@ -24838,7 +24838,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Notebook"
#: WriterCommands.xcu
msgctxt ""
@@ -24928,7 +24928,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comments"
-msgstr ""
+msgstr "Visa kommentarer"
#: WriterCommands.xcu
msgctxt ""
@@ -24937,7 +24937,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Kommentarer"
#: WriterCommands.xcu
msgctxt ""
@@ -25018,7 +25018,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Endnote"
-msgstr ""
+msgstr "Slutnot"
#: WriterCommands.xcu
msgctxt ""
@@ -25027,7 +25027,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Endnote"
-msgstr ""
+msgstr "Infoga slutnot"
#: WriterCommands.xcu
msgctxt ""
@@ -25054,7 +25054,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Innehållsförteckning"
#: WriterCommands.xcu
msgctxt ""
@@ -25063,7 +25063,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr ""
+msgstr "Infoga innehållsförteckning, index eller källförteckning"
#: WriterCommands.xcu
msgctxt ""
@@ -25126,7 +25126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update All"
-msgstr ""
+msgstr "Uppdatera alla"
#: WriterCommands.xcu
msgctxt ""
@@ -25135,7 +25135,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Indexes and ~Tables"
-msgstr ""
+msgstr "Förteckningar"
#: WriterCommands.xcu
msgctxt ""
@@ -25144,7 +25144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update Index"
-msgstr ""
+msgstr "Uppdatera förteckning"
#: WriterCommands.xcu
msgctxt ""
@@ -25153,7 +25153,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Current ~Index"
-msgstr ""
+msgstr "Aktuell förteckning"
#: WriterCommands.xcu
msgctxt ""
@@ -25162,7 +25162,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Update index"
-msgstr "Uppdatera index"
+msgstr "Uppdatera förteckning"
#: WriterCommands.xcu
msgctxt ""
@@ -25180,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect..."
-msgstr ""
+msgstr "Skydda..."
#: WriterCommands.xcu
msgctxt ""
@@ -25189,7 +25189,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect Track Changes"
-msgstr ""
+msgstr "Skydda spårade ändringar"
#: WriterCommands.xcu
msgctxt ""
@@ -25198,7 +25198,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reject"
-msgstr ""
+msgstr "Neka"
#: WriterCommands.xcu
msgctxt ""
@@ -25207,7 +25207,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Reject Track Change"
-msgstr ""
+msgstr "Neka spårad ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25216,7 +25216,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Reject Change"
-msgstr ""
+msgstr "Neka ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25225,7 +25225,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accept"
-msgstr ""
+msgstr "Acceptera"
#: WriterCommands.xcu
msgctxt ""
@@ -25234,7 +25234,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accept Track Change"
-msgstr ""
+msgstr "Acceptera spårad ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25243,7 +25243,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Accept Change"
-msgstr ""
+msgstr "Acceptera ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25252,7 +25252,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Next"
-msgstr ""
+msgstr "Nästa"
#: WriterCommands.xcu
msgctxt ""
@@ -25261,7 +25261,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Next Track Change"
-msgstr ""
+msgstr "Nästa spårade ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25270,7 +25270,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pr~evious"
-msgstr ""
+msgstr "Föregående"
#: WriterCommands.xcu
msgctxt ""
@@ -25279,7 +25279,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Previous Track Change"
-msgstr ""
+msgstr "Föregående ändring"
#: WriterCommands.xcu
msgctxt ""
@@ -25306,7 +25306,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Record Track Changes"
-msgstr ""
+msgstr "Registrera ändringar"
#: WriterCommands.xcu
msgctxt ""
@@ -25315,7 +25315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Track Changes Functions"
-msgstr ""
+msgstr "Funktioner för spårade ändringar"
#: WriterCommands.xcu
msgctxt ""
@@ -25324,7 +25324,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes Functions"
-msgstr ""
+msgstr "Visa funktioner för spårade ändringar"
#: WriterCommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes"
-msgstr ""
+msgstr "Visa spårade ändringar"
#: WriterCommands.xcu
msgctxt ""
@@ -25378,7 +25378,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert ODF Track Change Comment"
-msgstr ""
+msgstr "Infoga ODF ändringskommentar"
#: WriterCommands.xcu
msgctxt ""
@@ -25450,7 +25450,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Link"
-msgstr ""
+msgstr "Länk"
#: WriterCommands.xcu
msgctxt ""
@@ -25459,7 +25459,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit Link..."
-msgstr ""
+msgstr "Redigera länk..."
#: WriterCommands.xcu
msgctxt ""
@@ -25468,7 +25468,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Link"
-msgstr ""
+msgstr "Ta bort länk"
#: WriterCommands.xcu
msgctxt ""
@@ -25477,7 +25477,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Copy Link Location"
-msgstr ""
+msgstr "Kopiera länkadress"
#: WriterCommands.xcu
msgctxt ""
@@ -25495,7 +25495,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Bookmark"
-msgstr ""
+msgstr "Infoga bokmärke"
#: WriterCommands.xcu
msgctxt ""
@@ -25567,7 +25567,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Caption"
-msgstr ""
+msgstr "Infoga bildtext/figurtext"
#: WriterCommands.xcu
msgctxt ""
@@ -25576,7 +25576,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Caption..."
-msgstr "Infoga bildtext..."
+msgstr "Infoga bildtext/figurtext..."
#: WriterCommands.xcu
msgctxt ""
@@ -25603,7 +25603,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Cross-reference"
-msgstr ""
+msgstr "Infoga korshänvisningar"
#: WriterCommands.xcu
msgctxt ""
@@ -25612,7 +25612,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Link"
-msgstr ""
+msgstr "Infoga länk"
#: WriterCommands.xcu
msgctxt ""
@@ -25639,7 +25639,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr ""
+msgstr "Sidbrytning"
#: WriterCommands.xcu
msgctxt ""
@@ -25648,7 +25648,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Page Break"
-msgstr ""
+msgstr "Infoga sidbrytning"
#: WriterCommands.xcu
msgctxt ""
@@ -25657,7 +25657,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabell"
#: WriterCommands.xcu
msgctxt ""
@@ -25666,7 +25666,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Insert ~Table..."
-msgstr ""
+msgstr "Infoga tabell..."
#: WriterCommands.xcu
msgctxt ""
@@ -25693,7 +25693,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame"
-msgstr ""
+msgstr "Ram"
#: WriterCommands.xcu
msgctxt ""
@@ -25711,7 +25711,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Frame"
-msgstr ""
+msgstr "Infoga ram"
#: WriterCommands.xcu
msgctxt ""
@@ -25729,7 +25729,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Index Entry"
-msgstr ""
+msgstr "Infoga förteckningspost"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25936,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula"
-msgstr ""
+msgstr "Infoga formel"
#: WriterCommands.xcu
msgctxt ""
@@ -25999,7 +25999,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fiel~d"
-msgstr ""
+msgstr "Fält"
#: WriterCommands.xcu
msgctxt ""
@@ -26008,7 +26008,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Field"
-msgstr ""
+msgstr "Infoga fält"
#: WriterCommands.xcu
msgctxt ""
@@ -26089,7 +26089,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnote"
-msgstr ""
+msgstr "Fotnot"
#: WriterCommands.xcu
msgctxt ""
@@ -26098,7 +26098,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Footnote"
-msgstr ""
+msgstr "Infoga fotnot"
#: WriterCommands.xcu
msgctxt ""
@@ -26170,7 +26170,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Links Active"
-msgstr ""
+msgstr "Aktiva länkar"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/sv/sfx2/source/dialog.po b/source/sv/sfx2/source/dialog.po
index 47260d6393a..65b70b5437a 100644
--- a/source/sv/sfx2/source/dialog.po
+++ b/source/sv/sfx2/source/dialog.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 03:48+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457754495.000000\n"
+"X-POOTLE-MTIME: 1457754480.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hierarkiskt"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/sv/sfx2/uiconfig/ui.po b/source/sv/sfx2/uiconfig/ui.po
index 84073956a11..cd40cc096b3 100644
--- a/source/sv/sfx2/uiconfig/ui.po
+++ b/source/sv/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-19 16:18+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487521100.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME görs tillgänglig i enlighet med villkoren i Mozilla Public License version 2.0. En kopia av MPL-licensen kan hittas på http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Ytterligare meddelanden om upphovsrätt och licensvillkor för kod från tredje part, som gäller delar av programvaran, anges i filen LICENSE.html. Välj Visa licens för att se exakta uppgifter på engelska.\n"
-"\n"
-"Alla varumärken och registrerade varumärken som nämns häri tillhör sina respektive ägare.\n"
-"\n"
-"Copyright © 2000, 2016 LibreOffice bidragsgivare. Alla rättigheter förbehålls.\n"
-"\n"
-"Denna produkt skapades av %OOOVENDOR, baserad på OpenOffice.org, som är Copyright 2000, 2011 Oracle och/eller dess dotterbolag. %OOOVENDOR erkänner alla gemenskapens medlemmar, se http://www.libreoffice.org/ för mer information."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/sv/svtools/source/dialogs.po b/source/sv/svtools/source/dialogs.po
index 1c4c0093f34..0400bbca951 100644
--- a/source/sv/svtools/source/dialogs.po
+++ b/source/sv/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-01-14 18:27+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1452796069.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formaterad text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sv/svtools/source/misc.po b/source/sv/svtools/source/misc.po
index 1ba6c726572..4a1c0af117b 100644
--- a/source/sv/svtools/source/misc.po
+++ b/source/sv/svtools/source/misc.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-09-14 06:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sv/svx/source/stbctrls.po b/source/sv/svx/source/stbctrls.po
index b5d9954dd2f..1e863bcbb42 100644
--- a/source/sv/svx/source/stbctrls.po
+++ b/source/sv/svx/source/stbctrls.po
@@ -3,9 +3,9 @@ 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-07-10 23:16+0000\n"
+"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449865548.000000\n"
+"X-POOTLE-MTIME: 1436570192.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Anpassa bildens storlek till fönstret."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sv/svx/uiconfig/ui.po b/source/sv/svx/uiconfig/ui.po
index 85c28a05075..d6491a42f61 100644
--- a/source/sv/svx/uiconfig/ui.po
+++ b/source/sv/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-23 16:40+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490287251.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,16 +5075,16 @@ msgstr "_Fortsätt i felsäkert läge"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/sw-TZ/cui/uiconfig/ui.po b/source/sw-TZ/cui/uiconfig/ui.po
index eb01d4a05fe..a344946f1c9 100644
--- a/source/sw-TZ/cui/uiconfig/ui.po
+++ b/source/sw-TZ/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476803290.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/sw-TZ/sfx2/source/dialog.po b/source/sw-TZ/sfx2/source/dialog.po
index 3fca7830602..5a627f10d3e 100644
--- a/source/sw-TZ/sfx2/source/dialog.po
+++ b/source/sw-TZ/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 03:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -721,6 +721,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ya msonge"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/sw-TZ/sfx2/uiconfig/ui.po b/source/sw-TZ/sfx2/uiconfig/ui.po
index 8245d6875c9..fc969ee5a4b 100644
--- a/source/sw-TZ/sfx2/uiconfig/ui.po
+++ b/source/sw-TZ/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467710724.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467710723.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/sw-TZ/svtools/source/dialogs.po b/source/sw-TZ/svtools/source/dialogs.po
index c5986fa875d..f1a4e859746 100644
--- a/source/sw-TZ/svtools/source/dialogs.po
+++ b/source/sw-TZ/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 21:53+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:15+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sw_TZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385502810.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864947.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Matini yaliyofomatiwa [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/sw-TZ/svtools/source/misc.po b/source/sw-TZ/svtools/source/misc.po
index e7f34eb635b..0851483d25a 100644
--- a/source/sw-TZ/svtools/source/misc.po
+++ b/source/sw-TZ/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3908,6 +3908,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sw-TZ/svx/source/stbctrls.po b/source/sw-TZ/svx/source/stbctrls.po
index 6e9e46acc72..50659b60e1f 100644
--- a/source/sw-TZ/svx/source/stbctrls.po
+++ b/source/sw-TZ/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:19+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 21:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sw_TZ\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449865169.000000\n"
+"X-POOTLE-MTIME: 1431551774.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/sw-TZ/svx/uiconfig/ui.po b/source/sw-TZ/svx/uiconfig/ui.po
index 7b12c1bbba4..7e7a732566e 100644
--- a/source/sw-TZ/svx/uiconfig/ui.po
+++ b/source/sw-TZ/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/szl/cui/uiconfig/ui.po b/source/szl/cui/uiconfig/ui.po
index 9677605ef0f..9da0adab55d 100644
--- a/source/szl/cui/uiconfig/ui.po
+++ b/source/szl/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-08-29 10:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1472466300.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/szl/sfx2/source/dialog.po b/source/szl/sfx2/source/dialog.po
index be9c50da0df..566b48a2285 100644
--- a/source/szl/sfx2/source/dialog.po
+++ b/source/szl/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-29 10:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-08-29 10:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: szl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1472466300.000000\n"
+"X-POOTLE-MTIME: 1472464905.000000\n"
#: dialog.src
msgctxt ""
@@ -714,6 +714,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr ""
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/szl/sfx2/uiconfig/ui.po b/source/szl/sfx2/uiconfig/ui.po
index 4c84f05feba..3b06c27edee 100644
--- a/source/szl/sfx2/uiconfig/ui.po
+++ b/source/szl/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-08-29 10:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1472464961.000000\n"
#: alienwarndialog.ui
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/szl/svtools/source/dialogs.po b/source/szl/svtools/source/dialogs.po
index 960fa7a91b2..aaf7fed51b6 100644
--- a/source/szl/svtools/source/dialogs.po
+++ b/source/szl/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-08-29 10:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-08-29 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: szl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1472466300.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1472465072.000000\n"
#: addresstemplate.src
#, fuzzy
@@ -340,6 +340,14 @@ msgstr ""
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/szl/svtools/source/misc.po b/source/szl/svtools/source/misc.po
index c1fcc9ed643..e064e413a92 100644
--- a/source/szl/svtools/source/misc.po
+++ b/source/szl/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-29 10:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-08-29 10:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: szl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1472466300.000000\n"
+"X-POOTLE-MTIME: 1472465141.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/szl/svx/source/stbctrls.po b/source/szl/svx/source/stbctrls.po
index 52b85854c16..ccc9ea1a7fc 100644
--- a/source/szl/svx/source/stbctrls.po
+++ b/source/szl/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-08-29 10:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-08-29 10:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: szl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1472466300.000000\n"
+"X-POOTLE-MTIME: 1472465378.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/szl/svx/uiconfig/ui.po b/source/szl/svx/uiconfig/ui.po
index 4055ebab77f..00889bb65ba 100644
--- a/source/szl/svx/uiconfig/ui.po
+++ b/source/szl/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-08-29 10:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ta/chart2/source/controller/dialogs.po b/source/ta/chart2/source/controller/dialogs.po
index be8ffd6a637..1348d2724df 100644
--- a/source/ta/chart2/source/controller/dialogs.po
+++ b/source/ta/chart2/source/controller/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-02 03:33+0000\n"
-"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
+"PO-Revision-Date: 2017-04-14 02:48+0000\n"
+"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462160004.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492138108.000000\n"
#: Strings.src
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"STR_STATUS_DATAPOINT_MARKED\n"
"string.text"
msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
-msgstr "தரவு வரிசை %SERIESNUMBER இலுள்ள தரவுப்புள்ளி %POINTNUMBER தேரப்பட்டது, மதிப்புகள்: %POINTVALUES"
+msgstr "தரவு வரிசை %SERIESNUMBER என்பதிலுள்ள தரவுப்புள்ளி %POINTNUMBER தேர்ந்த, மதிப்புகள்: %POINTVALUES"
#: Strings.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"STR_DATA_SELECT_RANGE_FOR_SERIES\n"
"string.text"
msgid "Select Range for %VALUETYPE of %SERIESNAME"
-msgstr "%SERIESNAME இன் %VALUETYPE க்கான வீச்சைத் தேர்"
+msgstr "%SERIESNAME இல் %VALUETYPE என்ற வீச்சைத் தேர்"
#: Strings.src
msgctxt ""
diff --git a/source/ta/cui/uiconfig/ui.po b/source/ta/cui/uiconfig/ui.po
index 0463c6e08bc..8a7050e9615 100644
--- a/source/ta/cui/uiconfig/ui.po
+++ b/source/ta/cui/uiconfig/ui.po
@@ -3,18 +3,18 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:18+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-14 02:48+0000\n"
+"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: Tamil <>\n"
"Language: ta\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476803902.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492138130.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "பதிப்புரிமை © 2000-2016 லிப்ரெஓபிஸ் பங்களிப்பாளர்கள்."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hex _#:"
-msgstr "பதின்னறும:"
+msgstr "பதின்னறும _#:"
#: colorpickerdialog.ui
msgctxt ""
diff --git a/source/ta/extensions/source/update/check.po b/source/ta/extensions/source/update/check.po
index ebf117ee298..f1a5c1b6278 100644
--- a/source/ta/extensions/source/update/check.po
+++ b/source/ta/extensions/source/update/check.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-03-29 03:54+0000\n"
-"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
+"PO-Revision-Date: 2017-04-14 02:53+0000\n"
+"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1459223663.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492138394.000000\n"
#: updatehdl.src
msgctxt ""
@@ -53,11 +53,12 @@ msgid ""
"Note: Before downloading an update, please ensure that you have sufficient access rights to install it.\n"
"A password, usually the administrator's or root password, may be required."
msgstr ""
-"%PRODUCTNAME %NEXTVERSION கிடைப்பிலுள்ளது.\n"
+"இருக்கின்ற பதிப்பு %PRODUCTNAME %NEXTVERSION.\n"
"\n"
"நிறுவப்பட்டுள்ள பதிப்பு %PRODUCTNAME %PRODUCTVERSION ஆகும்.\n"
"\n"
-"குறிப்பு: புதுப்பித்தலைப் பதிவிறக்கும் முன், அதனை நிறுவுவதற்கான அணுகல் அனுமதி உங்களிடம் இருப்பதை உறுதிசெய்து கொள்ளுங்கள். ஒரு நிர்வாகி அல்லது வேர் கடவுச்சொல் தேவைப்படலாம்."
+"குறிப்பு: புதுப்பித்தலைப் பதிவிறக்கும் முன், அதனை நிறுவுவதற்கான அணுகல் அனுமதி உங்களிடம் இருப்பதை உறுதிசெய்து கொள்ளுங்கள்.\n"
+"ஒரு நிர்வாகி அல்லது வேர் கடவுச்சொல் தேவைப்படலாம்."
#: updatehdl.src
msgctxt ""
@@ -181,7 +182,7 @@ msgctxt ""
"RID_UPDATE_STR_INSTALL_ERROR\n"
"string.text"
msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
-msgstr "நிறுவியை இயக்க முடியவில்லை, %DOWNLOAD_PATH இலுள்ள %FILE_NAME ஐக் கைமுறையாக இயக்குங்கள்."
+msgstr "நிறுவியை இயக்க முடியவில்லை, %DOWNLOAD_PATH அடைவிலுள்ள %FILE_NAME கோப்பைக் கைமுறையாக இயக்குங்கள்."
#: updatehdl.src
msgctxt ""
diff --git a/source/ta/extensions/uiconfig/scanner/ui.po b/source/ta/extensions/uiconfig/scanner/ui.po
index 2028675bb83..c56cdbfa181 100644
--- a/source/ta/extensions/uiconfig/scanner/ui.po
+++ b/source/ta/extensions/uiconfig/scanner/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-09-30 17:05+0000\n"
-"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
+"PO-Revision-Date: 2017-04-14 02:53+0000\n"
+"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ta\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1443632745.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492138416.000000\n"
#: griddialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution [_DPI]"
-msgstr "தெளிவுத்திறன் [DPI]"
+msgstr "தெளிவுத்திறன் [_DPI]"
#: sanedialog.ui
msgctxt ""
diff --git a/source/ta/helpcontent2/source/text/scalc/01.po b/source/ta/helpcontent2/source/text/scalc/01.po
index ad3903ce93d..02e446fa7fb 100644
--- a/source/ta/helpcontent2/source/text/scalc/01.po
+++ b/source/ta/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 14:38+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5689,22 +5689,20 @@ msgid "Functions"
msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ta/helpcontent2/source/text/shared/optionen.po b/source/ta/helpcontent2/source/text/shared/optionen.po
index c9423c28a96..793cae4137b 100644
--- a/source/ta/helpcontent2/source/text/shared/optionen.po
+++ b/source/ta/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-08-24 07:22+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ta/readlicense_oo/docs.po b/source/ta/readlicense_oo/docs.po
index 335ff496fa7..3a46cad56a6 100644
--- a/source/ta/readlicense_oo/docs.po
+++ b/source/ta/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-05-24 08:57+0000\n"
+"PO-Revision-Date: 2017-04-14 03:25+0000\n"
"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: American English <>\n"
"Language: ta\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1464080278.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492140323.000000\n"
#: readme.xrm
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"A7\n"
"readmeitem.text"
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"http://www.libreoffice.org/\">http://www.libreoffice.org/</a>."
-msgstr "இம்மென்பொருளை மேம்படுத்திவரும் ${PRODUCTNAME} சமூகம், உங்களை உறுபினராக இணைய அழைக்கிறது. நீங்கள் புதிய பயனரென்றால், ${PRODUCTNAME} தளத்திற்குச் சென்று பாருங்கள். ${PRODUCTNAME} செயல்திட்டம் பற்றிய பல தகவலை நீங்கள் அங்கு பெறலாம். அத்திட்டத்தைச் சார்ந்த சமூகங்கள் பற்றியும் அறிந்து கொள்ளலாம். சுட்டி: <a href=\"http://ta.libreoffice.org/\">http://ta.libreoffice.org/</a>."
+msgstr "இம்மென்பொருளை மேம்படுத்திவரும் ${PRODUCTNAME} சமூகம், உங்களை உறுப்பினராக இணைய அழைக்கிறது. நீங்கள் புதிய பயனரென்றால், ${PRODUCTNAME} தளத்திற்குச் சென்று பாருங்கள். ${PRODUCTNAME} செயல்திட்டம் பற்றிய பல தகவலை நீங்கள் அங்கு பெறலாம். அத்திட்டத்தைச் சார்ந்த சமூகங்கள் பற்றியும் அறிந்து கொள்ளலாம். சுட்டி: <a href=\"http://ta.libreoffice.org/\">http://ta.libreoffice.org/</a>."
#: readme.xrm
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"access7\n"
"readmeitem.text"
msgid "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"http://www.libreoffice.org/accessibility/\">http://www.libreoffice.org/accessibility/</a>"
-msgstr "${PRODUCTNAME} இலுள்ள அனுகல் அம்சங்களைப் பற்றிய மேலதிக தகவலுக்கு, <a href=\"http://ta.libreoffice.org/accessibility/\">http://ta.libreoffice.org/accessibility/</a> ஐப் பார்க்கவும்"
+msgstr "${PRODUCTNAME} என்பதிலுள்ள அனுகல் அம்சங்களைப் பற்றிய கூடுதல் தகவலுக்கு, <a href=\"http://ta.libreoffice.org/accessibility/\">http://ta.libreoffice.org/accessibility/</a> பக்கத்தைப் பார்க்கவும்"
#: readme.xrm
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The main support page <a href=\"http://www.libreoffice.org/support/\">http://www.libreoffice.org/support/</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"http://www.documentfoundation.org/nabble/\">http://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"http://www.libreoffice.org/lists/users/\">http://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr "முதன்மை ஆதரவு பக்கமான <a href=\"http://ta.libreoffice.org/get-help/feedback/\">http://ta.libreoffice.org/get-help/feedback/</a> ${PRODUCTNAME} க்குத் தேவையான பலவித உதவி வாய்ப்புகளை அளிக்கிறது. உங்கள் கேள்விக்கு ஏற்கனவே பதிலளிக்கப்பட்டிருக்கலாம் - சமூக மன்றத்தை <a href=\"http://ta.libreoffice.org/get-help/nabble/\">http://ta.libreoffice.org/get-help/nabble/</a> இல் சோதித்துப் பார்க்கவும், அல்லது <a href=\"http://ta.libreoffice.org/get-help/mailing-lists/\">http://ta.libreoffice.org/get-help/mailing-lists/</a> யிலுள்ள 'users@libreoffice.org' அஞ்சல் பட்டியலில் தேடிப் பார்க்கவும். மாறாக, உங்கள் கேள்விகளை <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a> க்கும் நீங்கள் அனுப்பலாம். அந்த பட்டியலில் பங்களிக்க (அஞ்சல்வழி பதில் பெற) நீங்கள் விரும்பினால், ஒரு வெற்று மின்னஞ்சலை இங்கு அனுப்பவும்: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
+msgstr "முதன்மை ஆதரவு பக்கமான <a href=\"http://ta.libreoffice.org/get-help/feedback/\">http://ta.libreoffice.org/get-help/feedback/</a> ${PRODUCTNAME} என்பதற்க்குத் தேவையான பலவித உதவி வாய்ப்புகளை அளிக்கிறது. உங்கள் கேள்விக்கு ஏற்கனவே பதிலளிக்கப்பட்டிருக்கலாம் - சமூக மன்ற <a href=\"http://ta.libreoffice.org/get-help/nabble/\">http://ta.libreoffice.org/get-help/nabble/</a>தளத்தில் சோதித்துப் பார்க்கவும், அல்லது <a href=\"http://ta.libreoffice.org/get-help/mailing-lists/\">http://ta.libreoffice.org/get-help/mailing-lists/</a> மடலாடற் குழு பக்கத்தில் 'users@libreoffice.org' அஞ்சல் பட்டியலில் தேடிப் பார்க்கவும். மாறாக, உங்கள் கேள்விகளை <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a> முகவரிக்கும் அனுப்பலாம். அந்த பட்டியலில் பங்களிக்க (அஞ்சல்வழி பதில் பெற) நீங்கள் விரும்பினால், ஒரு வெற்று மின்னஞ்சலை இங்கு அனுப்பவும்: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
#: readme.xrm
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"faq\n"
"readmeitem.text"
msgid "Also check the FAQ section at <a href=\"http://www.libreoffice.org/faq/\">http://www.libreoffice.org/faq/.</a>"
-msgstr "அ.கே.கே பிரிவையும் <a href=\"http://ta.libreoffice.org/faq/\">http://ta.libreoffice.org/faq/</a> இல் பார்க்கவும்."
+msgstr "அகேகே பிரிவை <a href=\"http://ta.libreoffice.org/faq/\">http://ta.libreoffice.org/faq/</a> பக்கத்தில் பார்க்கவும்."
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently BugZilla, kindly hosted at <a href=\"https://bugs.libreoffice.org/\">https://bugs.libreoffice.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr "பிழைகள்பற்றி புகார் அளிக்க, கண்காணிக்க, தீர்க்க நாங்கள் <a href=\"https://bugs.freedesktop.org/\">https://bugs.freedesktop.org/</a>இல் வழங்கப்படும் BugZilla ஐப் பயன்படுத்துகிறோம். உங்கள் இயங்குதளத்தில் எழும் பிழைகளை உரிமையுடன் எங்களிடம் புகார் செய்யும்படி நாங்கள் வேண்டிக்கொள்கிறோம். ஊக்கமாக புகார் அளிப்பது ${PRODUCTNAME} இன் தொடர் மேம்பாட்டிற்கும் முன்னேற்றத்திற்கும் பயனர் சமூகம் செய்யும் முக்கிய உதவிகளில் ஒன்றாகும்."
+msgstr "பிழைகள் பற்றி புகார் அளிக்க, கண்காணிக்க, தீர்க்க நாங்கள் <a href=\"https://bugs.libreoffice.org/\">https://bugs.libreoffice.org/</a> தளத்தில் வழங்கப்படும் BugZilla மென்பொருளைப் பயன்படுத்துகிறோம். உங்கள் இயங்குதளத்தில் எழும் பிழைகளை உரிமையுடன் எங்களிடம் புகார் செய்யும்படி நாங்கள் வேண்டிக்கொள்கிறோம். ஊக்கமாக புகார் அளிப்பது ${PRODUCTNAME} திட்டத்தை தொடர்ந்து மேம்பாடுத்தவும் முன்னேற்றவும் பயனர் சமூகம் செய்யும் முக்கிய உதவிகளில் ஒன்றாகும்."
#: readme.xrm
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"gettingimvolved3\n"
"readmeitem.text"
msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"http://www.libreoffice.org/contribution/\">http://www.libreoffice.org/contribution/</a>"
-msgstr "ஒரு பயனராக, நீங்கள் இப்போதே இத்தொகுப்பின் மேம்பாட்டுச் செயல்முறையின் ஒரு முக்கிய அங்கமாக விளங்குகிறீர்கள்; சமூகத்தின் நீண்ட கால பங்களிப்பாளராக இன்னும் அதிகமான பங்களிப்பை வழங்கும்படி உங்களை நாங்கள் ஊக்குவிக்கிறோம். தயைகூர்ந்து இணைந்து பங்களிப்பு பக்கத்தை <a href=\"http://ta.libreoffice.org/community/get-involved/\">http://ta.libreoffice.org/community/get-involved/</a> இல் பாருங்கள்"
+msgstr "ஒரு பயனராக, நீங்கள் இப்போதே இத்தொகுப்பின் மேம்பாட்டுச் செயல்முறையின் ஒரு முக்கிய அங்கமாக விளங்குகிறீர்கள்; சமூகத்தின் நீண்ட கால பங்களிப்பாளராக இன்னும் அதிகமான பங்களிப்பை வழங்கும்படி உங்களை நாங்கள் ஊக்குவிக்கிறோம். தயைகூர்ந்து இணைந்து பங்களிப்பு பக்கத்தைப் <a href=\"http://ta.libreoffice.org/contribution/\">http://ta.libreoffice.org/contribution/</a> பாருங்கள்"
#: readme.xrm
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"howtostart1\n"
"readmeitem.text"
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"http://www.libreoffice.org/develop/\">http://www.libreoffice.org/develop/</a>."
-msgstr "ஒன்று அல்லது அதிகமான அஞ்சல் பட்டியல்களில் குழுசேர்ந்து, சிறிது நேரம் காத்திருந்து, அக்டோபர் 2000 இல் ${PRODUCTNAME} இன் மூலக் குறியீடு வெளியானதிலிருந்து நடந்த விவாதங்களின் தலைப்புகளில் பரிச்சயம் அடைவதே இதில் பங்களிக்கத் தொடங்க எளிய வழியாகும். நீங்கள் சௌகரியமாக உணரும் போது நீங்கள் செய்ய வேண்டியதெல்லாம், உங்களை அறிமுகப்படுத்திக்கொண்டு ஒரு மின்னஞ்சல் அனுப்பி களத்தில் இறங்க வேண்டியதுதான். திறந்த மூல திட்டப்பணிகளில் நீங்கள் நல்ல பரிச்சயம் கொண்டவர் எனில், எங்கள் செய்ய வேண்டியவை பட்டியலில் உள்ளவற்றைப் பார்த்து <a href=\"http://ta.libreoffice.org/community/developers/\">http://ta.libreoffice.org/community/developers/</a> இல் நீங்கள் உதவக்கூடிய அம்சம் ஏதேனும் உள்ளதா எனப் பார்க்கவும்."
+msgstr "ஒன்று அல்லது அதிகமான அஞ்சல் பட்டியல்களில் குழுசேர்ந்து, சிறிது காலம் காத்திருந்து, அக்டோபர் 2000 ஆண்டில் ${PRODUCTNAME} திட்டத்தின் மூலக் குறியீடு வெளியானதிலிருந்து நடந்த விவாதங்களின் தலைப்புகளில் பரிச்சயம் அடைவதே இதில் பங்களிக்கத் தொடங்க எளிய வழியாகும். நீங்கள் சௌகரியமாக உணரும் போது நீங்கள் செய்ய வேண்டியதெல்லாம், உங்களை அறிமுகப்படுத்திக்கொண்டு ஒரு மின்னஞ்சல் அனுப்பி களத்தில் இறங்க வேண்டியதுதான். திறந்த மூல திட்டப்பணிகளில் நீங்கள் நல்ல பரிச்சயம் கொண்டவர் எனில், எங்கள் செய்ய வேண்டியவை பட்டியலில் உள்ளவற்றைப் பார்த்து <a href=\"http://ta.libreoffice.org/develop/\">http://ta.libreoffice.org/develop/</a> தளத்தில் நீங்கள் உதவக்கூடிய அம்சம் ஏதேனும் உள்ளதா எனப் பார்க்கவும்."
#: readme.xrm
msgctxt ""
diff --git a/source/ta/scaddins/source/analysis.po b/source/ta/scaddins/source/analysis.po
index 6a090025992..93062cd08eb 100644
--- a/source/ta/scaddins/source/analysis.po
+++ b/source/ta/scaddins/source/analysis.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-03-29 05:45+0000\n"
-"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
+"PO-Revision-Date: 2017-04-14 03:26+0000\n"
+"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: Tamil <>\n"
"Language: ta\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1459230305.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492140377.000000\n"
#: analysis.src
msgctxt ""
@@ -3568,7 +3568,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the price per 100 currency units face value of a security that pays periodic interest"
-msgstr "விலை $100 முக மதிப்பு அல்லது கருவூல ரசீதை அளிக்கிறது"
+msgstr "விலை $100 முக மதிப்பு அல்லது கருவூல இரசீதை அளிக்கிறது"
#: analysis.src
msgctxt ""
diff --git a/source/ta/sfx2/source/dialog.po b/source/ta/sfx2/source/dialog.po
index 98a8d828704..eb640a86e71 100644
--- a/source/ta/sfx2/source/dialog.po
+++ b/source/ta/sfx2/source/dialog.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 04:56+0000\n"
-"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457758617.000000\n"
+"X-POOTLE-MTIME: 1457758584.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "வரிசைமுறை"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ta/sfx2/uiconfig/ui.po b/source/ta/sfx2/uiconfig/ui.po
index 3703125ef2d..22351d6dd03 100644
--- a/source/ta/sfx2/uiconfig/ui.po
+++ b/source/ta/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 04:51+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476766288.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME Mozilla Public License, v. 2.0 விதிகளுக்கு உட்பட்டு வழங்கப்படுகிறது. MPL இன் ஒரு நகலை http://mozilla.org/MPL/2.0/ இல் பெறலாம்.\n"
-"\n"
-"மென்பொருள் பகுதிகளுடன் தொடர்புள்ள மூன்றாம் தரப்பினர் குறியீட்டுக்கான கூடுதல் பதிப்புரிமை அறிவிப்புகளும் உரிம விதிமுறைகளும் LICENSE.html கோப்பில் உள்ளன; துல்லியமான விவரங்களை ஆங்கிலத்தில் காண Show License ஐத் தேர்ந்தெடுக்கவும்.\n"
-"\n"
-"இங்கு குறிப்பிடப்பட்டுள்ள அனைத்து வர்த்தக முத்திரைகளும் பதிவு செய்யப்பட்ட வர்த்தக முத்திரைகளும் அந்தந்த உரிமையாளர்களுக்கே சொந்தம்.\n"
-"\n"
-"பதிப்புரிமை © 2000, 2016 லிப்ரெஓபிஸ் பங்களிப்பாளர்கள். அனைத்து உரிமைகளும் காக்கப்பட்டவை.\n"
-"\n"
-"இந்தத் தயாரிப்பு 2000, 2011 Oracle மற்றும்/அல்லது அதன் இணையாளர்களின் பதிப்புரிமை பெற்ற OpenOffice.org ஐ அடிப்படையாகக் கொண்டு %OOOVENDOR ஆல் உருவாக்கப்பட்டது. %OOOVENDOR அனைத்து சமூக உறுப்பினர்களுக்கும் நன்றி தெரிவித்துக்கொள்கிறது, மேல் விவரங்களுக்கு http://www.libreoffice.org/ ஐப் பார்க்கவும்."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ta/svtools/source/dialogs.po b/source/ta/svtools/source/dialogs.po
index c624244c501..3fa758d9d48 100644
--- a/source/ta/svtools/source/dialogs.po
+++ b/source/ta/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-29 05:36+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1459229803.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "வடிவூட்டிய உரை [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ta/svtools/source/misc.po b/source/ta/svtools/source/misc.po
index 9bfe5a9a201..0ba888078e0 100644
--- a/source/ta/svtools/source/misc.po
+++ b/source/ta/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-09-19 08:37+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: American English <>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ta/svx/source/stbctrls.po b/source/ta/svx/source/stbctrls.po
index f8d754a2b29..c18c7f94f91 100644
--- a/source/ta/svx/source/stbctrls.po
+++ b/source/ta/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-29 06:08+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: American English <>\n"
@@ -152,6 +152,14 @@ msgstr "தற்போதைய சாளரத்திற்கு பட
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ta/svx/uiconfig/ui.po b/source/ta/svx/uiconfig/ui.po
index dade6d3c342..bbfef45f132 100644
--- a/source/ta/svx/uiconfig/ui.po
+++ b/source/ta/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 01:09+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -5071,16 +5071,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/te/cui/uiconfig/ui.po b/source/te/cui/uiconfig/ui.po
index ee1c33ece66..9a0831f5542 100644
--- a/source/te/cui/uiconfig/ui.po
+++ b/source/te/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:21+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 15:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
"Language: te\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476804066.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476804026.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME నవీనమైంది, వుపయోగించుటకు-సులువైనది, వర్డ్ ప్రోసెసింగ్, స్ప్రెడ్‌షీట్స్, సమర్పణలు మరియు మరిన్నిటికి వోపెన్ సోర్స్ వుత్పాదక సూట్."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "కాపీరైట్ © 2000 - 2014 లిబ్రేఆఫీస్ సహాయకులు."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/te/sfx2/source/dialog.po b/source/te/sfx2/source/dialog.po
index aa1f86adcc8..73a8aa78100 100644
--- a/source/te/sfx2/source/dialog.po
+++ b/source/te/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-12 06:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-03-12 06:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
"Language: te\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457763611.000000\n"
+"X-POOTLE-MTIME: 1457763595.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "వరుసక్రమం"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/te/sfx2/uiconfig/ui.po b/source/te/sfx2/uiconfig/ui.po
index b20cf4a4c09..9e047473371 100644
--- a/source/te/sfx2/uiconfig/ui.po
+++ b/source/te/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 09:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467712427.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467712412.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/te/svtools/source/dialogs.po b/source/te/svtools/source/dialogs.po
index e14a9835898..2aa32f76693 100644
--- a/source/te/svtools/source/dialogs.po
+++ b/source/te/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 22:01+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
"Language: te\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385503273.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866639.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "ఫార్మాటెడ్ పాఠం(ఆర్ టి ఎఫ్)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/te/svtools/source/misc.po b/source/te/svtools/source/misc.po
index a92fa995fad..f655d0ae9d3 100644
--- a/source/te/svtools/source/misc.po
+++ b/source/te/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462794310.000000\n"
+"X-POOTLE-MTIME: 1462794309.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3893,6 +3893,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/te/svx/source/stbctrls.po b/source/te/svx/source/stbctrls.po
index bfd76951280..8a24e36a665 100644
--- a/source/te/svx/source/stbctrls.po
+++ b/source/te/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-13 23:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
"Language: te\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449866911.000000\n"
+"X-POOTLE-MTIME: 1431559614.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/te/svx/uiconfig/ui.po b/source/te/svx/uiconfig/ui.po
index 448c5bb08fe..1deb1790aa7 100644
--- a/source/te/svx/uiconfig/ui.po
+++ b/source/te/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -5087,16 +5087,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/tg/cui/uiconfig/ui.po b/source/tg/cui/uiconfig/ui.po
index d0ad45d7d4f..cbf9798c1ae 100644
--- a/source/tg/cui/uiconfig/ui.po
+++ b/source/tg/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476803678.000000\n"
#: aboutconfigdialog.ui
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/tg/helpcontent2/source/text/scalc/01.po b/source/tg/helpcontent2/source/text/scalc/01.po
index 765d3591730..7326ea9a920 100644
--- a/source/tg/helpcontent2/source/text/scalc/01.po
+++ b/source/tg/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-21 00:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "Функтсияҳо"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/tg/helpcontent2/source/text/shared/optionen.po b/source/tg/helpcontent2/source/text/shared/optionen.po
index a60ab837b96..2b4072ddc82 100644
--- a/source/tg/helpcontent2/source/text/shared/optionen.po
+++ b/source/tg/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 21:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2456,7 +2456,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/tg/sfx2/source/dialog.po b/source/tg/sfx2/source/dialog.po
index 867fca16130..1fb75800648 100644
--- a/source/tg/sfx2/source/dialog.po
+++ b/source/tg/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 03:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -721,6 +721,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Бо иерархия"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/tg/sfx2/uiconfig/ui.po b/source/tg/sfx2/uiconfig/ui.po
index 6582d89bd85..61fc81ac4fa 100644
--- a/source/tg/sfx2/uiconfig/ui.po
+++ b/source/tg/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 10:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 10:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: tg\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467713766.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467713748.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/tg/svtools/source/dialogs.po b/source/tg/svtools/source/dialogs.po
index dc7d290d9ae..d4b472868d3 100644
--- a/source/tg/svtools/source/dialogs.po
+++ b/source/tg/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 22:05+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tg\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385503546.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866129.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Матн дар формати [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/tg/svtools/source/misc.po b/source/tg/svtools/source/misc.po
index 123e0903bff..24417917e9a 100644
--- a/source/tg/svtools/source/misc.po
+++ b/source/tg/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 10:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/tg/svx/source/stbctrls.po b/source/tg/svx/source/stbctrls.po
index 326d3dd3985..b088bd67ed4 100644
--- a/source/tg/svx/source/stbctrls.po
+++ b/source/tg/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:40+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 00:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449866407.000000\n"
+"X-POOTLE-MTIME: 1431561976.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/tg/svx/uiconfig/ui.po b/source/tg/svx/uiconfig/ui.po
index 689408cc5c0..a0a00483ac4 100644
--- a/source/tg/svx/uiconfig/ui.po
+++ b/source/tg/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/th/cui/uiconfig/ui.po b/source/th/cui/uiconfig/ui.po
index bf5191218a4..9c3368a4444 100644
--- a/source/th/cui/uiconfig/ui.po
+++ b/source/th/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 15:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: th\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476803896.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476803798.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/th/sfx2/source/dialog.po b/source/th/sfx2/source/dialog.po
index 4830adc107a..a698e3c7bc7 100644
--- a/source/th/sfx2/source/dialog.po
+++ b/source/th/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 06:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457763905.000000\n"
+"X-POOTLE-MTIME: 1457763901.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ลำดับชั้น"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/th/sfx2/uiconfig/ui.po b/source/th/sfx2/uiconfig/ui.po
index 8ad151844ae..f7511df5104 100644
--- a/source/th/sfx2/uiconfig/ui.po
+++ b/source/th/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467713754.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467713753.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -799,7 +799,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/th/svtools/source/dialogs.po b/source/th/svtools/source/dialogs.po
index d8237d7ce58..f5f76509416 100644
--- a/source/th/svtools/source/dialogs.po
+++ b/source/th/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-05-14 00:54+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:42+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431564842.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866579.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Formatted text [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/th/svtools/source/misc.po b/source/th/svtools/source/misc.po
index b3f504c75a0..70d9a9d19dd 100644
--- a/source/th/svtools/source/misc.po
+++ b/source/th/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462791962.000000\n"
+"X-POOTLE-MTIME: 1462791961.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3896,6 +3896,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/th/svx/source/stbctrls.po b/source/th/svx/source/stbctrls.po
index 668c705029f..96b31206091 100644
--- a/source/th/svx/source/stbctrls.po
+++ b/source/th/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 00:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: th\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449866795.000000\n"
+"X-POOTLE-MTIME: 1431565078.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/th/svx/uiconfig/ui.po b/source/th/svx/uiconfig/ui.po
index e67ad76f206..82932813ed0 100644
--- a/source/th/svx/uiconfig/ui.po
+++ b/source/th/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5074,16 +5074,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/tn/cui/uiconfig/ui.po b/source/tn/cui/uiconfig/ui.po
index cdf9cbb7ad5..367b356d11f 100644
--- a/source/tn/cui/uiconfig/ui.po
+++ b/source/tn/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476803809.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/tn/sfx2/source/dialog.po b/source/tn/sfx2/source/dialog.po
index a1fde604076..86709bce4b1 100644
--- a/source/tn/sfx2/source/dialog.po
+++ b/source/tn/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 05:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457759397.000000\n"
+"X-POOTLE-MTIME: 1457759384.000000\n"
#: dialog.src
msgctxt ""
@@ -743,6 +743,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Tatelano"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/tn/sfx2/uiconfig/ui.po b/source/tn/sfx2/uiconfig/ui.po
index 260e1e9a92c..e3eed9b48d2 100644
--- a/source/tn/sfx2/uiconfig/ui.po
+++ b/source/tn/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467715040.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467715035.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/tn/svtools/source/dialogs.po b/source/tn/svtools/source/dialogs.po
index 75241f5845d..88a239da974 100644
--- a/source/tn/svtools/source/dialogs.po
+++ b/source/tn/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 22:17+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:40+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385504264.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866423.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -345,6 +345,14 @@ msgstr "Agilwe kago [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/tn/svtools/source/misc.po b/source/tn/svtools/source/misc.po
index 69b33201e60..1d5b7bfe84f 100644
--- a/source/tn/svtools/source/misc.po
+++ b/source/tn/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 13:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3957,6 +3957,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/tn/svx/source/stbctrls.po b/source/tn/svx/source/stbctrls.po
index 51d20ba60b6..e2428016d49 100644
--- a/source/tn/svx/source/stbctrls.po
+++ b/source/tn/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:43+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 01:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449866623.000000\n"
+"X-POOTLE-MTIME: 1431567580.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/tn/svx/uiconfig/ui.po b/source/tn/svx/uiconfig/ui.po
index fbf01ee3d12..8037231beba 100644
--- a/source/tn/svx/uiconfig/ui.po
+++ b/source/tn/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 10:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/tr/cui/uiconfig/ui.po b/source/tr/cui/uiconfig/ui.po
index fe984b73817..78a62a98151 100644
--- a/source/tr/cui/uiconfig/ui.po
+++ b/source/tr/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 00:22+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485130971.000000\n"
#: aboutconfigdialog.ui
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Telif Hakkı © 2000–2016 LibreOffice katkıcıları."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/scalc/01.po b/source/tr/helpcontent2/source/text/scalc/01.po
index b680f148c92..9c78a51aca6 100644
--- a/source/tr/helpcontent2/source/text/scalc/01.po
+++ b/source/tr/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-24 19:08+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487963319.000000\n"
#: 01120000.xhp
@@ -5708,7 +5708,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5716,7 +5716,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/tr/helpcontent2/source/text/shared/optionen.po b/source/tr/helpcontent2/source/text/shared/optionen.po
index 35113fe8c74..790b70f3307 100644
--- a/source/tr/helpcontent2/source/text/shared/optionen.po
+++ b/source/tr/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-02-19 21:46+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487540793.000000\n"
#: 01000000.xhp
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/tr/sfx2/source/dialog.po b/source/tr/sfx2/source/dialog.po
index 66a449e85d9..a1c5e755437 100644
--- a/source/tr/sfx2/source/dialog.po
+++ b/source/tr/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 11:12+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484997153.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiyerarşik"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/tr/sfx2/uiconfig/ui.po b/source/tr/sfx2/uiconfig/ui.po
index 9d069d8914a..6f7dbe59822 100644
--- a/source/tr/sfx2/uiconfig/ui.po
+++ b/source/tr/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 17:24+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485019472.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME Mozilla Kamu Lisansı'nın v. 2.0 sürümünde belirtilen şartlar çerçevesinde kullanıma sunulmaktadır. MPL'nin bir kopyası http://mozilla.org/MPL/2.0/ adresinden alınabilir.\n"
-"\n"
-"Yazılımın bazı kısımlar için geçerli Üçüncü Taraflara Ait Ek Kodların telif hakkı bildirimleri ve lisans şartları LICENSE.html dosyasında belirtilmektedir; tüm ayrıntıları İngilizce görmek için Show License seçeneğini seçiniz.\n"
-"\n"
-"Burada sözü edilen tüm ticari markalar ve tescilli markalar ilgili sahiplerine aittir.\n"
-"\n"
-"Telif Hakkı© 2000–2016 LibreOffice Katkıcılar Topluluğu. Tüm hakları saklıdır.\n"
-"\n"
-"Bu ürün 2000, 2011 Telif Hakları Oracle ve/veya yan kuruluşlarına ait olan OpenOffice.org temel alınarak %OOOVENDOR tarafından geliştirilmiştir. %OOOVENDOR tüm topluluk üyelerinin katkısını tanımaktadır, daha fazla bilgi için http://www.libreoffice.org/ adresini ziyaret ediniz."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/tr/svtools/source/dialogs.po b/source/tr/svtools/source/dialogs.po
index 5e46ee1e431..091c3cf50de 100644
--- a/source/tr/svtools/source/dialogs.po
+++ b/source/tr/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-02 22:32+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488493931.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Biçimlendirilmiş metin [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/tr/svtools/source/misc.po b/source/tr/svtools/source/misc.po
index 5380f1ef9ef..7539fdfeabb 100644
--- a/source/tr/svtools/source/misc.po
+++ b/source/tr/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 17:12+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485018779.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Macarca (Szekely-Macarca Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/tr/svx/source/stbctrls.po b/source/tr/svx/source/stbctrls.po
index a6193c73482..f2f1ed61c17 100644
--- a/source/tr/svx/source/stbctrls.po
+++ b/source/tr/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-05 23:33+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483659204.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Slaytı mevcut pencereye uydur."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/tr/svx/uiconfig/ui.po b/source/tr/svx/uiconfig/ui.po
index 3abeaf02bc6..35024954020 100644
--- a/source/tr/svx/uiconfig/ui.po
+++ b/source/tr/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-21 11:12+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484997166.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Güvenli Kipte devam et"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Çık"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_Değişiklikleri uygula ve yeniden başlat"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ts/cui/uiconfig/ui.po b/source/ts/cui/uiconfig/ui.po
index cb7b0242895..cc959a766af 100644
--- a/source/ts/cui/uiconfig/ui.po
+++ b/source/ts/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476803993.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ts/sfx2/source/dialog.po b/source/ts/sfx2/source/dialog.po
index ac6628e3ec4..f7cb175a481 100644
--- a/source/ts/sfx2/source/dialog.po
+++ b/source/ts/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 05:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457759849.000000\n"
+"X-POOTLE-MTIME: 1457759844.000000\n"
#: dialog.src
msgctxt ""
@@ -715,6 +715,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hi ku landzelelana"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/ts/sfx2/uiconfig/ui.po b/source/ts/sfx2/uiconfig/ui.po
index 54c9f042d17..d407c3e4fce 100644
--- a/source/ts/sfx2/uiconfig/ui.po
+++ b/source/ts/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467716508.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467716507.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ts/svtools/source/dialogs.po b/source/ts/svtools/source/dialogs.po
index 5de42809a0c..ea0d927260e 100644
--- a/source/ts/svtools/source/dialogs.po
+++ b/source/ts/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 22:28+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:49+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ts\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385504925.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866944.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Xitsariwa lexi nga fomatiwa [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ts/svtools/source/misc.po b/source/ts/svtools/source/misc.po
index fd38797ac76..8e5e78ad4f6 100644
--- a/source/ts/svtools/source/misc.po
+++ b/source/ts/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3965,6 +3965,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ts/svx/source/stbctrls.po b/source/ts/svx/source/stbctrls.po
index 3072d09a4e5..fb1b6217b47 100644
--- a/source/ts/svx/source/stbctrls.po
+++ b/source/ts/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 03:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ts\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449867162.000000\n"
+"X-POOTLE-MTIME: 1431573742.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ts/svx/uiconfig/ui.po b/source/ts/svx/uiconfig/ui.po
index b6f8e8f8559..1ff000026d9 100644
--- a/source/ts/svx/uiconfig/ui.po
+++ b/source/ts/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ug/cui/uiconfig/ui.po b/source/ug/cui/uiconfig/ui.po
index 567a48484a6..8bfbe44cf29 100644
--- a/source/ug/cui/uiconfig/ui.po
+++ b/source/ug/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:26+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 15:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ug\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476804375.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476804290.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "نەشر ھوقۇقىغا ئىگە © 2000 - 2016 LibreOffice تۆھپىكارلار."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ug/helpcontent2/source/text/scalc/01.po b/source/ug/helpcontent2/source/text/scalc/01.po
index 8b161737ae5..2d5a87151f2 100644
--- a/source/ug/helpcontent2/source/text/scalc/01.po
+++ b/source/ug/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5684,22 +5684,20 @@ msgid "Functions"
msgstr "فونكىسىيە"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ug/helpcontent2/source/text/shared/optionen.po b/source/ug/helpcontent2/source/text/shared/optionen.po
index bbc56693fac..20179dfa1d5 100644
--- a/source/ug/helpcontent2/source/text/shared/optionen.po
+++ b/source/ug/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-06 22:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ug/sfx2/source/dialog.po b/source/ug/sfx2/source/dialog.po
index 51f52277d82..89baeed89e3 100644
--- a/source/ug/sfx2/source/dialog.po
+++ b/source/ug/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 06:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457763324.000000\n"
+"X-POOTLE-MTIME: 1457763316.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "دەرىجىگە ئايرىلغان"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ug/sfx2/uiconfig/ui.po b/source/ug/sfx2/uiconfig/ui.po
index 4d43b960d17..e0e55949b21 100644
--- a/source/ug/sfx2/uiconfig/ui.po
+++ b/source/ug/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467717393.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467717363.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -791,7 +791,6 @@ msgid "_Show License"
msgstr "ئىجازەتنامە كۆرسەت(_S)"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -804,19 +803,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME نى Mozilla ئاممىۋى ئىجازەت كېلىشىمى، v. 2.0 دە ھوقۇق بەرگەن ماددىلىرىغا ئاساسەن كۆپچىلىكنىڭ ئىشلىتى ئۈچۈن تارقىتىلغان. MPL ماددىلىرىنىڭ كۆپەيتىلمە نۇسخىسىغا http://mozilla.org/MPL/2.0/ دىن ئېرىشەلەيسىز.\n"
-"\n"
-"بۇ يۇمشاق دېتالغا ئىشلىتىلگەن ئۈچىنچى تەرەپ قوشۇمچە كودلىرىنىڭ ئەسەر ھوقۇقى باياناتى ۋە ماددىلىرىنىڭ تەپسىلات قىسمى ئۇنىڭ ماددىلىرىنىڭ تىزىمى LICENSE.html ھۆججەتتە؛ ئىجازەتنامىنى كۆرسىتىش چېكىلسە ئىنگلىزچە تەپسىلاتىنى كۆرسىتىدۇ.\n"
-"\n"
-"بارلىق تاۋار ماركىلىرى ۋە خەتلەتكەن تاۋار ماركىلىرى مەزكۇر تېكىستتە تىلغا ئېلىنغانلارنىڭ ئۆزلىرىنىڭ مۈلكىدۇر.\n"
-"\n"
-"نەشر ھوقۇقىغا ئىگە ©2000, 2014 LibreOffice تۆھپىكارلىرى ۋە ياكى ئۇنىڭغا تەۋە ئورۇن. بارلىق ھوقۇقنى ساقلاپ قالىدۇ.\n"
-"\n"
-"بۇ مەھسۇلات %OOOVENDOR نى OpenOffice.org ئاساسىدا قۇرغان. OpenOffice.org نەشر ھوقۇقىغا ئىگە 2000, 2011 Oracle ۋە ياكى ئۇنىڭغا تەۋە ئورۇنلار. %OOOVENDOR بارلىق جامائەت ئەزالىرىغا رەھمەت ئېيتىدۇ، ئەگەر تېخىمۇ كۆپ تەپسىلاتنى بىلمەكچى بولسىڭىز http://www.libreoffice.org/ دىن كۆرۈڭ."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ug/svtools/source/dialogs.po b/source/ug/svtools/source/dialogs.po
index 34dbed97750..23ae25ec622 100644
--- a/source/ug/svtools/source/dialogs.po
+++ b/source/ug/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-21 02:02+0000\n"
-"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-02 04:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456020175.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462162897.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "پىچىملىق تېكست [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ug/svtools/source/misc.po b/source/ug/svtools/source/misc.po
index a5039ae19cf..19ef7bfc535 100644
--- a/source/ug/svtools/source/misc.po
+++ b/source/ug/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-14 00:10+0000\n"
"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ug/svx/source/stbctrls.po b/source/ug/svx/source/stbctrls.po
index 900398c71d7..5d7d97172bb 100644
--- a/source/ug/svx/source/stbctrls.po
+++ b/source/ug/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 04:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ug/svx/uiconfig/ui.po b/source/ug/svx/uiconfig/ui.po
index 62e28a01a45..489e4a99743 100644
--- a/source/ug/svx/uiconfig/ui.po
+++ b/source/ug/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5087,16 +5087,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/uk/cui/uiconfig/ui.po b/source/uk/cui/uiconfig/ui.po
index 2156b6d4e66..a9d28b33d55 100644
--- a/source/uk/cui/uiconfig/ui.po
+++ b/source/uk/cui/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-28 13:55+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:18+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: none\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490709323.000000\n"
+"X-POOTLE-MTIME: 1491988700.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 учасники спільноти LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000–2017 учасники спільноти LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/uk/dbaccess/source/ui/querydesign.po b/source/uk/dbaccess/source/ui/querydesign.po
index 82f00ad0dc1..68cfa7f3082 100644
--- a/source/uk/dbaccess/source/ui/querydesign.po
+++ b/source/uk/dbaccess/source/ui/querydesign.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-23 16:02+0000\n"
+"PO-Revision-Date: 2017-04-03 20:43+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482508969.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491252187.000000\n"
#: query.src
msgctxt ""
@@ -187,7 +187,7 @@ msgctxt ""
"STR_QUERY_FUNCTIONS\n"
"string.text"
msgid "(no function);Group"
-msgstr "(без функції);Group"
+msgstr "(без функції);Групувати"
#: query.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"ID_QUERY_DISTINCT\n"
"menuitem.text"
msgid "Distinct Values"
-msgstr "Однозначні значення"
+msgstr "Різні значення"
#: query.src
msgctxt ""
diff --git a/source/uk/dbaccess/uiconfig/ui.po b/source/uk/dbaccess/uiconfig/ui.po
index 44cae90276d..5e78be96798 100644
--- a/source/uk/dbaccess/uiconfig/ui.po
+++ b/source/uk/dbaccess/uiconfig/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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-08-04 22:11+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-03 20:43+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1470348715.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491252194.000000\n"
#: admindialog.ui
msgctxt ""
@@ -2144,7 +2144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct values:"
-msgstr "Окремі значення:"
+msgstr "Різні значення:"
#: relationdialog.ui
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/scalc/01.po b/source/uk/helpcontent2/source/text/scalc/01.po
index a13cb1e6680..35dcf33c853 100644
--- a/source/uk/helpcontent2/source/text/scalc/01.po
+++ b/source/uk/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-03-20 17:56+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-03 16:52+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490032577.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491238323.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5677,7 +5677,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5685,7 +5685,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
@@ -5844,7 +5844,7 @@ msgctxt ""
"370\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Служить для розрахунку величини лінійної амортизації за розрахунковий період. Якщо капітал набутий протягом платіжного періоду, використовується пропорційно розподілена амортизація.</ahelp>"
#: 04060103.xhp
msgctxt ""
@@ -5853,7 +5853,7 @@ msgctxt ""
"371\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Синтаксис"
#: 04060103.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"372\n"
"help.text"
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr ""
+msgstr "AMORLINC(Вартість; Дата_придбання; Перший термін; Залишкова вартість; Термін; Ставка; Базис)"
#: 04060103.xhp
msgctxt ""
@@ -5871,7 +5871,7 @@ msgctxt ""
"373\n"
"help.text"
msgid "<emph>Cost</emph> means the acquisition costs."
-msgstr ""
+msgstr "<emph>Вартість</emph> – початкова вартість."
#: 04060103.xhp
msgctxt ""
@@ -5880,7 +5880,7 @@ msgctxt ""
"374\n"
"help.text"
msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr ""
+msgstr "<emph>Дата придбання</emph> – дата купівлі."
#: 04060103.xhp
msgctxt ""
@@ -5889,7 +5889,7 @@ msgctxt ""
"375\n"
"help.text"
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr ""
+msgstr "<emph>Перший термін</emph> – дата закінчення першого платіжного періоду."
#: 04060103.xhp
msgctxt ""
@@ -5898,7 +5898,7 @@ msgctxt ""
"376\n"
"help.text"
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr ""
+msgstr "<emph>Залишкова вартість</emph> – ліквідаційна вартість майна у кінці періоду амортизації."
#: 04060103.xhp
msgctxt ""
@@ -5907,7 +5907,7 @@ msgctxt ""
"377\n"
"help.text"
msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr ""
+msgstr "<emph>Період</emph> – розглядуваний платіжний період."
#: 04060103.xhp
msgctxt ""
@@ -5916,7 +5916,7 @@ msgctxt ""
"378\n"
"help.text"
msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr ""
+msgstr "<emph>Ставка</emph> – ставка амортизації у відсотках."
#: 04060103.xhp
msgctxt ""
@@ -5924,7 +5924,7 @@ msgctxt ""
"bm_id3145257\n"
"help.text"
msgid "<bookmark_value>ACCRINT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>функція ACCRINT</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5933,7 +5933,7 @@ msgctxt ""
"335\n"
"help.text"
msgid "ACCRINT"
-msgstr ""
+msgstr "ACCRINT"
#: 04060103.xhp
msgctxt ""
@@ -6040,7 +6040,7 @@ msgctxt ""
"346\n"
"help.text"
msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
-msgstr ""
+msgstr "Цінні папери придбані 28.02.01. Дата нарахування перших відсотків – 31.08.2001. Дата виплати відсотків – 01.05.01. Відсоткова ставка дорівнює 10% (0,1), а номінал становить 1000 грошових одиниць. Відсотки виплачуються раз на півроку (частота 2). Базис – американський спосіб (0). Скільки становить накопичений відсоток?"
#: 04060103.xhp
msgctxt ""
@@ -6049,7 +6049,7 @@ msgctxt ""
"347\n"
"help.text"
msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
-msgstr ""
+msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> повертає значення 16,94444."
#: 04060103.xhp
msgctxt ""
@@ -6057,7 +6057,7 @@ msgctxt ""
"bm_id3151240\n"
"help.text"
msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>функція ACCRINTM</bookmark_value> <bookmark_value>накопичені відсотки; разовий платіж</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6066,7 +6066,7 @@ msgctxt ""
"348\n"
"help.text"
msgid "ACCRINTM"
-msgstr ""
+msgstr "ACCRINTM"
#: 04060103.xhp
msgctxt ""
@@ -6075,7 +6075,7 @@ msgctxt ""
"349\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Розраховує накопичений дохід для цінних паперів у разі разового платежу на дату угоди.</ahelp>"
#: 04060103.xhp
msgctxt ""
@@ -6084,7 +6084,7 @@ msgctxt ""
"350\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Синтаксис"
#: 04060103.xhp
msgctxt ""
@@ -6093,7 +6093,7 @@ msgctxt ""
"351\n"
"help.text"
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
-msgstr ""
+msgstr "ACCRINTM(Дата випуску; Дата розрахунку; Ставка; Номінал; Базис)"
#: 04060103.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"352\n"
"help.text"
msgid "<emph>Issue</emph> (required) is the issue date of the security."
-msgstr ""
+msgstr "<emph>Дата випуску</emph> (обов'язкова) дата випуску цінних паперів."
#: 04060103.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/00.po b/source/uk/helpcontent2/source/text/shared/00.po
index ea0724ebf59..ca1d508f967 100644
--- a/source/uk/helpcontent2/source/text/shared/00.po
+++ b/source/uk/helpcontent2/source/text/shared/00.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: 2016-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-03-28 13:58+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-04 18:58+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490709483.000000\n"
+"X-POOTLE-MTIME: 1491332289.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -10484,7 +10484,7 @@ msgctxt ""
"par_id3148420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Відкрийте <emph>Стилі та форматування</emph> - Стилі списків, потім контекстне меню на елементі списку і виберіть <emph>Новий/Змінити</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -10508,7 +10508,7 @@ msgctxt ""
"par_id3154930\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть <emph>Новий/Змінити</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -10532,7 +10532,7 @@ msgctxt ""
"par_id3156011\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Відкрийте <emph>Стилі та форматування</emph> - Стилі списків, потім контекстне меню на елементі списку і виберіть <emph>Новий/Змінити</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -10556,7 +10556,7 @@ msgctxt ""
"par_id3148733\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - List Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Відкрийте <emph>Стилі та форматування</emph> - Стилі списків, потім контекстне меню на елементі списку і виберіть <emph>Новий/Змінити</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -10580,7 +10580,7 @@ msgctxt ""
"par_id3153812\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Відкрийте <emph>Стилі та форматування - Стилі списків</emph>, потім контекстне меню на елементі списку і виберіть <emph>Новий/Змінити</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -10681,7 +10681,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form.</variable>"
-msgstr ""
+msgstr "<variable id=\"aupikomli\">Відкрийте панель інструментів \"Елементи керування\", клацніть значок <emph>Поле зі списком</emph> або <emph>Список</emph> і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10690,7 +10690,7 @@ msgctxt ""
"121\n"
"help.text"
msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.</variable>"
-msgstr ""
+msgstr "<variable id=\"aupikomli1\">Відкрийте панель інструментів \"Елементи керування\", клацніть значок <emph>Поле зі списком</emph> або <emph>Список</emph> і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 1.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10699,7 +10699,7 @@ msgctxt ""
"122\n"
"help.text"
msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.</variable>"
-msgstr ""
+msgstr "<variable id=\"aupikomli2\">Відкрийте панель інструментів \"Елементи керування\", клацніть значок <emph>Поле зі списком</emph> або <emph>Список</emph> і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 2.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10708,7 +10708,7 @@ msgctxt ""
"123\n"
"help.text"
msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr ""
+msgstr "<variable id=\"aupikomli3a\">Відкрийте панель інструментів \"Елементи керування\", клацніть значок <emph>Список</emph> і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 3.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10717,7 +10717,7 @@ msgctxt ""
"124\n"
"help.text"
msgid "<variable id=\"aupikomli3b\">Open Form Controls toolbar, click <emph>Combo Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr ""
+msgstr "<variable id=\"aupikomli3b\">Відкрийте панель інструментів \"Елементи керування\", клацніть значок <emph>Поле зі списком</emph> і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 3.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10726,7 +10726,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Open <emph>Toolbox</emph> bar in Basic dialog editor, click"
-msgstr ""
+msgstr "Відкрийте <emph>Панель інструментів</emph> у редакторі діалогових вікон Basic, клацніть"
#: 00040501.xhp
msgctxt ""
@@ -10778,7 +10778,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - General</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Форма - Загальні</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10787,7 +10787,7 @@ msgctxt ""
"98\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form</emph> icon - <emph>General</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Форма</emph>, відкрийте вкладку <emph>Загальні</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10796,7 +10796,7 @@ msgctxt ""
"100\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Data</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Форма - Дані</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10805,7 +10805,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form </emph>icon - <emph>Data</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Форма</emph>, відкрийте вкладку <emph>Дані</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10813,7 +10813,7 @@ msgctxt ""
"par_id1979125\n"
"help.text"
msgid "Open context menu of a selected control on an XML Form document, choose <emph>Control - Data</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента керування документа XML Form і перейдіть на вкладку <emph>Елемент керування - Дані</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"103\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Events</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Форма - Події</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10839,7 +10839,7 @@ msgctxt ""
"104\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form </emph>icon - <emph>Events</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Форма</emph>, відкрийте вкладку <emph>Події</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10848,7 +10848,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control</emph>"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, виберіть команду <emph>Елемент керування</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10874,7 +10874,7 @@ msgctxt ""
"106\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - General</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Елемент керування - Загальні</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10883,7 +10883,7 @@ msgctxt ""
"107\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>General</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Елемент керування</emph>, відкрийте вкладку <emph>Загальні</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10892,7 +10892,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Data</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Елемент керування - Дані</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10901,7 +10901,7 @@ msgctxt ""
"110\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Data</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Елемент керування</emph>, відкрийте вкладку <emph>Дані</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"112\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Events</emph> tab"
-msgstr ""
+msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку <emph>Елемент керування - Події</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10919,7 +10919,7 @@ msgctxt ""
"113\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Events</emph> tab"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму <emph>Елемент керування</emph>, відкрийте вкладку <emph>Події</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10927,7 +10927,7 @@ msgctxt ""
"par_id6058839\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -10944,7 +10944,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "Activation Order"
-msgstr ""
+msgstr "Порядок активації"
#: 00040501.xhp
msgctxt ""
@@ -10952,7 +10952,7 @@ msgctxt ""
"par_id2709433\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -10969,7 +10969,7 @@ msgctxt ""
"84\n"
"help.text"
msgid "Add Field"
-msgstr ""
+msgstr "Додати поле"
#: 00040501.xhp
msgctxt ""
@@ -10977,7 +10977,7 @@ msgctxt ""
"par_id9929502\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -10994,7 +10994,7 @@ msgctxt ""
"88\n"
"help.text"
msgid "Form Navigator"
-msgstr ""
+msgstr "Навігатор форми"
#: 00040501.xhp
msgctxt ""
@@ -11002,7 +11002,7 @@ msgctxt ""
"par_id4886928\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -11019,7 +11019,7 @@ msgctxt ""
"86\n"
"help.text"
msgid "Design Mode on/off"
-msgstr ""
+msgstr "Режим розробки"
#: 00040501.xhp
msgctxt ""
@@ -11028,7 +11028,7 @@ msgctxt ""
"114\n"
"help.text"
msgid "Open Form Navigator - select form - open context menu - choose <emph>Open in design mode</emph>"
-msgstr ""
+msgstr "Відкрийте Навігатор форми, виберіть форму, відкрийте контекстне меню, виберіть команду <emph>Відкрити в режимі розробки</emph>"
#: 00040501.xhp
msgctxt ""
@@ -11036,7 +11036,7 @@ msgctxt ""
"par_id8177434\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -11053,7 +11053,7 @@ msgctxt ""
"116\n"
"help.text"
msgid "Open in Design Mode"
-msgstr ""
+msgstr "Відкрити в режимі розробки"
#: 00040501.xhp
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"117\n"
"help.text"
msgid "Open Form Control toolbar, click"
-msgstr ""
+msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть"
#: 00040501.xhp
msgctxt ""
@@ -11079,7 +11079,7 @@ msgctxt ""
"118\n"
"help.text"
msgid "Wizards On/Off"
-msgstr ""
+msgstr "Помічник"
#: 00040501.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/01.po b/source/uk/helpcontent2/source/text/shared/01.po
index 2a0e89b5a14..8663c15763b 100644
--- a/source/uk/helpcontent2/source/text/shared/01.po
+++ b/source/uk/helpcontent2/source/text/shared/01.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-26 12:56+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-03 16:53+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490532994.000000\n"
+"X-POOTLE-MTIME: 1491238437.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -172,7 +172,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Creates a new presentation document ($[officename] Impress)."
-msgstr ""
+msgstr "Створює новий документ презентації ($[officename] Impress)."
#: 01010000.xhp
msgctxt ""
@@ -434,7 +434,7 @@ msgctxt ""
"par_idN10A15\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий документ презентації ($[officename] Impress).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -2168,7 +2168,7 @@ msgctxt ""
"bm_id3145211\n"
"help.text"
msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>каталоги; створення нових</bookmark_value> <bookmark_value>створення теки</bookmark_value> <bookmark_value>тека Мої документи; відкриття</bookmark_value> <bookmark_value>множинний вибір; відкриття</bookmark_value> <bookmark_value>відкриття; кілька файлів</bookmark_value> <bookmark_value>вибір; кілька файлів</bookmark_value> <bookmark_value>відкриття; файли, з покажчиками місця заповнення</bookmark_value> <bookmark_value>заповнювачів;при відкритті файлів</bookmark_value> <bookmark_value> \"документи\"; відкриття за допомогою шаблонів</bookmark_value> <bookmark_value>шаблони; відкриття документів з допомогою</bookmark_value> <bookmark_value>документи; стилі змінені</bookmark_value> <bookmark_value>стилі; повідомлення \"змінені\"</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -2176,7 +2176,7 @@ msgctxt ""
"hd_id3146936\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Відкрити\">Відкрити</link>"
#: 01020000.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/02.po b/source/uk/helpcontent2/source/text/shared/02.po
index b2086eda2ec..9871dec4b40 100644
--- a/source/uk/helpcontent2/source/text/shared/02.po
+++ b/source/uk/helpcontent2/source/text/shared/02.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-26 13:10+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-15 17:50+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490533837.000000\n"
+"X-POOTLE-MTIME: 1492278648.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_idN10CC6\n"
"help.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: 01170000.xhp
msgctxt ""
@@ -16585,7 +16585,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Run SQL command directly"
-msgstr ""
+msgstr "Виконати команду SQL напряму"
#: 14030000.xhp
msgctxt ""
@@ -16594,7 +16594,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\">Run SQL command directly</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/14030000.xhp\" name=\"Виконати команду SQL напряму\">Виконати команду SQL напряму</link>"
#: 14030000.xhp
msgctxt ""
@@ -16629,7 +16629,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Run SQL command directly"
-msgstr ""
+msgstr "Виконати команду SQL напряму"
#: 14030000.xhp
msgctxt ""
@@ -16775,7 +16775,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Різні значення"
#: 14070000.xhp
msgctxt ""
@@ -16783,7 +16783,7 @@ msgctxt ""
"bm_id3149991\n"
"help.text"
msgid "<bookmark_value>SQL; DISTINCT parameter</bookmark_value><bookmark_value>distinct values in SQL queries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SQL; параметр DISTINCT</bookmark_value><bookmark_value>різні значення в запитах SQL</bookmark_value>"
#: 14070000.xhp
msgctxt ""
@@ -16792,7 +16792,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/02/14070000.xhp\" name=\"Distinct Values\">Distinct Values</link>"
-msgstr "<link href=\"text/shared/02/14070000.xhp\" name=\"Окремі значення\">Окремі значення</link>"
+msgstr "<link href=\"text/shared/02/14070000.xhp\" name=\"Різні значення\">Різні значення</link>"
#: 14070000.xhp
msgctxt ""
@@ -16801,7 +16801,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL Query</link> in the current column by the parameter DISTINCT.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
-msgstr ""
+msgstr "<ahelp hid=\".uno:DBDistinctValues\">Розширює створену виділену інструкцію <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"запит SQL\">запиту SQL</link> в поточному стовпчику із використанням параметра DISTINCT.</ahelp> Як наслідок, усі однакові значення, які зустрічаються кілька разів, будуть відображені тільки один раз."
#: 14070000.xhp
msgctxt ""
@@ -16818,7 +16818,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Різні значення"
#: 18010000.xhp
msgctxt ""
@@ -18844,7 +18844,7 @@ msgctxt ""
"par_id3152820\n"
"help.text"
msgid "In the <emph>Query Properties</emph> dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set."
-msgstr ""
+msgstr "В діалоговому вікні <emph>Властивості запиту</emph> ви можете задати дві властивості цього запиту SQL, а саме чи слід повертати різні значення чи обмежити множину результатів."
#: querypropdlg.xhp
msgctxt ""
@@ -18860,7 +18860,7 @@ msgctxt ""
"hd_id3154927\n"
"help.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Різні значення"
#: querypropdlg.xhp
msgctxt ""
@@ -18868,7 +18868,7 @@ msgctxt ""
"par_id030520091208050\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Use distinct values in query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Використовувати різні значення у запиті.</ahelp>"
#: querypropdlg.xhp
msgctxt ""
@@ -18876,7 +18876,7 @@ msgctxt ""
"par_id0305200912080610\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Not use distinct values in query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Не використовувати різні значення у запиті.</ahelp>"
#: querypropdlg.xhp
msgctxt ""
@@ -18884,7 +18884,7 @@ msgctxt ""
"par_id3156040\n"
"help.text"
msgid "Expands the created select statement of the SQL Query in the current column by the parameter DISTINCT. The consequence is that identical values occurring multiple times are listed only once."
-msgstr ""
+msgstr "Розширює створену виділену інструкцію запиту SQL в поточному стовпчику із використанням параметра DISTINCT. Як наслідок, усі однакові значення, які зустрічаються кілька разів, будуть відображені тільки один раз."
#: querypropdlg.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/explorer/database.po b/source/uk/helpcontent2/source/text/shared/explorer/database.po
index c8b61feea5d..6f95e739523 100644
--- a/source/uk/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/uk/helpcontent2/source/text/shared/explorer/database.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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 20:42+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-10 17:09+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476823344.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491844167.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3150445\n"
"help.text"
msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
-msgstr "<bookmark_value>запити;огляд (Підстави)</bookmark_value><bookmark_value>таблиці в базах даних; друк запитів (Підстави)</bookmark_value><bookmark_value>друк; запити (Підстави)</bookmark_value><bookmark_value>запити; друк (Підстави)</bookmark_value>"
+msgstr "<bookmark_value>запити;огляд (Base)</bookmark_value><bookmark_value>таблиці в базах даних; друк запитів (Base)</bookmark_value><bookmark_value>друк; запити (Base)</bookmark_value><bookmark_value>запити; друк (Base)</bookmark_value>"
#: 02000000.xhp
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "You can also open the data source view (F4), select the entire database table in the data source view (button in the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr "Крім того, можна відкрити ракурс джерела даних (F4), вибрати всю таблицю бази даних у ракурсі джерела даних (кнопка у лівому верхньому куті таблиці) і перетягти вибране у текстовий документ або електронну таблицю."
+msgstr "Крім того, можна відкрити перегляд джерела даних (Shift+Ctrl+F4), вибрати всю таблицю бази даних у перегляді джерела даних (кнопка у лівому верхньому куті таблиці) і перетягти вибране у текстовий документ або електронну таблицю."
#: 02000000.xhp
msgctxt ""
@@ -298,7 +298,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr "<ahelp hid=\".\">Можливість відкрити запит в <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"конструкторі\">конструкторі</link>, незважаючи на відсутні елементи.</ahelp> Також можна вказати інші помилки, які слід ігнорувати."
+msgstr "<ahelp hid=\".\">Дозволяє відкрити запит в <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"конструктор\">конструкторі</link>, незважаючи на відсутні елементи.</ahelp> Ця опція також дозволяє вказати, чи потрібно ігнорувати інші помилки."
#: 02000002.xhp
msgctxt ""
@@ -307,7 +307,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
-msgstr "Запит відкривається в режимі конструктора (графічний інтерфейс). Відсутні таблиці показані порожніми, а неправильні поля відображаються в спеціальному списку полів. Це дозволяє працювати саме з тими полями, які викликали помилку."
+msgstr "Запит відкривається в режимі конструктора (графічний інтерфейс). Відсутні таблиці показані порожніми, а недійсні поля з їх (недійсними) іменами відображаються в списку полів. Це дає змогу працювати саме з тими полями, які викликали помилку."
#: 02000002.xhp
msgctxt ""
@@ -316,7 +316,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Open the query in the SQL View"
-msgstr "Відкрити запит у представленні SQL"
+msgstr "Відкрити запит у вигляді SQL"
#: 02000002.xhp
msgctxt ""
@@ -325,7 +325,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr "<ahelp hid=\".\">Дозволяє відкрити вікно конструктора запитів у <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Режим SQL\">Режимі SQL</link> та подати запит в якості <link href=\"text/shared/02/14030000.xhp\" name=\"Власний запит SQL\">Власного запиту SQL</link>.</ahelp> Вийти з власного режиму SQL можна тільки після того, як інструкція $[officename] буде повністю інтерпретована (це можливо тільки у випадку, якщо використані таблиці або поля в запиті фактично існують)."
+msgstr "<ahelp hid=\".\">Дозволяє відкрити вікно конструктора запитів у <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"режим SQL\">режимі SQL</link> та обробити запит в якості <link href=\"text/shared/02/14030000.xhp\" name=\"SQL код\">SQL коду</link>.</ahelp> Вийти з режиму SQL коду можна тільки після того, як інструкція $[officename] буде повністю інтерпретована (це можливо тільки при використанні в запиті таблиць або полів, що дійсно існують)."
#: 02000002.xhp
msgctxt ""
@@ -343,7 +343,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
-msgstr "<ahelp hid=\".\">Можливість скасувати процедуру і вказати, щоб відкриття запиту не виконувалося.</ahelp> Цей параметр відповідає функції кнопки <emph>Скасувати</emph>."
+msgstr "<ahelp hid=\".\">Дозволяє скасувати процедуру і вказати, щоб відкриття запиту не виконувалося.</ahelp> Цей параметр відповідає функції кнопки <emph>Скасувати</emph>."
#: 02000002.xhp
msgctxt ""
@@ -361,7 +361,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
-msgstr "<ahelp hid=\".\">Якщо обраний перший варіант, то при відкритті запиту в графічному поданні, незважаючи на відсутні елементи, можна вказати інші помилки, які повинні ігноруватися.</ahelp> Отже, під час поточного процесу відкриття повідомлення про помилки не відображаються, якщо запит інтерпретується неправильно."
+msgstr "<ahelp hid=\".\">Якщо ви обрали перший варіант та хочете відкрити цей запит в графічному поданні, незважаючи на відсутні елементи, то можете вказати ігнорування інших помилок.</ahelp> Отже, під час цього відкривання повідомлення про помилки не будуть відображені навіть, коли запит не можна правильно інтерпретувати."
#: 02010100.xhp
msgctxt ""
@@ -377,7 +377,7 @@ msgctxt ""
"bm_id3153323\n"
"help.text"
msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>перегляди; створення перегляду бази даних (Base)</bookmark_value> <bookmark_value>запити; створення в режимі конструктора (Base)</bookmark_value> <bookmark_value>проектування; запити (Base)</bookmark_value> <bookmark_value>проектування перегляду; запити/перегляди (Base)</bookmark_value> <bookmark_value>зв'язування; таблиці (Base)</bookmark_value> <bookmark_value>таблиці в базах даних; зв'язування для запитів (Base)</bookmark_value> <bookmark_value>запити; зв'язування таблиць (Base)</bookmark_value> <bookmark_value>таблиці в базах даних; зв'язки (Base)</bookmark_value> <bookmark_value>зв'язки; зв'язування таблиць (Base)</bookmark_value> <bookmark_value>запити; видалення посилань на таблицю (Base)</bookmark_value> <bookmark_value>критерії проектування запиту (Base)</bookmark_value> <bookmark_value>запити; формулювання умов фільтрації (Base)</bookmark_value> <bookmark_value>умови фільтрації; в запитах (Base)</bookmark_value> <bookmark_value>параметри; запити (Base)</bookmark_value> <bookmark_value>запити; параметри запитів (Base)</bookmark_value> <bookmark_value>SQL; запити (Base)</bookmark_value> <bookmark_value>SQL код (Base)</bookmark_value>"
#: 02010100.xhp
msgctxt ""
@@ -433,7 +433,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
-msgstr "Щоб створити запит, клацніть піктограму <emph>Запити</emph> в документі бази даних, а потім виберіть <emph>Створити запит у режимі конструктора</emph>."
+msgstr "Щоб створити запит, клацніть піктограму <emph>Запити</emph> в документі бази даних, а потім виберіть <emph>Створити запит у режимі дизайну</emph>."
#: 02010100.xhp
msgctxt ""
@@ -441,7 +441,7 @@ msgctxt ""
"par_id3150255\n"
"help.text"
msgid "The lower pane of the Design View is where you <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\">criteria</link> for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
-msgstr ""
+msgstr "Нижня панель конструктора дозволяє вам <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"визначення\">визначити</link> запит. Для цього, треба вказати <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"назви полів\">назви полів</link> бази даних які будуть використані в ньому, та <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"критерії\">критерії</link> відображення полів. Щоб змінити послідовність розміщення стовпців у нижній панелі консруктора, перетягніть заголовок стовпця у потрібне місце розташування, або оберіть стовпець та натисніть <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+клавіша зі стрілкою."
#: 02010100.xhp
msgctxt ""
@@ -553,7 +553,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
-msgstr "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Двічі клацніть поля, щоб додати їх до запиту. Перетягування для визначення зв'язків.</ahelp>"
+msgstr "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Двічі клацніть поля, щоб додати їх до запиту. Перетягніть одне поле та відпустіть його на інше для визначення зв'язків між ними.</ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"par_id3152577\n"
"help.text"
msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must tell $[officename] what the relationship exists between the data in the two spreadsheets."
-msgstr "Якщо, наприклад, є електронна таблиця для статей під номерами та електронна таблиця для клієнтів, у яку записуються всі статті, замовлені клієнтом з використанням відповідних номерів статей, то існує зв'язок між двома полями даних \"номер статті\". Тепер, щоб створити запит усіх замовлених клієнтом статей, необхідно отримати дані з двох таблиць. Для цього потрібно вказати у $[officename], який зв'язок існує між даними цих електронних таблиць."
+msgstr "Якщо, наприклад, у вас є таблиця для статей ідентифікованих за номером статті та таблиця для клієнтів, у яку ви записуєте всі статті, замовлені клієнтом з використанням відповідних номерів статей, то існує зв'язок між двома полями даних \"номер статті\". Тепер, щоб створити запит усіх замовлених клієнтом статей, вам необхідно отримати дані з двох таблиць. Для цього потрібно вказати $[officename], який зв'язок існує між даними цих таблиць."
#: 02010100.xhp
msgctxt ""
@@ -625,7 +625,7 @@ msgctxt ""
"par_id3155302\n"
"help.text"
msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields in the two windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
-msgstr "Виберіть ім'я поля в таблиці (наприклад, ім'я поля \"Номер елемента таблиці клієнтів), утримуючи кнопку миші, і перетягніть ім'я поля на ім'я поля іншої таблиці (\"Номер елемента таблиці елементів). Якщо відпустити кнопку миші, то з'являється лінія, що з'єднує ці два поля в двох вікнах. Відповідна умова (вміст імен полів має збігатися) вводиться в підсумковий запит SQL."
+msgstr "Щоб зробити це, клацніть ім'я поля в таблиці (наприклад, ім'я поля \"Номер елемента\" таблиці клієнтів), утримуйте кнопку миші натиснутою та перетягніть назву поля на назву поля іншої таблиці (\"Номер елемента\" таблиці елементів). Коли ви відпустите кнопку миші, з'явиться лінія, що з'єднає ці два поля в двох вікнах. Відповідна умова (вміст імен полів має збігатися) вводиться в підсумковий запит SQL."
#: 02010100.xhp
msgctxt ""
@@ -633,7 +633,7 @@ msgctxt ""
"par_id3153876\n"
"help.text"
msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database."
-msgstr "Створення запиту на основі декількох зв'язаних аркушів можливе тільки при використанні $[officename] в якості інтерфейсу для реляційної бази даних."
+msgstr "Створення запиту на основі декількох зв'язаних таблиць можливе тільки при використанні $[officename] в якості інтерфейсу для реляційної бази даних."
#: 02010100.xhp
msgctxt ""
@@ -657,7 +657,7 @@ msgctxt ""
"par_id3154791\n"
"help.text"
msgid "If you double-click the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of link in the <link href=\"text/shared/explorer/database/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "Двічі клацніть лінію, що сполучає два пов'язаних поля, або виберіть команду меню <emph>Вставка - Створити зв'язок</emph>, щоб задати тип посилання в діалоговому вікні <link href=\"text/shared/explorer/database/02010101.xhp\" name=\"Relations\"><emph>Зв'язки</emph></link>."
+msgstr "Двічі клацніть лінію, що сполучає два пов'язаних поля, або виберіть команду меню <emph>Вставка - Створити зв'язок</emph>, щоб вказати тип посилання в діалоговому вікні <link href=\"text/shared/explorer/database/02010101.xhp\" name=\"Властивості зв'язку\"><emph>Властивості зв'язку</emph></link>."
#: 02010100.xhp
msgctxt ""
@@ -697,7 +697,7 @@ msgctxt ""
"hd_id3151208\n"
"help.text"
msgid "Define query"
-msgstr "Визначити запит"
+msgstr "Визначення запиту"
#: 02010100.xhp
msgctxt ""
@@ -705,7 +705,7 @@ msgctxt ""
"par_id3158416\n"
"help.text"
msgid "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Select conditions to define the query.</ahelp> Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND."
-msgstr "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Виберіть умови для визначення запиту.</ahelp> Кожен стовпець таблиці конструктора містить поле даних для запиту. Умови в одному рядку пов'язані з логічним І."
+msgstr "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Виберіть умови для визначення запиту.</ahelp> Кожен стовпець таблиці конструктора містить поле даних для запиту. Умови в одному рядку пов'язані за допомогою Логічного ТА."
#: 02010100.xhp
msgctxt ""
@@ -713,7 +713,7 @@ msgctxt ""
"hd_id3154161\n"
"help.text"
msgid "Specify field name"
-msgstr "Вкажіть назву поля"
+msgstr "Вказати назву поля"
#: 02010100.xhp
msgctxt ""
@@ -721,7 +721,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "First, select all field names from the tables that you want to add to the query. You can do this either with drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design. As you do this, you can decide which column you want to add the field to. Select a field name by double-clicking. It will then be added to the next free column."
-msgstr "Спочатку виберіть всі імена полів таблиць, які потрібно додати до запиту. Для цього перетягніть або двічі клацніть ім'я поля у вікні таблиці. При перетягуванні перетягніть ім'я поля з вікна таблиці в нижню область конструктора запитів. Після цього можна визначити стовпці для додавання в поле. Щоб вибрати ім'я поля, двічі клацніть його. Воно буде додано до наступного порожнього стовпця."
+msgstr "Спочатку оберіть всі назви полів таблиць, які потрібно додати до запиту. Ви можете зробити це за допомогою перетягування або подвійного клацання назви поля у вікні таблиці. Для перетягування мишкою пересуньте назву поля з вікна таблиці в нижню область конструктора запитів. Після цього ви можете визначити, у який саме стовпчик варто додати це поле. Виберіть ім'я поля подвійним клацанням. Його буде додано до наступного порожнього стовпця."
#: 02010100.xhp
msgctxt ""
@@ -737,7 +737,7 @@ msgctxt ""
"par_id3154479\n"
"help.text"
msgid "To remove a field name from the query, click the column header of the field and choose the <emph>Delete</emph> command on the context menu for the column."
-msgstr "Щоб видалити ім'я поля запиту, клацніть заголовок стовпця в полі і в контекстному меню стовпця виберіть команду <emph>Видалити</emph>."
+msgstr "Щоб видалити назву поля із запиту, клацніть заголовок стовпця поля та виберіть команду <emph>Видалити</emph> у контекстному меню стовпця."
#: 02010100.xhp
msgctxt ""
@@ -769,7 +769,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Enter the name of the schema that is assigned to the query or table view.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Введіть ім'я схеми, призначеної для запиту або таблиці.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Введіть ім'я схеми, призначеної для запиту або представлення.</ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -777,7 +777,7 @@ msgctxt ""
"hd_id3156717\n"
"help.text"
msgid "Query name or table view name"
-msgstr "Назва запиту або таблиці"
+msgstr "Назва запиту або назва представлення"
#: 02010100.xhp
msgctxt ""
@@ -785,7 +785,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/savedialog/title\">Enter the name of the query or table view.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/savedialog/title\">Введіть ім'я запиту або таблиці.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/savedialog/title\">Введіть назву запиту або представлення.</ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -929,7 +929,7 @@ msgctxt ""
"par_id3145134\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field should be filtered.</ahelp>"
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Задання <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"умов \">умов</link> фільтрації вмісту поля даних.</ahelp>"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Визначення <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"критерії\">умов</link>, за якими має бути відфільтрований вміст поля даних.</ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -1041,7 +1041,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Calculates the arithmetic mean of a field."
-msgstr "Обчислення середнього геометричного значення поля."
+msgstr "Обчислення середнього арифметичного значення поля."
#: 02010100.xhp
msgctxt ""
@@ -1065,7 +1065,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "Determines the number of records in the table. Empty fields can either be counted (a) or not (b)."
-msgstr "Визначення кількості записів у таблиці. Порожні поля можуть враховуватися (a) або ні (b)."
+msgstr "Визначення кількості записів у таблиці. Порожні поля можуть враховуватися (а) або ні (б)."
#: 02010100.xhp
msgctxt ""
@@ -1081,7 +1081,7 @@ msgctxt ""
"par_id3152889\n"
"help.text"
msgid "b) COUNT(column): Passing a field name as an argument counts only fields in which the field name in question contains a value. Null values (empty fields) will not be counted."
-msgstr "b) COUNT(стовпець): Призначення імені поля в якості аргументу, що враховує тільки ті поля, у яких дане ім'я поля містить значення. Нульові значення (порожні поля) не враховуються."
+msgstr "б) COUNT(стовпець): Призначення імені поля в якості аргументу, що враховує тільки ті поля, у яких дане ім'я поля містить значення. Значення NULL (порожні поля) не враховуються."
#: 02010100.xhp
msgctxt ""
@@ -1161,7 +1161,7 @@ msgctxt ""
"par_id3148820\n"
"help.text"
msgid "Group"
-msgstr "Згрупувати"
+msgstr "Групувати"
#: 02010100.xhp
msgctxt ""
@@ -1169,7 +1169,7 @@ msgctxt ""
"par_id3145375\n"
"help.text"
msgid "GROUP BY"
-msgstr "ГРУПУВАТИ ЗА"
+msgstr "GROUP BY"
#: 02010100.xhp
msgctxt ""
@@ -1177,7 +1177,7 @@ msgctxt ""
"par_id3149438\n"
"help.text"
msgid "Groups query data according to the field name selected. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING."
-msgstr "Групування даних запиту відповідно до обраного імені поля. Виконання функцій відбувається відповідно зі зазначеними групами. У SQL цей параметр відповідає розділу GROUP BY. Якщо умова додано, то його запис з'являється в SQL HAVING."
+msgstr "Виконується групування даних запиту згідно із значенням обраного поля. Виконання функцій відбувається відповідно до отриманих груп. У SQL цей параметр відповідає пропозиції GROUP BY. Якщо до групування додано умову, то її запис у SQL з'являється у пропозиції HAVING."
#: 02010100.xhp
msgctxt ""
@@ -1217,7 +1217,7 @@ msgctxt ""
"par_id3159205\n"
"help.text"
msgid "Except for the <emph>Group</emph> function, the above functions are so-called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database system in use and on the current state of the Base driver."
-msgstr "За виключення функції <emph>Група</emph>, вищевказані функції мають загальну назву \"Агрегатні функції\". Це функції, які виконують розрахунок даних для створення зведених даних на підставі одержаних результатів. Можуть бути доступні додаткові функції, не зазначені у полі зі списком. Це залежить від конкретної використовуваної бази даних системи і стану драйвера Base."
+msgstr "За виключення функції <emph>Групувати</emph>, вищевказані функції мають загальну назву \"Агрегатні функції\". Це функції, які виконують розрахунок даних для створення зведених даних на підставі одержаних результатів. Можуть бути доступні додаткові функції, не зазначені у полі зі списком. Це залежить від конкретної використовуваної бази даних системи і стану драйвера Base."
#: 02010100.xhp
msgctxt ""
@@ -1233,7 +1233,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If the query is not to be displayed in the column header, enter the desired name under <emph>Alias</emph>."
-msgstr "Викликам функцій можна призначати псевдоніми. Щоб не відображати запит в заголовку стовпця, введіть потрібне ім'я в поле <emph>Псевдонім</emph>."
+msgstr "Полям з викликами функцій можна призначати псевдоніми. Щоб приховати назву функції у заголовку стовпця, введіть потрібне ім'я в поле <emph>Псевдонім</emph>."
#: 02010100.xhp
msgctxt ""
@@ -1241,7 +1241,7 @@ msgctxt ""
"par_id3155539\n"
"help.text"
msgid "The corresponding function in an SQL statement is:"
-msgstr "Відповідна функція в інструції SQL:"
+msgstr "Відповідна функція в інструкції SQL:"
#: 02010100.xhp
msgctxt ""
@@ -1257,7 +1257,7 @@ msgctxt ""
"par_id3144431\n"
"help.text"
msgid "Example:"
-msgstr "Приклад"
+msgstr "Приклад:"
#: 02010100.xhp
msgctxt ""
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr "SELECT COUNT(*) AS count FROM \"Item\""
+msgstr "SELECT COUNT(*) AS кількість FROM \"Елемент\""
#: 02010100.xhp
msgctxt ""
@@ -1273,7 +1273,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "If you run this function, you cannot insert any additional columns for the query other than receiving these columns as a \"Group\" function."
-msgstr "При запуску цієї функції додаткові стовпці можуть бути вставлені в запит тільки за допомогою отримання цих стовпців як функції \"Групувати\"."
+msgstr "При використанні цієї функції, додаткові стовпці можуть бути додані до запиту виключно при використанні їх із функцією \"Групувати\"."
#: 02010100.xhp
msgctxt ""
@@ -1321,7 +1321,7 @@ msgctxt ""
"par_id3161652\n"
"help.text"
msgid "Double-click the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
-msgstr "Двічі клацніть поле \"Номер елемента“ таблиці \"Елемент\". За допомогою контекстного меню перейдіть до рядка <emph>Функція</emph> і виберіть функцію \"Рахунок\"."
+msgstr "Двічі клацніть поле \"Номер елемента\" в таблиці \"Елемент\". За допомогою контекстного меню увімкніть відображення рядка <emph>Функція</emph> та виберіть функцію \"Кількість\"."
#: 02010100.xhp
msgctxt ""
@@ -1329,7 +1329,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr "Введіть умову \">3\" і відключіть поле \"Видимий\"."
+msgstr "Введіть умову \">3\" та зніміть прапорець у полі \"Видиме\"."
#: 02010100.xhp
msgctxt ""
@@ -1393,7 +1393,7 @@ msgctxt ""
"par_id3151191\n"
"help.text"
msgid "Choose Group for the \"Supplier_No\" field."
-msgstr "Виберіть групу для поля \"Номер постачальника\"."
+msgstr "Виберіть функцію \"Групувати\" для поля \"Номер постачальника\"."
#: 02010100.xhp
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "The following context menu commands and symbols are available:"
-msgstr "Доступні наступні символи і команди контекстного меню:"
+msgstr "Доступні наступні елементи контекстного меню, оператори та команди:"
#: 02010100.xhp
msgctxt ""
@@ -1417,7 +1417,7 @@ msgctxt ""
"hd_id3154172\n"
"help.text"
msgid "Functions"
-msgstr "Функція"
+msgstr "Функції"
#: 02010100.xhp
msgctxt ""
@@ -1449,7 +1449,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Alias Name"
-msgstr "Назва псевдоніма"
+msgstr "Псевдонім"
#: 02010100.xhp
msgctxt ""
@@ -1465,7 +1465,7 @@ msgctxt ""
"hd_id3153298\n"
"help.text"
msgid "Distinct Values"
-msgstr "Однозначні значення"
+msgstr "Різні значення"
#: 02010100.xhp
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"par_id3147500\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Applies only distinct values to the query.</ahelp> This applies to records containing data that appears several times in the selected fields. If the <emph>Distinct Values</emph> command is active, you will see only one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Застосування до запиту тільки однозначних значень.</ahelp> Запит застосовується до записів, що містять дані, які з'являються в обраних полях кілька разів. Якщо команда <emph>Однозначні значення</emph> активна, то в запиті буде відображатися тільки один запис (DISTINCT). В іншому випадку будуть відображатися всі записи, що задовольняють умовам запиту (ALL)."
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Застосовує до запиту тільки різні значення.</ahelp> Запит застосовується до записів, що містять дані, які з'являються в обраних полях кілька разів. Якщо команда <emph>Різні значення</emph> активна, то в запиті буде відображатися тільки один запис (DISTINCT). В іншому випадку будуть відображатися всі записи, що задовольняють умови запиту (ALL)."
#: 02010100.xhp
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"par_id3150436\n"
"help.text"
msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the<emph> Distinct Values</emph> command to specify in the query that the name \"Smith\" will occur only once."
-msgstr "Наприклад, якщо в базі даних адрес кілька разів зустрічається прізвище \"Smith\", можна скористатися командою <emph>Однозначні значення</emph> і вказати в запиті, щоб це прізвище зустрічалося тільки один раз."
+msgstr "Наприклад, якщо в базі даних адрес кілька разів зустрічається прізвище \"Сміт\", можна скористатися командою <emph>Різні значення</emph> і вказати в запиті, щоб це прізвище зустрічалося тільки один раз."
#: 02010100.xhp
msgctxt ""
@@ -1489,7 +1489,7 @@ msgctxt ""
"par_id3152352\n"
"help.text"
msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the<emph> Distinct Values</emph> command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once."
-msgstr "Для запиту, що включає декілька полів, поєднання значень всіх полів має бути унікальним, щоб можна було отримати результат у середині певного запису. Наприклад, в адресній книзі один раз зустрічається \"Smith in Chicago\" і два рази \"Smith in London\". За допомогою команди <emph>Однозначні значення</emph> у запиті будуть використовуватися два поля \"прізвище\" та \"місто\", а результат запит буде містити по одному значенню \"Smith in Chicago\" і \"Smith in London\"."
+msgstr "Для запиту, що включає кілька полів, комбінація значень з усіх полів повинна бути унікальною, щоб результат міг бути сформований зі специфічного запису. Наприклад, в адресній книзі один раз зустрічається \"Сміт в Чикаго\" і два рази \"Сміт в Лондоні\". За допомогою команди <emph>Різні значення</emph> у запиті будуть використовуватися два поля \"прізвище\" та \"місто\", а результат запиту буде містити по одному значенню \"Сміт в Чикаго\" та \"Сміт в Лондоні\"."
#: 02010100.xhp
msgctxt ""
@@ -1593,7 +1593,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the operator = will be automatically adopted."
-msgstr "Оператор = не відображається в полях запиту. Якщо значення вводиться без оператора, то автоматично використовується оператор =."
+msgstr "Оператор = не відображається в полях запиту. Якщо ви введете значення без оператора, то оператор = буде використано автоматично."
#: 02010100.xhp
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "... the content of the field does not correspond to the specified expression."
-msgstr "... вміст поля не збігається зі зазначеним виразом."
+msgstr "... вміст поля не збігається із зазначеним виразом."
#: 02010100.xhp
msgctxt ""
@@ -1777,7 +1777,7 @@ msgctxt ""
"par_id3154744\n"
"help.text"
msgid "... The field name is empty. For Yes/No fields with three states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr "... ім'я поля порожнє. Для полів \"Так/Ні\" з трьома станами ця команда автоматично запитує стан \"не визначено\" (ні \"Так\", ні \"ні\")."
+msgstr "... значення поля порожнє. Для полів \"Так/Ні\" з трьома станами ця команда автоматично запитує стан \"не визначено\" (ні \"Так\", ні \"Ні\")."
#: 02010100.xhp
msgctxt ""
@@ -1809,7 +1809,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "... the field name is not empty."
-msgstr "... ім'я поля не порожнє."
+msgstr "... значення поля не порожнє."
#: 02010100.xhp
msgctxt ""
@@ -1921,7 +1921,7 @@ msgctxt ""
"par_id3161664\n"
"help.text"
msgid "... the field name does not contain the specified expression."
-msgstr "... ім'я поля не містить зазначеного виразу."
+msgstr "... значення поля не містить зазначеного виразу."
#: 02010100.xhp
msgctxt ""
@@ -1953,7 +1953,7 @@ msgctxt ""
"par_id3154395\n"
"help.text"
msgid "... the field name contains a value that lies between the two values x and y."
-msgstr "... ім'я поля містить значення, що лежить між значеннями x і y."
+msgstr "... поле містить значення, що лежить між значеннями x та y."
#: 02010100.xhp
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"par_id3148992\n"
"help.text"
msgid "... the field name contains a value that does not lie between the two values x and y."
-msgstr "... ім'я поля містить значення, що лежить за межами інтервалу між значеннями x і y."
+msgstr "... поле містить значення, що лежить за межами інтервалу між значеннями x та y."
#: 02010100.xhp
msgctxt ""
@@ -2249,7 +2249,7 @@ msgctxt ""
"par_id3146073\n"
"help.text"
msgid "<emph>Like </emph>Escape Sequence: {escape 'escape-character'}"
-msgstr ""
+msgstr "Керівна послідовність <emph>like </emph>: {escape \"escape-символ\"}"
#: 02010100.xhp
msgctxt ""
@@ -2257,7 +2257,7 @@ msgctxt ""
"par_id3150661\n"
"help.text"
msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}"
-msgstr ""
+msgstr "Приклад: SELECT * FROM Item WHERE ItemName LIKE 'The *%' {escape '*'}"
#: 02010100.xhp
msgctxt ""
@@ -2265,7 +2265,7 @@ msgctxt ""
"par_id3148541\n"
"help.text"
msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period."
-msgstr ""
+msgstr "Будуть отримані всі записи, ім'я яких починається із \"The *\". Це означає, що ви також можете шукати символи, що використовуються як заповнювачі, наприклад, *, ?, _, % або крапка."
#: 02010100.xhp
msgctxt ""
@@ -2273,7 +2273,7 @@ msgctxt ""
"par_id3150572\n"
"help.text"
msgid "<emph>Outer Join</emph> Escape Sequence: {oj outer-join}"
-msgstr ""
+msgstr "Керівна послідовність <emph>Outer Join</emph>: {oj outer-join}"
#: 02010100.xhp
msgctxt ""
@@ -2281,7 +2281,7 @@ msgctxt ""
"par_id3156052\n"
"help.text"
msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
-msgstr ""
+msgstr "Приклад: SELECT Article.* FROM {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
#: 02010100.xhp
msgctxt ""
@@ -2289,7 +2289,7 @@ msgctxt ""
"hd_id3153674\n"
"help.text"
msgid "Querying text fields"
-msgstr ""
+msgstr "Запит на текстові поля"
#: 02010100.xhp
msgctxt ""
@@ -2297,7 +2297,7 @@ msgctxt ""
"par_id3149134\n"
"help.text"
msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't see it that strict)."
-msgstr ""
+msgstr "Щоб запросити вміст текстового поля, необхідно взяти вираз в одинарні лапки. Розрізнення великих та малих літер залежить від використовуваної бази даних. При використанні \"LIKE\" регістр враховується за визначенням (в деяких базах даних це дотримується не так суворо)."
#: 02010100.xhp
msgctxt ""
@@ -2513,7 +2513,7 @@ msgctxt ""
"par_id3156092\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Так"
#: 02010100.xhp
msgctxt ""
@@ -2697,7 +2697,7 @@ msgctxt ""
"par_id3152570\n"
"help.text"
msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query design, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has been created previously."
-msgstr ""
+msgstr "Для переважного числа запитів у $[officename] знання SQL не вимагається, бо не потрібно вводити код SQL. При створенні запиту за допомогою конструктора запитів $[officename] автоматично перетворює ваші інструкції у відповідний синтаксис SQL. Щоб переглянути команди SQL-запиту, створеного раніше, перейдіть до вигляду SQL за допомогою кнопки <emph>Увімкнення та вимкнення режиму конструктора</emph>."
#: 02010100.xhp
msgctxt ""
@@ -2721,7 +2721,7 @@ msgctxt ""
"par_id3149632\n"
"help.text"
msgid "By clicking the <link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\"><emph>Run SQL command directly</emph></link> icon in the SQL view, you can formulate a query that is not processed by $[officename]."
-msgstr ""
+msgstr "Щоб сформулювати запит, не оброблюваний через $[officename], клацніть піктограму <link href=\"text/shared/02/14030000.xhp\" name=\"Виконати команду SQL напряму\"><emph>Виконати команду SQL напряму</emph></link>."
#: 02010101.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/optionen.po b/source/uk/helpcontent2/source/text/shared/optionen.po
index be7153c07c9..944df5a1d49 100644
--- a/source/uk/helpcontent2/source/text/shared/optionen.po
+++ b/source/uk/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-22 16:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-02 21:59+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490201120.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491170350.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Settings\">Language Settings</link>"
-msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Параметри мови\">Параметри тмови</link>"
+msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Параметри мови\">Параметри мови</link>"
#: 01000000.xhp
msgctxt ""
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/uk/helpcontent2/source/text/swriter/01.po b/source/uk/helpcontent2/source/text/swriter/01.po
index ea0e4110a6d..ad8897bd1e6 100644
--- a/source/uk/helpcontent2/source/text/swriter/01.po
+++ b/source/uk/helpcontent2/source/text/swriter/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: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-27 09:46+0000\n"
+"PO-Revision-Date: 2017-04-05 06:41+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490608000.000000\n"
+"X-POOTLE-MTIME: 1491374500.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -27100,7 +27100,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "До"
#: mailmerge08.xhp
msgctxt ""
@@ -27108,7 +27108,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database field that contains the e-mail address of the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть поле бази даних, що містить електронну адресу одержувача.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27116,7 +27116,7 @@ msgctxt ""
"par_idN105EF\n"
"help.text"
msgid "Copy to"
-msgstr ""
+msgstr "Копія"
#: mailmerge08.xhp
msgctxt ""
@@ -27124,7 +27124,7 @@ msgctxt ""
"par_idN105F3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_copyto.xhp\">Copy To</link> dialog where you can specify one or more CC or BCC addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_copyto.xhp\">Копія</link>, де можна вказати адреси отримувачів копії або прихованої копії.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27140,7 +27140,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the subject line for the e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Введіть тему електронного листа.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27148,7 +27148,7 @@ msgctxt ""
"par_idN10607\n"
"help.text"
msgid "Send as"
-msgstr ""
+msgstr "Надіслати як"
#: mailmerge08.xhp
msgctxt ""
@@ -27156,7 +27156,7 @@ msgctxt ""
"par_idN1060B\n"
"help.text"
msgid "<ahelp hid=\".\">Select the mail format for the e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть формат пошти для електронних повідомлень.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27164,7 +27164,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "The Plain text and HTML message formats are sent in the body of the message, whereas the *.odt, *.doc, and *.pdf formats are sent as attachments."
-msgstr ""
+msgstr "Повідомлення у форматах \"Простий текст\" і \"HTML-повідомлення\" відправляються в тілі повідомлення, а формати *.odt, *.doc і *.pdf відправляються як вкладення."
#: mailmerge08.xhp
msgctxt ""
@@ -27180,7 +27180,7 @@ msgctxt ""
"par_idN10615\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the e-mail message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_emabod.xhp\">Повідомлення ел. пошти</link>, де можна ввести повідомлення для тих файлів розсилки, які надсилаються як вкладення.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27188,7 +27188,7 @@ msgctxt ""
"par_idN10626\n"
"help.text"
msgid "Name of the attachment"
-msgstr ""
+msgstr "Назва вкладення"
#: mailmerge08.xhp
msgctxt ""
@@ -27196,7 +27196,7 @@ msgctxt ""
"par_idN1062A\n"
"help.text"
msgid "<ahelp hid=\".\">Shows the name of the attachment.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Показує назву вкладення.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27204,7 +27204,7 @@ msgctxt ""
"par_idN1062D\n"
"help.text"
msgid "Send all documents"
-msgstr ""
+msgstr "Надіслати всі документи"
#: mailmerge08.xhp
msgctxt ""
@@ -27212,7 +27212,7 @@ msgctxt ""
"par_idN10631\n"
"help.text"
msgid "<ahelp hid=\".\">Select to send e-mails to all recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть цей параметр, щоб надіслати повідомлення всім одержувачам.</ahelp>"
#: mailmerge08.xhp
msgctxt ""
@@ -27236,7 +27236,7 @@ msgctxt ""
"par_idN10649\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\" name=\"Mail Merge Wizard\">Mail Merge Wizard</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\" name=\"Помічник розсилання листів\">Помічник розсилання листів</link>"
#: mm_copyto.xhp
msgctxt ""
@@ -27244,7 +27244,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copies To"
-msgstr ""
+msgstr "Копії до"
#: mm_copyto.xhp
msgctxt ""
@@ -27252,7 +27252,7 @@ msgctxt ""
"par_idN10539\n"
"help.text"
msgid "Copy To"
-msgstr ""
+msgstr "Копія"
#: mm_copyto.xhp
msgctxt ""
@@ -27260,7 +27260,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "Specify additional e-mail recipients for the <link href=\"text/swriter/01/mailmerge08.xhp\">mail merge</link> document."
-msgstr ""
+msgstr "Вкажіть додаткових одержувачів для документа <link href=\"text/swriter/01/mailmerge08.xhp\">розсилки</link>."
#: mm_copyto.xhp
msgctxt ""
@@ -27268,7 +27268,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "CC"
-msgstr ""
+msgstr "Копія"
#: mm_copyto.xhp
msgctxt ""
@@ -27276,7 +27276,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the recipients of e-mail copies, separated by a semicolon (;).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Введіть отримувачів копії електронних листів через крапку з комою (;).</ahelp>"
#: mm_copyto.xhp
msgctxt ""
@@ -27284,7 +27284,7 @@ msgctxt ""
"par_idN10555\n"
"help.text"
msgid "BCC"
-msgstr ""
+msgstr "Прихована копія"
#: mm_copyto.xhp
msgctxt ""
@@ -27292,7 +27292,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the recipients of e-mail blind copies, separated by a semicolon (;).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Введіть отримувачів прихованої копії електронних листів через крапку з комою (;).</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27300,7 +27300,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Address Block"
-msgstr ""
+msgstr "Новий блок з адресою"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27308,7 +27308,7 @@ msgctxt ""
"par_idN10542\n"
"help.text"
msgid "New Address Block"
-msgstr ""
+msgstr "Новий блок з адресою"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27316,7 +27316,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "Specify the placement of address data fields in an address block of a <link href=\"text/swriter/01/mm_seladdblo.xhp\">mail merge</link> document."
-msgstr ""
+msgstr "Задайте розміщення полів адресних даних у блоці адрес в документах <link href=\"text/swriter/01/mm_seladdblo.xhp\">розсилання</link>."
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27324,7 +27324,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "Address Elements"
-msgstr ""
+msgstr "Елементи адреси"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27332,7 +27332,7 @@ msgctxt ""
"par_idN1056D\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть поле і перетягніть його в інший список.</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27340,7 +27340,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27348,7 +27348,7 @@ msgctxt ""
"par_idN10574\n"
"help.text"
msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list to the other list. You can add the same field more than once.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Додає вибране поле зі списку \"Елементи адреси\" в інший список. Поле можна додати декілька разів.</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27356,7 +27356,7 @@ msgctxt ""
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27364,7 +27364,7 @@ msgctxt ""
"par_idN1057B\n"
"help.text"
msgid "<ahelp hid=\".\">Removes the selected field from the other list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Вилучає вибране поле з іншого списку.</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27372,7 +27372,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "Drag address element to the field below"
-msgstr ""
+msgstr "Пересуває елемент адреси в поле внизу."
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27380,7 +27380,7 @@ msgctxt ""
"par_idN10582\n"
"help.text"
msgid "<ahelp hid=\".\">Arrange the fields by drag-and-drop or use the arrow buttons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками.</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27396,7 +27396,7 @@ msgctxt ""
"par_idN10589\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a preview of the first database record with the current address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Попередній перегляд першого запису бази даних з поточною розміткою блоку адреси.</ahelp>"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27404,7 +27404,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "(Arrow Buttons)"
-msgstr ""
+msgstr "(Кнопки зі стрілками)"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27412,7 +27412,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Щоб перемістити елемент списку, виберіть його та натисніть кнопку зі стрілкою.</ahelp>"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27420,7 +27420,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Customize Address List"
-msgstr ""
+msgstr "Налаштувати список адрес"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27428,7 +27428,7 @@ msgctxt ""
"par_idN1053C\n"
"help.text"
msgid "Customize Address List"
-msgstr ""
+msgstr "Налаштувати список адрес"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27436,7 +27436,7 @@ msgctxt ""
"par_idN10540\n"
"help.text"
msgid "Customizes the address list for <link href=\"text/swriter/01/mm_newaddlis.xhp\">mail merge</link> documents."
-msgstr ""
+msgstr "Налаштовує список адрес для документів <link href=\"text/swriter/01/mm_newaddlis.xhp\">розсилання</link>."
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27444,7 +27444,7 @@ msgctxt ""
"par_idN10551\n"
"help.text"
msgid "Address list elements"
-msgstr ""
+msgstr "Елементи списку адрес"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27452,7 +27452,7 @@ msgctxt ""
"par_idN10555\n"
"help.text"
msgid "<ahelp hid=\".\">Select the fields that you want to move, delete, or rename.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть поля, які потрібно перемістити, видалити або перейменувати.</ahelp>"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27468,7 +27468,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a new text field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Вставляє нове текстове поле.</ahelp>"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27484,7 +27484,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Видаляє вибране поле.</ahelp>"
#: mm_cusaddlis.xhp
msgctxt ""
@@ -27500,7 +27500,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected text field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Змінює ім'я обраного поля.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27508,7 +27508,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Custom Salutation"
-msgstr ""
+msgstr "Особливе привітання"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27516,7 +27516,7 @@ msgctxt ""
"par_idN1053C\n"
"help.text"
msgid "Custom Salutation"
-msgstr ""
+msgstr "Особливе привітання"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27524,7 +27524,7 @@ msgctxt ""
"par_idN10540\n"
"help.text"
msgid "Specify the salutation layout for <link href=\"text/swriter/01/mailmerge04.xhp\">mail merge</link> or <link href=\"text/swriter/01/mm_emabod.xhp\">e-mail merge</link> documents. The name of this dialog is different for female recipients and male recipients."
-msgstr ""
+msgstr "Задайте розмітку привітання для документів <link href=\"text/swriter/01/mailmerge04.xhp\">розсилання</link>, або <link href=\"text/swriter/01/mm_emabod.xhp\">розсилання з відправкою по електронній пошті</link>. Назва цього діалогового вікна розрізняється залежно від статі одержувачів."
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27532,7 +27532,7 @@ msgctxt ""
"par_idN10551\n"
"help.text"
msgid "Salutation elements"
-msgstr ""
+msgstr "Елементи привітання"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27540,7 +27540,7 @@ msgctxt ""
"par_idN10555\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть поле і перетягніть його в інший список.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27548,7 +27548,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27556,7 +27556,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elements to the other list. You can add a field more than once.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Додає вибране поле зі списку «Елементи привітання» в інший список. Одне й те саме поле можна додати більше одного разу.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27564,7 +27564,7 @@ msgctxt ""
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27572,7 +27572,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "<ahelp hid=\".\">Removes the selected field from the other list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Вилучає вибране поле з іншого списку.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27580,7 +27580,7 @@ msgctxt ""
"par_idN10566\n"
"help.text"
msgid "Drag salutation elements into the box below"
-msgstr ""
+msgstr "Перетягніть елементи привітання у наведене нижче поле"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27588,7 +27588,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Arrange the fields by drag-and-drop or use the arrow buttons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27596,7 +27596,7 @@ msgctxt ""
"par_idN1056D\n"
"help.text"
msgid "Customize salutation"
-msgstr ""
+msgstr "Персоналізуйте привітання"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27604,7 +27604,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<ahelp hid=\".\">Select a value from the list for the salutation and the punctuation mark fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть елемент зі списку для привітання і знак пунктуації.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27620,7 +27620,7 @@ msgctxt ""
"par_idN10578\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a preview of the first database record with the current salutation layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Попередній перегляд першого запису бази даних з поточної розміткою привітання.</ahelp>"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27924,7 +27924,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new <link href=\"text/swriter/01/mailmerge03.xhp\">address blocks</link> or <link href=\"text/swriter/01/mailmerge04.xhp\">salutations</link>."
-msgstr ""
+msgstr "Підбирає назви логічних полів діалогового вікна розмітки до імен полів в базі даних при створенні нових <link href=\"text/swriter/01/mailmerge03.xhp\">блоків із адресою</link>, або <link href=\"text/swriter/01/mailmerge04.xhp\">привітань</link>."
#: mm_matfie.xhp
msgctxt ""
@@ -27932,7 +27932,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "Matches to:"
-msgstr ""
+msgstr "Відповідність із:"
#: mm_matfie.xhp
msgctxt ""
@@ -27940,7 +27940,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field name in your database for each logical field element.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть ім'я поля бази даних для кожного елемента логічного поля.</ahelp>"
#: mm_matfie.xhp
msgctxt ""
@@ -27956,7 +27956,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a preview of the values of the first data record.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Попередній перегляд значень першого запису даних.</ahelp>"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28036,7 +28036,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "Drag address element to the field below"
-msgstr ""
+msgstr "Пересуньте елемент адреси в поле внизу"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28044,7 +28044,7 @@ msgctxt ""
"par_idN10582\n"
"help.text"
msgid "<ahelp hid=\".\">Arrange the fields with drag-and-drop or use the arrow buttons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками.</ahelp>"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28060,7 +28060,7 @@ msgctxt ""
"par_idN10589\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a preview of the first database record with the current address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Попередній перегляд першого запису бази даних з поточною розміткою блоку адреси.</ahelp>"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28220,7 +28220,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "Select, edit, or delete an address block layout for <link href=\"text/swriter/01/mailmerge03.xhp\">mail merge</link>."
-msgstr ""
+msgstr "Виберіть, відредагуйте або видаліть розмітку блоку адреси для <link href=\"text/swriter/01/mailmerge03.xhp\">розсилання листів</link>."
#: mm_seladdblo.xhp
msgctxt ""
@@ -28228,7 +28228,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "Select the address block which you want to use"
-msgstr ""
+msgstr "Виберіть блок адреси для використання"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28236,7 +28236,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Select the block in the list that you want to use for mail merge addresses, and click <emph>OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть у списку блок, який потрібно використовувати для адрес розсилання і натисніть кнопку <emph>Гаразд</emph>.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28244,7 +28244,7 @@ msgctxt ""
"par_idN10555\n"
"help.text"
msgid "Never include country/region"
-msgstr ""
+msgstr "Ніколи не включати країну/регіон"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28252,7 +28252,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "<ahelp hid=\".\">Excludes country or regional information from the address block.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виключає відомості про країну і області з блоку адреси.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28260,7 +28260,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "Always include country/region"
-msgstr ""
+msgstr "Завжди включати країну/область"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28268,7 +28268,7 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "<ahelp hid=\".\">Includes country or regional information in the address block.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Включає відомості про країни і області в блок адреси.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28276,7 +28276,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "Only include country/region if it is not:"
-msgstr ""
+msgstr "Включати країну/область, тільки якщо:"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28284,7 +28284,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Only includes country or regional information in the address block if the value differs from the value that you enter in the text box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Включає відомості про країни і області в блок адреси, тільки якщо значення відрізняється від введеного в текстовому полі.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28292,7 +28292,7 @@ msgctxt ""
"par_idN10651\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the country/region string that shall not be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Введіть рядок країни або області, які не слід друкувати.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28308,7 +28308,7 @@ msgctxt ""
"par_idN1056E\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddblo.xhp\">New Address Block</link> dialog where you can define a new address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_newaddblo.xhp\">Новий блок адреси</link>, де ви можете визначити нову розмітку блоку адреси.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28324,7 +28324,7 @@ msgctxt ""
"par_idN10583\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddblo.xhp\">New Address Block</link> dialog where you can edit the selected address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_newaddblo.xhp\">Новий блок адреси</link>, де можна змінити обрану розмітку блоку адреси.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -28340,7 +28340,7 @@ msgctxt ""
"par_idN10598\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Видаляє обрану розмітку блоку адреси.</ahelp>"
#: mm_seladdlis.xhp
msgctxt ""
@@ -28348,7 +28348,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Select Address List"
-msgstr ""
+msgstr "Вибрати список адрес..."
#: mm_seladdlis.xhp
msgctxt ""
@@ -28356,7 +28356,7 @@ msgctxt ""
"par_idN10542\n"
"help.text"
msgid "Select Address List"
-msgstr ""
+msgstr "Вибрати список адрес"
#: mm_seladdlis.xhp
msgctxt ""
@@ -28364,7 +28364,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Select the address list that you want to use for <link href=\"text/swriter/01/mailmerge03.xhp\">mail merge</link>, then click <emph>OK</emph>."
-msgstr ""
+msgstr "Виберіть список адрес, який потрібно використовувати для <link href=\"text/swriter/01/mailmerge03.xhp\">розсилання</link>, і натисніть кнопку <emph>Гаразд</emph>."
#: mm_seladdlis.xhp
msgctxt ""
@@ -28380,7 +28380,7 @@ msgctxt ""
"par_idN1055E\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database file that contains the addresses that you want to use as an address list.</ahelp> If the file contains more than one table, the <link href=\"text/swriter/01/mm_seltab.xhp\">Select Table</link> dialog opens."
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть файл бази даних, що містить адреси, які потрібно використовувати в якості списку адрес.</ahelp> Якщо файл містить більше однієї таблиці, відкриється діалогове вікно <link href=\"text/swriter/01/mm_seltab.xhp\">Виділити таблицю</link>."
#: mm_seladdlis.xhp
msgctxt ""
@@ -28396,7 +28396,7 @@ msgctxt ""
"par_idN10589\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddlis.xhp\">New Address List</link> dialog, where you can create a new address list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_newaddlis.xhp\">Нова адресна книга</link>, де можна створити нову адресну книгу.</ahelp>"
#: mm_seladdlis.xhp
msgctxt ""
@@ -28444,7 +28444,7 @@ msgctxt ""
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_seltab.xhp\">Select Table</link> dialog, where you can select another table to use for mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <link href=\"text/swriter/01/mm_seltab.xhp\">Виділити таблицю</link>, де можна вибрати іншу таблицю для використання при розсиланні листів.</ahelp>"
#: mm_seltab.xhp
msgctxt ""
@@ -28452,7 +28452,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Select Table"
-msgstr ""
+msgstr "Виділити таблицю"
#: mm_seltab.xhp
msgctxt ""
@@ -28460,7 +28460,7 @@ msgctxt ""
"par_idN10542\n"
"help.text"
msgid "Select Table"
-msgstr ""
+msgstr "Виділити таблицю"
#: mm_seltab.xhp
msgctxt ""
@@ -28468,7 +28468,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "<ahelp hid=\".\">Select the table that you want to use for <link href=\"text/swriter/01/mm_seladdlis.xhp\">mail merge</link> addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Виберіть таблицю, яку слід використовувати для адрес <link href=\"text/swriter/01/mm_seladdlis.xhp\">розсилання листів</link>.</ahelp>"
#: mm_seltab.xhp
msgctxt ""
@@ -28484,7 +28484,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Відкриває діалогове вікно <emph>Одержувачі розсилання</emph>.</ahelp>"
#: selection_mode.xhp
msgctxt ""
@@ -28532,7 +28532,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using title pages in your document"
-msgstr ""
+msgstr "Використання титульних сторінок у вашому документі"
#: title_page.xhp
msgctxt ""
@@ -28540,7 +28540,7 @@ msgctxt ""
"bm_id300920161717389897\n"
"help.text"
msgid "<bookmark_value>page;title page</bookmark_value> <bookmark_value>title pages;first page style</bookmark_value> <bookmark_value>title pages;modifying</bookmark_value> <bookmark_value>title pages;inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>сторінка;титульна сторінка</bookmark_value> <bookmark_value>титульні сторінки;стиль першої сторінки</bookmark_value> <bookmark_value>титульні сторінки;редагування</bookmark_value> <bookmark_value>титульні сторінки;вставка</bookmark_value>"
#: title_page.xhp
msgctxt ""
@@ -28548,7 +28548,7 @@ msgctxt ""
"hd_id300920161429137211\n"
"help.text"
msgid "<link href=\"text/swriter/01/title_page.xhp\">Inserting title pages in the document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/title_page.xhp\">Вставка титульних сторінок у документ</link>"
#: title_page.xhp
msgctxt ""
@@ -28556,7 +28556,7 @@ msgctxt ""
"par_id300920161429345505\n"
"help.text"
msgid "<ahelp hid=\".\">Insert title pages in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Вставити титульні сторінки у ваш документ.</ahelp>"
#: title_page.xhp
msgctxt ""
@@ -28564,7 +28564,7 @@ msgctxt ""
"par_id300920161429347135\n"
"help.text"
msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background."
-msgstr ""
+msgstr "Титульні сторінки - це сторінки на початку документу, що містять таку інформацію, як назва видання, ім'я автора і так далі. Вони мають інший макет, ніж решта сторінок з основи документа, бо можуть не мати нумерації. Іноді містять також інший верхній і нижній колонтитул, інші налаштування розмірів полів або тла."
#: title_page.xhp
msgctxt ""
@@ -28572,7 +28572,7 @@ msgctxt ""
"par_id300920161443292710\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">Format - Title Page</item>"
-msgstr ""
+msgstr "Виберіть меню <item type=\"menuitem\">Формат - Титульна сторінка</item>"
#: title_page.xhp
msgctxt ""
@@ -28580,7 +28580,7 @@ msgctxt ""
"par_id300920161443298079\n"
"help.text"
msgid "Many documents, such as letters and reports, have a first page that is different from the other pages in the document. For example, the first page of a letterhead typically has a different header or the first page of a report might have no header or footer, while the other pages do. This is simple to achieve with %PRODUCTNAME Writer."
-msgstr ""
+msgstr "Багато документів, такі як листи і звіти, мають першу сторінку, яка відрізняється від інших сторінок в документі. Наприклад, перша сторінка фірмового бланка зазвичай має інший заголовок, а перша сторінка звіту може не мати колонтитулів, тоді як інші сторінки мають. Це просто зробити за допомогою %PRODUCTNAME Writer."
#: title_page.xhp
msgctxt ""
@@ -28588,7 +28588,7 @@ msgctxt ""
"par_id300920161443298274\n"
"help.text"
msgid "Page header and footer, numbering, margins and orientation are some of the properties that belongs to page styles. %PRODUCTNAME Writer let your to insert a blank title page at any point of your document, or format an existing page like a title page, by inserting a page break followed by a page style of your choice or by changing the page style at cursor position."
-msgstr ""
+msgstr "Верхні і нижні колонтитули, нумерація, поля і орієнтація сторінки - це деякі з властивостей, які належать до стилю сторінки. %PRODUCTNAME Writer дозволяє вставити порожню титульну сторінку в будь-якій точці вашого документа або відформатувати наявну сторінку як титульну, шляхом вставки розриву сторінки, а після нього - стилю сторінки на ваш вибір, або змінивши стиль сторінки в позиції курсора."
#: title_page.xhp
msgctxt ""
@@ -28604,7 +28604,7 @@ msgctxt ""
"hd_id300920161443299618\n"
"help.text"
msgid "To convert the first page of the document into a title page"
-msgstr ""
+msgstr "Щоб перетворити першу сторінку документа в титульну"
#: title_page.xhp
msgctxt ""
@@ -28612,7 +28612,7 @@ msgctxt ""
"par_id300920161443308966\n"
"help.text"
msgid "Place the cursor on the first page,"
-msgstr ""
+msgstr "Розмістіть курсор на першій сторінці,"
#: title_page.xhp
msgctxt ""
@@ -28620,7 +28620,7 @@ msgctxt ""
"par_id300920161443301816\n"
"help.text"
msgid "From the Menu Bar, choose <item type=\"menuitem\">Format > Title Page…</item>"
-msgstr ""
+msgstr "У меню виберіть <item type=\"menuitem\">Формат - Титульна сторінка...</item>"
#: title_page.xhp
msgctxt ""
@@ -28628,7 +28628,7 @@ msgctxt ""
"par_id300920161443304794\n"
"help.text"
msgid "Select <emph>Converting existing pages to title pages</emph>"
-msgstr ""
+msgstr "Виберіть <emph>Перетворення наявних сторінок у титульні сторінки</emph>"
#: title_page.xhp
msgctxt ""
@@ -28660,7 +28660,7 @@ msgctxt ""
"par_id300920161443316916\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Натисніть <emph>Гаразд</emph>."
#: title_page.xhp
msgctxt ""
@@ -28676,7 +28676,7 @@ msgctxt ""
"hd_id300920161443317859\n"
"help.text"
msgid "To insert a title page anywhere in the document"
-msgstr ""
+msgstr "Щоби вставити титульну сторінку де-небудь у документі"
#: title_page.xhp
msgctxt ""
@@ -28684,7 +28684,7 @@ msgctxt ""
"par_id300920161443317032\n"
"help.text"
msgid "Place the cursor where you want to insert a new title page."
-msgstr ""
+msgstr "Розмістіть курсор у місці, де ви хочете вставити нову титульну сторінку."
#: title_page.xhp
msgctxt ""
@@ -28692,7 +28692,7 @@ msgctxt ""
"par_id300920161443315460\n"
"help.text"
msgid "From the menu bar select <item type=\"menuitem\">Format -> Title page</item>."
-msgstr ""
+msgstr "У меню виберіть <item type=\"menuitem\">Формат -> Титульна сторінка</item>."
#: title_page.xhp
msgctxt ""
@@ -28700,7 +28700,7 @@ msgctxt ""
"par_id300920161443318611\n"
"help.text"
msgid "Select <emph>Insert new title pages</emph>"
-msgstr ""
+msgstr "Виберіть <emph>Вставити нові титульні сторінки</emph>"
#: title_page.xhp
msgctxt ""
@@ -28708,7 +28708,7 @@ msgctxt ""
"par_id300920161443311657\n"
"help.text"
msgid "Set number of title pages to add and"
-msgstr ""
+msgstr "Задайте число титульних сторінок, які додаються, і"
#: title_page.xhp
msgctxt ""
@@ -28732,7 +28732,7 @@ msgctxt ""
"par_id300920161443327672\n"
"help.text"
msgid "Click <emph>OK</emph>"
-msgstr ""
+msgstr "Натисніть <emph>Гаразд</emph>"
#: title_page.xhp
msgctxt ""
@@ -28748,7 +28748,7 @@ msgctxt ""
"hd_id300920161443323335\n"
"help.text"
msgid "To delete a title page:"
-msgstr ""
+msgstr "Щоби видалити титульну сторінку:"
#: title_page.xhp
msgctxt ""
@@ -28756,7 +28756,7 @@ msgctxt ""
"par_id30092016144332559\n"
"help.text"
msgid "You cannot delete a title page. You must change its page style format from First page to whatever other page style you wish."
-msgstr ""
+msgstr "Ви не можете видалити титульну сторінку. Вам потрібно змінити свій формат стилю першої сторінки на будь-який інший стиль, котрий вам до вподоби."
#: title_page.xhp
msgctxt ""
@@ -28764,7 +28764,7 @@ msgctxt ""
"par_id300920161443329339\n"
"help.text"
msgid "Place the cursor in the page you want to change the style"
-msgstr ""
+msgstr "Розмістіть курсор на сторінці, на якій ви хочете змінити стиль"
#: title_page.xhp
msgctxt ""
@@ -28780,7 +28780,7 @@ msgctxt ""
"par_id300920161443329078\n"
"help.text"
msgid "From the <emph>Styles and Formatting</emph>, select button <emph>Page Styles</emph>."
-msgstr ""
+msgstr "У вікні <emph>Стилі і форматування</emph> виберіть кнопку <emph>Стилі сторінки</emph>."
#: title_page.xhp
msgctxt ""
@@ -28788,7 +28788,7 @@ msgctxt ""
"par_id300920161443339937\n"
"help.text"
msgid "From the Style list, select the page style you want to apply."
-msgstr ""
+msgstr "Із списку стилів оберіть стиль сторінки, яким ви хочете скористатися."
#: title_page.xhp
msgctxt ""
@@ -28796,7 +28796,7 @@ msgctxt ""
"par_id300920161443337801\n"
"help.text"
msgid "Double click on the page style to apply."
-msgstr ""
+msgstr "Двічі клацніть на стилю сторінки, щоби застосувати його."
#: title_page.xhp
msgctxt ""
@@ -28804,7 +28804,7 @@ msgctxt ""
"par_id300920161443378384\n"
"help.text"
msgid "<link href=\"text/shared/01/05040200.xhp\">Format page</link>,"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05040200.xhp\">Формат сторінки</link>,"
#: title_page.xhp
msgctxt ""
@@ -28812,7 +28812,7 @@ msgctxt ""
"par_id300920161915582003\n"
"help.text"
msgid "<link href=\"text/swriter/guide/page_break.xhp\">Page break</link>,"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/page_break.xhp\">Розрив сторінки</link>,"
#: title_page.xhp
msgctxt ""
@@ -28820,4 +28820,4 @@ msgctxt ""
"par_id300920161915587772\n"
"help.text"
msgid "<link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link>."
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/change_header.xhp\">Створення стилю сторінки на основі поточної сторінки</link>."
diff --git a/source/uk/helpcontent2/source/text/swriter/librelogo.po b/source/uk/helpcontent2/source/text/swriter/librelogo.po
index 2255df5d036..9a29f3115bc 100644
--- a/source/uk/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/uk/helpcontent2/source/text/swriter/librelogo.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-08-06 22:51+0200\n"
-"PO-Revision-Date: 2017-03-27 20:46+0000\n"
+"PO-Revision-Date: 2017-04-09 20:45+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490647567.000000\n"
+"X-POOTLE-MTIME: 1491770735.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_1870\n"
"help.text"
msgid "; IF condition [ true block ]<br/> ; IF condition [ true block ] [ false block ]<br/> <br/> IF a < 10 [ PRINT “Small” ]<br/> IF a < 10 [ PRINT “Small” ] [ PRINT “Big” ]<br/>"
-msgstr "; IF умова [істинний блок]<br/> ; IF умова [істинний блок][неправдивий блок]<br/> <br/> IF a < 10 [ PRINT “Мале” ]<br/> IF a < 10 [ PRINT “Мале” ] [ PRINT “Велике” ]<br/>"
+msgstr "; IF умова [ істинний блок ]<br/> ; IF умова [ істинний блок ] [ неправдивий блок ]<br/> <br/> IF a < 10 [ PRINT “Мале” ]<br/> IF a < 10 [ PRINT “Мале” ] [ PRINT “Велике” ]<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_1970\n"
"help.text"
msgid "TO randomletter<br/> OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”<br/> END<br/> <br/> PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence<br/>"
-msgstr "TO випадкова_літера<br/> OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”<br/> END<br/> <br/> PRINT випадкова_літера + випадкова_літера + випадкова_літера ; друкувати трибуквену послідовність випадкових символів<br/>"
+msgstr "TO випадкова_літера<br/> OUTPUT RANDOM “йцукенгшщзхїфівапролджєґячсмитьбю”<br/> END<br/> <br/> PRINT випадкова_літера + випадкова_літера + випадкова_літера ; друкувати трибуквену послідовність випадкових символів<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po
index bb38625c4ec..186a6edad6e 100644
--- a/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/uk/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-27 21:44+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-04-15 21:44+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: translation@linux.org.ua\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490651067.000000\n"
+"X-POOTLE-MTIME: 1492292699.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4244,7 +4244,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: CalcWindowState.xcu
msgctxt ""
@@ -5792,7 +5792,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Index Design..."
-msgstr "Проектування ~покажчика..."
+msgstr "Конструктор ~індексу..."
#: DbuCommands.xcu
msgctxt ""
@@ -5837,7 +5837,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distinct Values"
-msgstr "Однозначні значення"
+msgstr "Різні значення:"
#: DbuCommands.xcu
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview"
-msgstr "Вигляд"
+msgstr "Попередній перегляд"
#: DbuCommands.xcu
msgctxt ""
@@ -10139,7 +10139,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: DrawWindowState.xcu
msgctxt ""
@@ -13793,7 +13793,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm Control"
-msgstr "~Елементи керування"
+msgstr "~Елемент керування"
#: GenericCommands.xcu
msgctxt ""
@@ -20536,7 +20536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: GenericCommands.xcu
msgctxt ""
@@ -21049,7 +21049,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open in Design Mode"
-msgstr "Відкрити у режимі проектування"
+msgstr "Відкрити в режимі розробки"
#: GenericCommands.xcu
msgctxt ""
@@ -21175,7 +21175,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Run SQL command directly"
-msgstr "Виконати пряму команду SQL"
+msgstr "Виконати команду SQL напряму"
#: GenericCommands.xcu
msgctxt ""
@@ -22867,7 +22867,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: ImpressWindowState.xcu
msgctxt ""
@@ -29464,7 +29464,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -29914,7 +29914,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -30364,7 +30364,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -30823,7 +30823,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -31237,7 +31237,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: WriterWindowState.xcu
msgctxt ""
@@ -31714,7 +31714,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr "Додаткове керування"
+msgstr "Додаткові елементи керування"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/uk/sfx2/source/dialog.po b/source/uk/sfx2/source/dialog.po
index 225912b9f49..fcb180cc2a9 100644
--- a/source/uk/sfx2/source/dialog.po
+++ b/source/uk/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-17 20:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:18+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487363340.000000\n"
+"X-POOTLE-MTIME: 1491988734.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ієрархічно"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr "Стильове заповнення"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr "Створити стиль з виділеного"
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr "Оновити стиль"
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/uk/sfx2/uiconfig/ui.po b/source/uk/sfx2/uiconfig/ui.po
index 0cb1a4994ca..06b07d64dc8 100644
--- a/source/uk/sfx2/uiconfig/ui.po
+++ b/source/uk/sfx2/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-16 21:06+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:19+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: none\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489698393.000000\n"
+"X-POOTLE-MTIME: 1491988749.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,19 +794,19 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME доступний у відповідності з умовами Mozilla Public License версії 2.0. Копію ліцензії MPL можна знайти на http://mozilla.org/MPL/2.0/.\n"
+"%PRODUCTNAME доступний у відповідності з умовами ліцензії Mozilla Public License версії 2.0. Копію ліцензії MPL можна знайти на http://mozilla.org/MPL/2.0/.\n"
"\n"
"Додаткові повідомлення про авторські права та умови ліцензії на код третіх осіб, що застосовуються до окремих частин програмного забезпечення, викладені у файлі LICENSE.html; виберіть Показати ліцензію для перегляду подробиць англійською мовою.\n"
"\n"
"Усі товарні знаки, згадані тут, є власністю їхніх власників.\n"
"\n"
-"Copyright © 2000–2015 розробники LibreOffice. Всі права захищені.\n"
+"Copyright © 2000–2017 розробники LibreOffice. Всі права захищені.\n"
"\n"
-"Цей продукт був створений %OOOVENDOR на основі OpenOffice.org, Copyright 2000, 2011 Oracle та/або її афілійовані особи. %OOOVENDOR вдячний усім учасникам спільноти, подробиці дивіться за адресою http://www.libreoffice.org/ ."
+"Цей продукт був створений %OOOVENDOR на основі OpenOffice.org, Copyright 2000, 2011 Oracle та/або її афілійовані особи. %OOOVENDOR вдячний усім учасникам спільноти, подробиці дивіться за адресою http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/uk/svtools/source/dialogs.po b/source/uk/svtools/source/dialogs.po
index 449234069ae..ebc3059d518 100644
--- a/source/uk/svtools/source/dialogs.po
+++ b/source/uk/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-15 05:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:19+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450157233.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491988773.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Текст у форматі [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Форматований текст [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/uk/svtools/source/misc.po b/source/uk/svtools/source/misc.po
index bc058826987..07c48cf12d8 100644
--- a/source/uk/svtools/source/misc.po
+++ b/source/uk/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-23 16:26+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:19+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482510373.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491988778.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Угорська (угорські руни)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Англійська (Малайзія)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/uk/svx/source/form.po b/source/uk/svx/source/form.po
index 916d0d6f887..5d27caced42 100644
--- a/source/uk/svx/source/form.po
+++ b/source/uk/svx/source/form.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-19 16:53+0000\n"
-"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
+"PO-Revision-Date: 2017-04-02 12:59+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487523216.000000\n"
+"X-POOTLE-MTIME: 1491137963.000000\n"
#: datanavi.src
msgctxt ""
@@ -49,7 +49,7 @@ msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
"Do you really want to delete this element?"
msgstr ""
-"Видалення елементу \"$ELEMENTNAME\" впливає на всі елементи керування, що наразі пов'язані з елементом.\n"
+"Видалення елемента \"$ELEMENTNAME\" впливає на всі елементи керування, що наразі пов'язані з елементом.\n"
"Видалити цей елемент?"
#: datanavi.src
@@ -539,7 +539,7 @@ msgctxt ""
"SID_FM_OPEN_READONLY\n"
"menuitem.text"
msgid "Open in Design Mode"
-msgstr "Відкрити у режимі проектування"
+msgstr "Відкрити в режимі розробки"
#: fmexpl.src
msgctxt ""
diff --git a/source/uk/svx/source/stbctrls.po b/source/uk/svx/source/stbctrls.po
index d8a35c59ab3..c4787288cc1 100644
--- a/source/uk/svx/source/stbctrls.po
+++ b/source/uk/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-19 16:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:19+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487523246.000000\n"
+"X-POOTLE-MTIME: 1491988786.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Припасувати слайд до поточного вікна"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr "Неможливо завантажити усі SmartArts. Збереження в Microsoft Office 2010 або новішій версії дозволяє уникнути цієї проблеми."
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/uk/svx/uiconfig/ui.po b/source/uk/svx/uiconfig/ui.po
index 1620051d39a..facbdd255d8 100644
--- a/source/uk/svx/uiconfig/ui.po
+++ b/source/uk/svx/uiconfig/ui.po
@@ -3,9 +3,9 @@ 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: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-03-22 19:07+0000\n"
-"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-12 09:20+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490209670.000000\n"
+"X-POOTLE-MTIME: 1491988806.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -5075,16 +5075,16 @@ msgstr "_Продовжити в безпечному режимі"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Вийти"
+msgid "_Restart in Normal Mode"
+msgstr "_Перезапустити у звичайному режимі"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/uz/cui/uiconfig/ui.po b/source/uz/cui/uiconfig/ui.po
index c979b4d107c..86046d88ffb 100644
--- a/source/uz/cui/uiconfig/ui.po
+++ b/source/uz/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476804393.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/uz/sfx2/source/dialog.po b/source/uz/sfx2/source/dialog.po
index 015eaf4ef78..46eb3c2267f 100644
--- a/source/uz/sfx2/source/dialog.po
+++ b/source/uz/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 05:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457760340.000000\n"
+"X-POOTLE-MTIME: 1457760337.000000\n"
#: dialog.src
msgctxt ""
@@ -716,6 +716,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr ""
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/uz/sfx2/uiconfig/ui.po b/source/uz/sfx2/uiconfig/ui.po
index 64b51ecd52d..c603f015609 100644
--- a/source/uz/sfx2/uiconfig/ui.po
+++ b/source/uz/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,9 +11,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467718581.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467718579.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/uz/svtools/source/dialogs.po b/source/uz/svtools/source/dialogs.po
index 65e001ab0bc..a58d67dcf14 100644
--- a/source/uz/svtools/source/dialogs.po
+++ b/source/uz/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 23:03+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:56+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385507011.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449867382.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -351,6 +351,14 @@ msgstr "Formatlangan matn [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/uz/svtools/source/misc.po b/source/uz/svtools/source/misc.po
index 471ddfdf551..3f0e2391de3 100644
--- a/source/uz/svtools/source/misc.po
+++ b/source/uz/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-09 13:09+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-09 13:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uz\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462799363.000000\n"
+"X-POOTLE-MTIME: 1462799333.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3903,6 +3903,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/uz/svx/source/stbctrls.po b/source/uz/svx/source/stbctrls.po
index 56d2e672a05..fc71d40ceab 100644
--- a/source/uz/svx/source/stbctrls.po
+++ b/source/uz/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 21:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 05:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uz\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449867607.000000\n"
+"X-POOTLE-MTIME: 1431582295.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/uz/svx/uiconfig/ui.po b/source/uz/svx/uiconfig/ui.po
index 54935b63142..a6b568d5997 100644
--- a/source/uz/svx/uiconfig/ui.po
+++ b/source/uz/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ve/cui/uiconfig/ui.po b/source/ve/cui/uiconfig/ui.po
index b5e0fd1976a..5d7edc75911 100644
--- a/source/ve/cui/uiconfig/ui.po
+++ b/source/ve/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ 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-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476804505.000000\n"
#: aboutconfigdialog.ui
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/ve/sfx2/source/dialog.po b/source/ve/sfx2/source/dialog.po
index a3d4756a3e4..0510cb1b66d 100644
--- a/source/ve/sfx2/source/dialog.po
+++ b/source/ve/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 04:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Nga u tou Gonyisa"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/ve/sfx2/uiconfig/ui.po b/source/ve/sfx2/uiconfig/ui.po
index 9e3a4781ded..75635c65b4c 100644
--- a/source/ve/sfx2/uiconfig/ui.po
+++ b/source/ve/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\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-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467719089.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467719086.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/ve/svtools/source/dialogs.po b/source/ve/svtools/source/dialogs.po
index 46815ed9f9c..e56380bef89 100644
--- a/source/ve/svtools/source/dialogs.po
+++ b/source/ve/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 23:10+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 20:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ve\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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385507410.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449867242.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Ḽiṅwalo ḽi songo fomathiwaho [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ve/svtools/source/misc.po b/source/ve/svtools/source/misc.po
index f51cf599af0..b5289a5298b 100644
--- a/source/ve/svtools/source/misc.po
+++ b/source/ve/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3976,6 +3976,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ve/svx/source/stbctrls.po b/source/ve/svx/source/stbctrls.po
index 772c3d0782a..9fdbe79132c 100644
--- a/source/ve/svx/source/stbctrls.po
+++ b/source/ve/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 20:57+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 06:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ve\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449867440.000000\n"
+"X-POOTLE-MTIME: 1431583408.000000\n"
#: stbctrls.src
msgctxt ""
@@ -154,6 +154,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ve/svx/uiconfig/ui.po b/source/ve/svx/uiconfig/ui.po
index 69800376ac8..56bffa21832 100644
--- a/source/ve/svx/uiconfig/ui.po
+++ b/source/ve/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/vec/chart2/source/controller/dialogs.po b/source/vec/chart2/source/controller/dialogs.po
index 3d74c7bbf2f..24e1f3435c5 100644
--- a/source/vec/chart2/source/controller/dialogs.po
+++ b/source/vec/chart2/source/controller/dialogs.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-23 17:13+0000\n"
+"PO-Revision-Date: 2017-04-06 05:25+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490289217.000000\n"
+"X-POOTLE-MTIME: 1491456310.000000\n"
#: Strings.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_X\n"
"string.text"
msgid "X Axis Major Grid"
-msgstr "Gradeła prensipałe de l'àse X"
+msgstr "Gradeła prinsipałe de l'àse X"
#: Strings.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_Y\n"
"string.text"
msgid "Y Axis Major Grid"
-msgstr "Gradeła prensipałe de l'àse Y"
+msgstr "Gradeła prinsipałe de l'àse Y"
#: Strings.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_Z\n"
"string.text"
msgid "Z Axis Major Grid"
-msgstr "Gradeła prensipałe de l'àse Z"
+msgstr "Gradeła prinsipałe de l'àse Z"
#: Strings.src
msgctxt ""
diff --git a/source/vec/chart2/uiconfig/ui.po b/source/vec/chart2/uiconfig/ui.po
index fddfa426ed8..90ad2a6115c 100644
--- a/source/vec/chart2/uiconfig/ui.po
+++ b/source/vec/chart2/uiconfig/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-29 04:49+0000\n"
+"PO-Revision-Date: 2017-04-06 05:25+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490762964.000000\n"
+"X-POOTLE-MTIME: 1491456324.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -2165,7 +2165,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Major:"
-msgstr "Prensipałe:"
+msgstr "Prinsipałe:"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2264,7 +2264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show major _grid"
-msgstr "Mostra _gradeła prensipałe"
+msgstr "Mostra _gradeła prinsipałe"
#: tp_AxisPositions.ui
msgctxt ""
diff --git a/source/vec/cui/source/options.po b/source/vec/cui/source/options.po
index c4c3bffbbb3..4a2d6cf83cb 100644
--- a/source/vec/cui/source/options.po
+++ b/source/vec/cui/source/options.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-25 06:34+0000\n"
+"PO-Revision-Date: 2017-03-30 05:38+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485326047.000000\n"
+"X-POOTLE-MTIME: 1490852339.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -696,7 +696,6 @@ msgid "Nature"
msgstr "Nadura"
#: personalization.src
-#, fuzzy
msgctxt ""
"personalization.src\n"
"RID_SVXSTR_PERSONA_CATEGORIES\n"
diff --git a/source/vec/cui/uiconfig/ui.po b/source/vec/cui/uiconfig/ui.po
index 2f01df4b3a1..8050e479f6f 100644
--- a/source/vec/cui/uiconfig/ui.po
+++ b/source/vec/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-29 15:53+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-06 05:28+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490802817.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491456528.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Contribudori de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -11971,7 +11971,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Protected _by a master password (recommended)"
-msgstr "_Proteto da na password prensipałe (racomandà)"
+msgstr "_Proteto da na password prinsipałe (racomandà)"
#: optsecuritypage.ui
msgctxt ""
@@ -11993,9 +11993,9 @@ msgid ""
"\n"
"Do you want to delete password list and reset master password?"
msgstr ""
-"Dezativando ła funsion de salvatajo parmanente de łe password venjarà ełiminà ła łista de łe password e ła password prensipałe.\n"
+"Dezativando ła funsion de salvatajo parmanente de łe password A venjarà ełiminà ła łista de łe password e ła password prinsipałe.\n"
"\n"
-"Vuto ełiminar ła łista de łe password e reinpostar ła password prensipałe?"
+"Vuto ełiminar ła łista de łe password e reinpostar ła password prinsipałe?"
#: optsecuritypage.ui
msgctxt ""
@@ -12013,7 +12013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Master Password..."
-msgstr "Password prensipałe..."
+msgstr "Password prinsipałe..."
#: optsecuritypage.ui
msgctxt ""
diff --git a/source/vec/dbaccess/uiconfig/ui.po b/source/vec/dbaccess/uiconfig/ui.po
index a7824a23886..985cb1f3e3a 100644
--- a/source/vec/dbaccess/uiconfig/ui.po
+++ b/source/vec/dbaccess/uiconfig/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: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2017-03-22 17:41+0000\n"
+"PO-Revision-Date: 2017-04-06 05:21+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490204464.000000\n"
+"X-POOTLE-MTIME: 1491456079.000000\n"
#: admindialog.ui
msgctxt ""
@@ -729,7 +729,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
-msgstr "Te si drio tentar de ełiminar tute łe cołone de ła tabeła. Na tabeła no pol mìa ezistare sensa cołone. Vuto ełiminar ła tabeła intiera da'l database? In cazo contrario ła tabeła restarà cusì come che ła ze."
+msgstr "Te si drio tentar de ełiminar tute łe cołone de ła tabeła. Na tabeła no pol mìa ezistare sensa cołone. Vuto ełiminar ła tabeła intiera da'l database? In cazo contrario ła tabeła ła restarà cusì come che ła ze."
#: designsavemodifieddialog.ui
msgctxt ""
diff --git a/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 14d7d31e26f..569931f643d 100644
--- a/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-23 17:33+0000\n"
+"PO-Revision-Date: 2017-04-06 05:36+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490290387.000000\n"
+"X-POOTLE-MTIME: 1491456988.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"OOO_ACTIONTEXT_8\n"
"LngText.text"
msgid "Creating IIS Virtual Roots..."
-msgstr "Creando cartełe prensipałe virtuałe de IIS..."
+msgstr "Creando cartełe prinsipałi virtuałi de IIS..."
#: ActionTe.ulf
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"OOO_ACTIONTEXT_9\n"
"LngText.text"
msgid "Removing IIS Virtual Roots..."
-msgstr "Cavando via łe cartełe prensipałe virtuałe de IIS..."
+msgstr "Ełiminando łe cartełe prinsipałi virtuałi de IIS..."
#: ActionTe.ulf
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"OOO_ERROR_129\n"
"LngText.text"
msgid "This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher."
-msgstr "L'instałasion ła dimanda el Internet Information Server 4.0 o varsion pì nove par ła configurasion de łe cartełe prensipałi virtuałi de IIS. Segùrate che A ghe sipia desponìbiłe IIS 4.0 o varsion sucesive."
+msgstr "L'instałasion ła dimanda el Internet Information Server 4.0 o varsion pì nove par ła configurasion de łe cartełe prinsipałi virtuałi de IIS. Segùrate che A ghe sipia desponìbiłe IIS 4.0 o varsion sucesive."
#: Error.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_130\n"
"LngText.text"
msgid "This setup requires Administrator privileges for configuring IIS Virtual Roots."
-msgstr "L'instałasion ła dimanda i priviłeji de aministrador par ła configurasion de łe cartełe prensipałi virtuałi de IIS."
+msgstr "L'instałasion ła dimanda i priviłeji de aministrador par ła configurasion de łe cartełe prinsipałi virtuałi de IIS."
#: LaunchCo.ulf
msgctxt ""
diff --git a/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po b/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po
index 1c5e9679d82..f5236b3173e 100644
--- a/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/vec/officecfg/registry/data/org/openoffice/Office/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: 2016-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-03-29 16:28+0000\n"
+"PO-Revision-Date: 2017-03-31 05:49+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490804884.000000\n"
+"X-POOTLE-MTIME: 1490939346.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -26683,7 +26683,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wrap Off"
-msgstr "Cava adatasion"
+msgstr "Dezativa adatasion"
#: WriterCommands.xcu
msgctxt ""
@@ -26713,7 +26713,6 @@ msgid "Single Page Preview"
msgstr "Anteprima inte na pàjina"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapThrough\n"
diff --git a/source/vec/readlicense_oo/docs.po b/source/vec/readlicense_oo/docs.po
index fe27ac5f819..8c6603b2081 100644
--- a/source/vec/readlicense_oo/docs.po
+++ b/source/vec/readlicense_oo/docs.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: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-03-16 05:45+0000\n"
+"PO-Revision-Date: 2017-04-05 05:41+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489643121.000000\n"
+"X-POOTLE-MTIME: 1491370879.000000\n"
#: readme.xrm
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"A13\n"
"readmeitem.text"
msgid "You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office."
-msgstr "Te połi doparar 'sta copia de ${PRODUCTNAME} sensa pagar njente daché contribudori individuałi e aziende patrosinanti i ga projetà, dezviłupà, provà, tradoto, documentà, suportà, publisizà e jutà in racuante altre manjere par rèndar ${PRODUCTNAME} cuel che l'e uncò: el programa de produtività open source primo inte'l mondo, par ła caza e l'ufisio."
+msgstr "Te połi doparar 'sta copia de ${PRODUCTNAME} sensa pagar njente daché contribudori individuałi e aziende patrosinanti i ga projetà, dezviłupà, provà, traduzesto, documentà, suportà, publisizà e jutà in racuante altre manjere par rèndar ${PRODUCTNAME} cuel che l'e uncò: el programa de produtività open source primo inte'l mondo, par ła caza e l'ufisio."
#: readme.xrm
msgctxt ""
diff --git a/source/vec/sfx2/source/dialog.po b/source/vec/sfx2/source/dialog.po
index dd2bdc20fab..032116578ba 100644
--- a/source/vec/sfx2/source/dialog.po
+++ b/source/vec/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-16 06:29+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489645788.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Jeràrchego"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/vec/sfx2/source/view.po b/source/vec/sfx2/source/view.po
index a2444c28832..a437da09374 100644
--- a/source/vec/sfx2/source/view.po
+++ b/source/vec/sfx2/source/view.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-03-16 06:38+0000\n"
+"PO-Revision-Date: 2017-03-30 05:43+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489646316.000000\n"
+"X-POOTLE-MTIME: 1490852580.000000\n"
#: view.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"STR_CHECKOUT\n"
"string.text"
msgid "Check Out"
-msgstr ""
+msgstr "Check Out"
#: view.src
msgctxt ""
diff --git a/source/vec/sfx2/uiconfig/ui.po b/source/vec/sfx2/uiconfig/ui.po
index e5ffc92a7f8..6571a4334fc 100644
--- a/source/vec/sfx2/uiconfig/ui.po
+++ b/source/vec/sfx2/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-28 05:37+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490679431.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME el ze stà meso a despozision drio i tèrmini de ła Mozilla Public License, v. 2.0. Se połe catar na copia de'l MPL inte'l sito http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Avizi so'l copyright e tèrmini de licensa so'l còdeze in pì de terse parti che se refarise a tochi de'l programa se połe catarli so'l file LICENSE.html; faghe click so \"Mostra Licensa\" par vardar i detaji in ingleze.\n"
-"\n"
-"Tuti i marchi, rejistrài o manco, tratài chive i ze de propietà de i so paroni.\n"
-"\n"
-"Copyright © 2000, 2015 Contribudori de LibreOffice. Tuti i deriti i ze reservài.\n"
-"\n"
-"'Sto prodoto el ze stà creà da %OOOVENDOR, bazà so OpenOffice.org, che ga Copyright 2000, 2011 Oracle e/o i so asociài. %OOOVENDOR rengrasia tuti i menbri de ła comunidà, varda http://www.libreoffice.org/ par pì detaji."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/vec/svtools/source/dialogs.po b/source/vec/svtools/source/dialogs.po
index 297c4b1b5d4..98d5130cfc7 100644
--- a/source/vec/svtools/source/dialogs.po
+++ b/source/vec/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-21 06:27+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487658429.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testo formatà [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/vec/svtools/source/misc.po b/source/vec/svtools/source/misc.po
index 6d295c79050..72a6bf27502 100644
--- a/source/vec/svtools/source/misc.po
+++ b/source/vec/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-28 05:37+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490679444.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Ongareze antigo (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/vec/svx/source/stbctrls.po b/source/vec/svx/source/stbctrls.po
index 476995cb6ef..1883c3092ba 100644
--- a/source/vec/svx/source/stbctrls.po
+++ b/source/vec/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-23 05:53+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490248399.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Adata ła diapozitiva a ła fenestra ativa."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/vec/svx/uiconfig/ui.po b/source/vec/svx/uiconfig/ui.po
index 0b8528adc92..23c2f9ca3da 100644
--- a/source/vec/svx/uiconfig/ui.po
+++ b/source/vec/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-29 15:56+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490802980.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "_Continua in modałità segura"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_Va fora"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "Àpleg_a łe modìfeghe e reavìa"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/vec/sw/source/uibase/utlui.po b/source/vec/sw/source/uibase/utlui.po
index 674946060a0..54c861ab612 100644
--- a/source/vec/sw/source/uibase/utlui.po
+++ b/source/vec/sw/source/uibase/utlui.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-28 05:37+0000\n"
+"PO-Revision-Date: 2017-03-31 05:46+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490679456.000000\n"
+"X-POOTLE-MTIME: 1490939193.000000\n"
#: attrdesc.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_SURROUND_NONE\n"
"string.text"
msgid "No wrap"
-msgstr "Cava adatasion"
+msgstr "Sensa adatasion"
#: attrdesc.src
msgctxt ""
diff --git a/source/vec/swext/mediawiki/help.po b/source/vec/swext/mediawiki/help.po
index cd1459da0cd..97216b064c2 100644
--- a/source/vec/swext/mediawiki/help.po
+++ b/source/vec/swext/mediawiki/help.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-29 16:56+0000\n"
+"PO-Revision-Date: 2017-03-30 17:54+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490806617.000000\n"
+"X-POOTLE-MTIME: 1490896497.000000\n"
#: help.tree
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr "Prima de doparar Wiki Publisher, controła che %PRODUCTNAME el dòpara un anbiente de runtime Java (“Java Runtime Environment“ o “JRE“). Par verifegar el stato de'l JRE sernisi <item type=\"menuitem\">Strumenti - Opsion - %PRODUCTNAME - Progredìe</item>. Controła che ła cazeła “Dòpara un anbiente runtime Java“ ła sia sełesionà e che inte ła fenestra de riepìłogo A ghe sia almanco na carteła runtime Java sełesionà. Se no ze ativà njanca un JRE, instała ła version 1.4 o na version pì resente e reavìa %PRODUCTNAME."
+msgstr "Prima de doparar Wiki Publisher, controła che %PRODUCTNAME el dòpara un anbiente de runtime Java (“Java Runtime Environment” o “JRE”). Par verifegar el stato de'l JRE sernisi <item type=\"menuitem\">Strumenti - Opsion - %PRODUCTNAME - Progredìe</item>. Controła che ła cazeła “Dòpara un anbiente runtime Java” ła sia sełesionà e che inte ła fenestra de riepìłogo A ghe sia almanco na carteła runtime Java sełesionà. Se no ze ativà njanca un JRE, instała ła version 1.4 o na version pì resente e reavìa %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "I stiłi de caràtare i modìfega l'aspeto de łe parti de un paràgrafo. Ła trasformasion ła suporta groseto, corsivo, groseto e corsivo, àpeze e pèdeze. Tuti i caràtari co łarghesa fisa i vien trasformài inte'l stiłe de scritura wiki."
#: wikiformats.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "Nota: Ła trasformasion ła dòpara el stiłe novo de łe note a pìe de pàjina co i tag <ref> e <references> che i domanda l'instałasion de l'estension Cite.php rento MediaWiki. Se 'sti tag i vien fora cofà testo normałe dopo ła trasformasion, domàndaghe de instałar 'sta estension a l'aministrador de'l wiki."
#: wikiformats.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "Łe imàjini no łe pol èsar esportàe co na trasformasion che ła produza un sìngoło file de testo wiki. Paraltro, se l'imàjine ła ze za cargà inte'l dominio wiki de destinasion (par es. WikiMedia Commons), ałora ła trasformasion ła produze un tag imàjine vàłido che l'include l'imàjine. Ze suportà anca łe didascałìe imàjine."
#: wikiformats.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "Łe tabełe sènplisi łe ze ben suportàe. Łe intestasion de łe tabełe łe ze traduzeste inte łe intestasion in stiłe wiki corespondenti. Paraltro, vien injorà ła formatasion parsonałizà de i bordi, łe dimension de łe cołone e i cołori de'l sfondo."
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "Indipendentemente da i stiłi tabeła parsonałizài de'l bordo e de'l sfondo, ła tabeła ła ze senpre esportà cofà “prettytable” e ła vien intarpretà da'l motor wiki co bordi sénplisi e intestasion in groseto."
#: wikiformats.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id6255073\n"
"help.text"
msgid "Character set and special characters"
-msgstr ""
+msgstr "Set de caràtari e caràtari spesiałi"
#: wikiformats.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "El grupo de caràtari de ła trasformasion stabiłìo el ze UTF-8. Drio el to sistema parò, el podarìa no èsar mìa el to grupo de caràtari predefinìo. 'Sto fato, se te dòpari łe inpostasion predefinìe, el podarìa farte védar małe i “caràtari spesiałi”. Parò te połi canbiar ła codìfega de'l to editor e métarla so UTF-8 par sistemar el problema. Se invese el to editor no'l suporta el canbio de codìfega, te połi vizuałizar el rezultado de ła trasformasion inte'l navigador Firefox e canbiar łà l'inpostasion de codìfega in UTF-8. A 'sto punto te połi tajar e incołar el rezultado de ła trasformasion inte'l programa che te ghe sielto."
#: wikisend.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id1743827\n"
"help.text"
msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload."
-msgstr ""
+msgstr "Inte ła fenestra de diałogo Invia a MediaWiki, spesìfega łe inpostasion par el cargamento de'l to wiki."
#: wikisend.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Meti rento el tìtoło de ła to voze wiki. Cuesta ła ze l'intestasion supariore de ła voze wiki. Par onji nova voze de'l wiki, el tìtoło el ga da èsar ùnego. Se te meti rento un tìtoło ezistente, el cargamento el sorascrivarà ła voze wiki corispondente.</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr ""
+msgstr "<emph>Mostra inte'l navigador web</emph>: <ahelp hid=\".\">sełesiona 'sta cazeła par vèrzar el to navigador web predefenìo e mostrar ła pàjina wiki cargà.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id1188390\n"
"help.text"
msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
-msgstr ""
+msgstr "A te pol zontar, modifegar e cavar via i server MediaWiki. Verzi ła fenestra de diàłogo de łe opsion ndando so <item type=\"menuitem\">Strumenti - Opsion - Internet - MediaWiki</item>."
#: wikisettings.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id300607\n"
"help.text"
msgid "<ahelp hid=\".\">Click Add to add a new wiki server.<br/>Select an entry and click Edit to edit the account settings.<br/>Select an entry and click Remove to remove the entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Faghe click so Zonta par zontar un server Wiki novo<br/>Par modifegar łe inpostasion de l'account sełesiona na voze e faghe click so Modìfega<br/>Par cavar via na voze da ła łista, sełesióneła e faghe click so Cava via.</ahelp>"
#: wikisettings.xhp
msgctxt ""
diff --git a/source/vi/cui/uiconfig/ui.po b/source/vi/cui/uiconfig/ui.po
index b5ec56470f8..a6009e8f494 100644
--- a/source/vi/cui/uiconfig/ui.po
+++ b/source/vi/cui/uiconfig/ui.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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 15:35+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-10-18 15:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: vi\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476804943.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476804828.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/vi/helpcontent2/source/text/scalc/01.po b/source/vi/helpcontent2/source/text/scalc/01.po
index d7cefbf8e5b..d6ee6e513ba 100644
--- a/source/vi/helpcontent2/source/text/scalc/01.po
+++ b/source/vi/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-07 00:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5722,7 +5722,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5730,7 +5730,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/vi/helpcontent2/source/text/shared/optionen.po b/source/vi/helpcontent2/source/text/shared/optionen.po
index 8fa0187e4c6..9a3a617f8c7 100644
--- a/source/vi/helpcontent2/source/text/shared/optionen.po
+++ b/source/vi/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-07 00:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/vi/sfx2/source/dialog.po b/source/vi/sfx2/source/dialog.po
index 993484224fe..a43d33335cd 100644
--- a/source/vi/sfx2/source/dialog.po
+++ b/source/vi/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-03-12 10:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457776883.000000\n"
+"X-POOTLE-MTIME: 1457776881.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Phân cấp"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/vi/sfx2/uiconfig/ui.po b/source/vi/sfx2/uiconfig/ui.po
index 7f93902e34c..bdb65bfc810 100644
--- a/source/vi/sfx2/uiconfig/ui.po
+++ b/source/vi/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467719976.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467719967.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/vi/svtools/source/dialogs.po b/source/vi/svtools/source/dialogs.po
index fc4972b136b..6e1d833307d 100644
--- a/source/vi/svtools/source/dialogs.po
+++ b/source/vi/svtools/source/dialogs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOfice 3.1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 23:15+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 21:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385507739.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449868915.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Văn bản đã định dạng [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/vi/svtools/source/misc.po b/source/vi/svtools/source/misc.po
index 12551869c44..ea0ce9b5b0a 100644
--- a/source/vi/svtools/source/misc.po
+++ b/source/vi/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.4\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 14:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Vietnamese <du-an-most@lists.hanoilug.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462804697.000000\n"
+"X-POOTLE-MTIME: 1462804695.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3894,6 +3894,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/vi/svx/source/stbctrls.po b/source/vi/svx/source/stbctrls.po
index 0d677288479..4581930f0ef 100644
--- a/source/vi/svx/source/stbctrls.po
+++ b/source/vi/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 21:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 06:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449868981.000000\n"
+"X-POOTLE-MTIME: 1431585040.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/vi/svx/uiconfig/ui.po b/source/vi/svx/uiconfig/ui.po
index ee675f3fd6e..76a5e6d1153 100644
--- a/source/vi/svx/uiconfig/ui.po
+++ b/source/vi/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 12:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5082,16 +5082,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/xh/cui/uiconfig/ui.po b/source/xh/cui/uiconfig/ui.po
index 159eab20956..f798c111706 100644
--- a/source/xh/cui/uiconfig/ui.po
+++ b/source/xh/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-18 15:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476804912.000000\n"
#: aboutconfigdialog.ui
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/xh/sfx2/source/dialog.po b/source/xh/sfx2/source/dialog.po
index c631089d164..6466036bd77 100644
--- a/source/xh/sfx2/source/dialog.po
+++ b/source/xh/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-02 04:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -715,6 +715,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Ngokwemigangatho Yamagunya"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/xh/sfx2/uiconfig/ui.po b/source/xh/sfx2/uiconfig/ui.po
index a784b81cc35..18272d3798f 100644
--- a/source/xh/sfx2/uiconfig/ui.po
+++ b/source/xh/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 12:13+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-07-05 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: xh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467720781.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467720778.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/xh/svtools/source/dialogs.po b/source/xh/svtools/source/dialogs.po
index c38dc909d50..116f5b0878d 100644
--- a/source/xh/svtools/source/dialogs.po
+++ b/source/xh/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2013-11-26 23:33+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-12-11 21:15+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: xh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385508786.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449868505.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -338,6 +338,14 @@ msgstr "Isiqendu esilungiselelweyo [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/xh/svtools/source/misc.po b/source/xh/svtools/source/misc.po
index fc58beeaf9c..bc59db5f9d7 100644
--- a/source/xh/svtools/source/misc.po
+++ b/source/xh/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-09 14:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462804723.000000\n"
+"X-POOTLE-MTIME: 1462804722.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3954,6 +3954,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/xh/svx/source/stbctrls.po b/source/xh/svx/source/stbctrls.po
index 39e891707b3..6cbd6f70112 100644
--- a/source/xh/svx/source/stbctrls.po
+++ b/source/xh/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 21:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2015-05-14 06:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: xh\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449868729.000000\n"
+"X-POOTLE-MTIME: 1431586349.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/xh/svx/uiconfig/ui.po b/source/xh/svx/uiconfig/ui.po
index e4f80b73a89..0f2797d8b7f 100644
--- a/source/xh/svx/uiconfig/ui.po
+++ b/source/xh/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-07-05 12:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/zh-CN/cui/uiconfig/ui.po b/source/zh-CN/cui/uiconfig/ui.po
index 4c6c1e5ca2f..cb3b9e000c6 100644
--- a/source/zh-CN/cui/uiconfig/ui.po
+++ b/source/zh-CN/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 07:37+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484811454.000000\n"
#: aboutconfigdialog.ui
@@ -186,8 +186,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 LibreOffice 的贡献者。"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/zh-CN/helpcontent2/source/text/scalc/01.po b/source/zh-CN/helpcontent2/source/text/scalc/01.po
index 75f26c0e3b1..4b07d7a0a4c 100644
--- a/source/zh-CN/helpcontent2/source/text/scalc/01.po
+++ b/source/zh-CN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libreoffice help\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-16 15:46+0000\n"
"Last-Translator: Reri <riwu@hotmail.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489679168.000000\n"
#: 01120000.xhp
@@ -5692,7 +5692,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5700,7 +5700,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/zh-CN/helpcontent2/source/text/shared/optionen.po b/source/zh-CN/helpcontent2/source/text/shared/optionen.po
index 11ac6e409e8..a737775796d 100644
--- a/source/zh-CN/helpcontent2/source/text/shared/optionen.po
+++ b/source/zh-CN/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2017-02-23 04:19+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487823597.000000\n"
#: 01000000.xhp
@@ -2457,7 +2457,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/zh-CN/sfx2/source/dialog.po b/source/zh-CN/sfx2/source/dialog.po
index 41e6ed1c3b4..e2107a11ed3 100644
--- a/source/zh-CN/sfx2/source/dialog.po
+++ b/source/zh-CN/sfx2/source/dialog.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-28 03:04+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482894289.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "等级式"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/zh-CN/sfx2/uiconfig/ui.po b/source/zh-CN/sfx2/uiconfig/ui.po
index 19a0a463c20..3da54f875d5 100644
--- a/source/zh-CN/sfx2/uiconfig/ui.po
+++ b/source/zh-CN/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 07:42+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484811747.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME 采用Mozilla Public License v. 2.0发布,MPL的许可协议可以在这里找到http://mozilla.org/MPL/2.0/。\n"
-"\n"
-"我们使用的第三方代码附加版权申明和许可协议可以在LICENSE.html 文件中找到;选择“显示许可证”可以查看详细的英文表述。\n"
-"\n"
-"此处提及的所有商标和注册商标均为各自商标所有人的财产。\n"
-"\n"
-"版权所有 © 2000, 2016 LibreOffice 的贡献者。保留所有权利。\n"
-"\n"
-"本软件由 %OOOVENDOR 在OpenOffice.org基础上开发。OpenOffice.org版权所有:2000, 2011 Oracle 及其关联方。%OOOVENDOR 谨向所有的社区成员致谢,详情请见http://www.libreoffice.org/。"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/zh-CN/svtools/source/dialogs.po b/source/zh-CN/svtools/source/dialogs.po
index 1406ed08a2c..50b41a420e2 100644
--- a/source/zh-CN/svtools/source/dialogs.po
+++ b/source/zh-CN/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-17 01:39+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-02 04:59+0000\n"
"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450316375.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462165141.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "已经格式化的文字 [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/zh-CN/svtools/source/misc.po b/source/zh-CN/svtools/source/misc.po
index a560c9b2155..db15fc23ec9 100644
--- a/source/zh-CN/svtools/source/misc.po
+++ b/source/zh-CN/svtools/source/misc.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-27 23:54+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482882872.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "匈牙利语 (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/zh-CN/svx/source/stbctrls.po b/source/zh-CN/svx/source/stbctrls.po
index f9e85e2ac4a..86ab83be67b 100644
--- a/source/zh-CN/svx/source/stbctrls.po
+++ b/source/zh-CN/svx/source/stbctrls.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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-28 03:51+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482897088.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "适应幻灯片到当前窗口。"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/zh-CN/svx/uiconfig/ui.po b/source/zh-CN/svx/uiconfig/ui.po
index 3c914829681..8d987858097 100644
--- a/source/zh-CN/svx/uiconfig/ui.po
+++ b/source/zh-CN/svx/uiconfig/ui.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: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-23 04:00+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487822410.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "在安全模式下继续(_C)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "退出(_Q)"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "应用更改并重新启动(_A)"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/zh-TW/cui/uiconfig/ui.po b/source/zh-TW/cui/uiconfig/ui.po
index b1b3390734f..afa8dc02345 100644
--- a/source/zh-TW/cui/uiconfig/ui.po
+++ b/source/zh-TW/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 11:51+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483357912.000000\n"
#: aboutconfigdialog.ui
@@ -186,8 +186,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "著作權所有 © 2000 - 2016 LibreOffice 貢獻者。"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/zh-TW/helpcontent2/source/text/scalc/01.po b/source/zh-TW/helpcontent2/source/text/scalc/01.po
index c72d1f3e047..52b6bf9cd68 100644
--- a/source/zh-TW/helpcontent2/source/text/scalc/01.po
+++ b/source/zh-TW/helpcontent2/source/text/scalc/01.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: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-09 05:13+0000\n"
"Last-Translator: wck317 <wck317@pchome.com.tw>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5718,7 +5718,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5726,7 +5726,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/zh-TW/helpcontent2/source/text/shared/optionen.po b/source/zh-TW/helpcontent2/source/text/shared/optionen.po
index 06f7a8781e8..74770c8bda8 100644
--- a/source/zh-TW/helpcontent2/source/text/shared/optionen.po
+++ b/source/zh-TW/helpcontent2/source/text/shared/optionen.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: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-12-09 05:47+0000\n"
"Last-Translator: wck317 <wck317@pchome.com.tw>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2456,7 +2456,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/zh-TW/sfx2/source/dialog.po b/source/zh-TW/sfx2/source/dialog.po
index d2d60625026..f08265d72c4 100644
--- a/source/zh-TW/sfx2/source/dialog.po
+++ b/source/zh-TW/sfx2/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 05:41+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483335693.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "階層式"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/zh-TW/sfx2/uiconfig/ui.po b/source/zh-TW/sfx2/uiconfig/ui.po
index 65404f6849c..488b030d81d 100644
--- a/source/zh-TW/sfx2/uiconfig/ui.po
+++ b/source/zh-TW/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 05:45+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483335911.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME 根據 Mozilla Public License v. 2.0 授權條款發布給大眾使用。MPL 條文副本可由 http://mozilla.org/MPL/2.0/ 取得。\n"
-"\n"
-"本軟體中適用「第三方額外代碼」著作權聲明與條款細則之部份,其條款列於 LICENSE.html 檔案中;請點選 [顯示授權條款] 查看以英文書寫的切確內容。\n"
-"\n"
-"所有於此提及的商標與註冊商標,皆為其各自對應擁有者之財產。\n"
-"\n"
-"著作權所有 © 2000–2016 LibreOffice 貢獻者。保留所有權利。\n"
-"\n"
-"本產品由 %OOOVENDOR 基於 OpenOffice.org 所建立。OpenOffice.org 著作權所有 2000, 2011 Oracle 與/或其附屬機構。%OOOVENDOR 謹向所有社群成員致謝,若要瞭解更多細節請見 http://www.libreoffice.org/ 。"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/zh-TW/svtools/source/dialogs.po b/source/zh-TW/svtools/source/dialogs.po
index faa792c838d..22e50ee6835 100644
--- a/source/zh-TW/svtools/source/dialogs.po
+++ b/source/zh-TW/svtools/source/dialogs.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-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-25 13:28+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1482672511.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "格式設定過的文字 [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/zh-TW/svtools/source/misc.po b/source/zh-TW/svtools/source/misc.po
index 623325362b0..fc43ecd04bb 100644
--- a/source/zh-TW/svtools/source/misc.po
+++ b/source/zh-TW/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 06:45+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483339502.000000\n"
#: imagemgr.src
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "匈牙利文 (賽楷伊字母)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/zh-TW/svx/source/dialog.po b/source/zh-TW/svx/source/dialog.po
index 64aa59e069b..5bcc4185253 100644
--- a/source/zh-TW/svx/source/dialog.po
+++ b/source/zh-TW/svx/source/dialog.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-02 08:58+0000\n"
-"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
+"PO-Revision-Date: 2017-04-08 22:09+0000\n"
+"Last-Translator: pesder <pesder@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483347506.000000\n"
+"X-POOTLE-MTIME: 1491689358.000000\n"
#: SafeMode.src
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_PINK\n"
"string.text"
msgid "Pink"
-msgstr "粉紅寺"
+msgstr "粉紅色"
#: sdstring.src
msgctxt ""
diff --git a/source/zh-TW/svx/source/stbctrls.po b/source/zh-TW/svx/source/stbctrls.po
index 4ae5e620779..396d47a1db6 100644
--- a/source/zh-TW/svx/source/stbctrls.po
+++ b/source/zh-TW/svx/source/stbctrls.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 07:07+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483340849.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "調整投影片以適應目前視窗大小。"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/zh-TW/svx/uiconfig/ui.po b/source/zh-TW/svx/uiconfig/ui.po
index 16e174ce31b..c39cfd43c21 100644
--- a/source/zh-TW/svx/uiconfig/ui.po
+++ b/source/zh-TW/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-02 09:06+0000\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1483347981.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,20 +5075,20 @@ msgstr "以安全模式繼續(_C)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "退出(_Q)"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "套用變更並重新啟動(_A)"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/zu/cui/uiconfig/ui.po b/source/zu/cui/uiconfig/ui.po
index 8e018026d16..0ae302b4b9e 100644
--- a/source/zu/cui/uiconfig/ui.po
+++ b/source/zu/cui/uiconfig/ui.po